-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add cdpipeline compact view mode (#511)
- Loading branch information
1 parent
f925316
commit 254320f
Showing
11 changed files
with
230 additions
and
116 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
4 changes: 2 additions & 2 deletions
4
...ails/components/StageList/components/EnvironmentStage/components/ApplicationCard/types.ts
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { ApplicationKubeObjectInterface } from '../../../../../../../../k8s/groups/ArgoCD/Application/types'; | ||
import { PodKubeObjectInterface } from '../../../../../../../../k8s/groups/default/Pod/types'; | ||
import { CDPipelineKubeObjectInterface } from '../../../../../../../../k8s/groups/EDP/CDPipeline/types'; | ||
import { CodebaseKubeObjectInterface } from '../../../../../../../../k8s/groups/EDP/Codebase/types'; | ||
import { StageKubeObjectInterface } from '../../../../../../../../k8s/groups/EDP/Stage/types'; | ||
import { ViewMode } from '../../../../../../../../providers/ViewMode/types'; | ||
|
||
export interface ApplicationCardProps { | ||
stage: StageKubeObjectInterface; | ||
application: CodebaseKubeObjectInterface; | ||
argoApplication: ApplicationKubeObjectInterface; | ||
QuickLinksURLS: Record<string, string>; | ||
CDPipeline: CDPipelineKubeObjectInterface; | ||
stagePods: PodKubeObjectInterface[]; | ||
viewMode: ViewMode; | ||
} |
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
2 changes: 2 additions & 0 deletions
2
src/pages/cdpipeline-details/components/StageList/components/EnvironmentStage/types.ts
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import { CDPipelineKubeObjectInterface } from '../../../../../../k8s/groups/EDP/CDPipeline/types'; | ||
import { QuickLinkKubeObjectInterface } from '../../../../../../k8s/groups/EDP/QuickLink/types'; | ||
import { ViewMode } from '../../../../../../providers/ViewMode/types'; | ||
import { StageWithApplicationsData } from '../../../../providers/DynamicData/types'; | ||
|
||
export interface EnvironmentStageProps { | ||
CDPipeline: CDPipelineKubeObjectInterface; | ||
stageWithApplicationsData: StageWithApplicationsData; | ||
QuickLinksURLS: Record<string, string>; | ||
QuickLinks: QuickLinkKubeObjectInterface[]; | ||
viewMode: ViewMode; | ||
} |
Oops, something went wrong.