-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE-515: Consolidated backfills and runs UI (#23719)
## Summary & Motivation This is a work-in-progress, here's a loom video showing the updates so far: https://www.loom.com/share/6ca6625e4ae34463913c1bffd873f353 --------- Co-authored-by: bengotow <[email protected]> Co-authored-by: Marco Salazar <[email protected]> Co-authored-by: JamieDeMaria <[email protected]>
- Loading branch information
1 parent
dfa8d75
commit 91688d6
Showing
45 changed files
with
1,352 additions
and
447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
js_modules/dagster-ui/packages/ui-components/src/icon-svgs/run_with_subruns.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
js_modules/dagster-ui/packages/ui-core/src/instance/backfill/BackfillFragments.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import {gql} from '../../apollo-client'; | ||
|
||
export const BACKFILL_TERMINATION_DIALOG_BACKFILL_FRAGMENT = gql` | ||
fragment BackfillTerminationDialogBackfillFragment on PartitionBackfill { | ||
id | ||
status | ||
isAssetBackfill | ||
numCancelable | ||
} | ||
`; | ||
|
||
export const BACKFILL_STEP_STATUS_DIALOG_BACKFILL_FRAGMENT = gql` | ||
fragment BackfillStepStatusDialogBackfillFragment on PartitionBackfill { | ||
id | ||
partitionNames | ||
partitionSet { | ||
name | ||
pipelineName | ||
repositoryOrigin { | ||
repositoryName | ||
repositoryLocationName | ||
} | ||
} | ||
} | ||
`; | ||
|
||
export const BACKFILL_ACTIONS_BACKFILL_FRAGMENT = gql` | ||
fragment BackfillActionsBackfillFragment on PartitionBackfill { | ||
id | ||
hasCancelPermission | ||
hasResumePermission | ||
isAssetBackfill | ||
status | ||
numCancelable | ||
...BackfillStepStatusDialogBackfillFragment | ||
...BackfillTerminationDialogBackfillFragment | ||
} | ||
${BACKFILL_STEP_STATUS_DIALOG_BACKFILL_FRAGMENT} | ||
${BACKFILL_TERMINATION_DIALOG_BACKFILL_FRAGMENT} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
91688d6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for dagit-storybook ready!
✅ Preview
https://dagit-storybook-l6huiaw7f-elementl.vercel.app
Built with commit 91688d6.
This pull request is being automatically deployed with vercel-action
91688d6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for dagit-core-storybook ready!
✅ Preview
https://dagit-core-storybook-70gdkd3uf-elementl.vercel.app
Built with commit 91688d6.
This pull request is being automatically deployed with vercel-action