Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | /*
* Copyright 2021 Harness Inc. All rights reserved.
* Use of this source code is governed by the PolyForm Shield 1.0.0 license
* that can be found in the licenses directory at the root of this repository, also available at
* https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt.
*/
import React from 'react'
import { useParams, useHistory } from 'react-router-dom'
import type { UseStringsReturn } from 'framework/strings'
import { PipelineStages, PipelineStagesProps } from '@pipeline/components/PipelineStages/PipelineStages'
import factory from '@pipeline/components/PipelineSteps/PipelineStepFactory'
import { stagesCollection } from '@pipeline/components/PipelineStudio/Stages/StagesCollection'
import routes from '@common/RouteDefinitions'
import { StageType } from '@pipeline/utils/stageHelpers'
import type {
AccountPathProps,
GitQueryParams,
PipelinePathProps,
PipelineType
} from '@common/interfaces/RouteInterfaces'
import { useStrings } from 'framework/strings'
import { PipelineProvider } from '@pipeline/components/PipelineStudio/PipelineContext/PipelineContext'
import { PipelineStudio } from '@pipeline/components/PipelineStudio/PipelineStudio'
import { useQueryParams } from '@common/hooks'
import { useFeatureFlag } from '@common/hooks/useFeatureFlag'
import { useLicenseStore } from 'framework/LicenseStore/LicenseStoreContext'
import { FeatureFlag } from '@common/featureFlags'
import { TemplateDrawer } from '@templates-library/components/TemplateDrawer/TemplateDrawer'
import css from './CFPipelineStudio.module.scss'
const CIPipelineStudio: React.FC = (): JSX.Element => {
const {
accountId: accountIdentifier,
projectIdentifier,
orgIdentifier,
pipelineIdentifier,
module
} = useParams<PipelineType<PipelinePathProps & AccountPathProps>>()
const { branch, repoIdentifier } = useQueryParams<GitQueryParams>()
const { getString } = useStrings()
const history = useHistory()
const handleRunPipeline = (): void => {
history.push(
routes.toPipelineStudio({
accountId: accountIdentifier,
orgIdentifier,
projectIdentifier,
pipelineIdentifier,
module,
branch,
repoIdentifier,
runPipeline: true
})
)
}
const isCDEnabled = useFeatureFlag(FeatureFlag.CDNG_ENABLED)
const isCFEnabled = useFeatureFlag(FeatureFlag.CFNG_ENABLED)
const isCIEnabled = useFeatureFlag(FeatureFlag.CING_ENABLED)
const { licenseInformation } = useLicenseStore()
return (
<PipelineProvider
stagesMap={stagesCollection.getAllStagesAttributes(getString)}
queryParams={{ accountIdentifier, orgIdentifier, projectIdentifier, repoIdentifier, branch }}
pipelineIdentifier={pipelineIdentifier}
renderPipelineStage={args =>
getCFPipelineStages(
args,
getString,
licenseInformation['CI'] && isCIEnabled,
licenseInformation['CD'] && isCDEnabled,
licenseInformation['CF'] && isCFEnabled,
true
)
}
stepsFactory={factory}
runPipeline={handleRunPipeline}
>
<PipelineStudio
className={css.container}
routePipelineStudio={routes.toPipelineStudio}
routePipelineDetail={routes.toPipelineDetail}
routePipelineProject={routes.toDeployments}
routePipelineList={routes.toPipelines}
/>
<TemplateDrawer />
</PipelineProvider>
)
}
export const getCFPipelineStages: (
args: Omit<PipelineStagesProps, 'children'>,
getString: UseStringsReturn['getString'],
isCIEnabled?: boolean,
isCDEnabled?: boolean,
isCFEnabled?: boolean,
isApprovalStageEnabled?: boolean
) => React.ReactElement<PipelineStagesProps> = (
args,
getString,
_isCIEnabled = false,
_isCDEnabled = false,
isCFEnabled = false,
isApprovalStageEnabled = true
) => {
return (
<PipelineStages {...args}>
{stagesCollection.getStage(StageType.FEATURE, isCFEnabled, getString)}
{/* {stagesCollection.getStage(StageType.DEPLOY, isCDEnabled, getString)}
{stagesCollection.getStage(StageType.BUILD, isCIEnabled, getString)}
{stagesCollection.getStage(StageType.PIPELINE, false, getString)} */}
{stagesCollection.getStage(StageType.APPROVAL, isApprovalStageEnabled, getString)}
{/* {stagesCollection.getStage(StageType.CUSTOM, false, getString)} */}
{stagesCollection.getStage(StageType.Template, false, getString)}
</PipelineStages>
)
}
export default CIPipelineStudio
|