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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | 26x 26x 26x 26x 26x 26x 26x 26x 26x 26x 42x 41x 46x 46x 29x 25x 4x 2x 2x 2x 29x 21x 41x 45x 41x 41x 4x 4x 26x 42x | /* * Copyright 2022 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 produce from 'immer' import { set } from 'lodash-es' import { MultiTypeInputType, NestedAccordionPanel, Text } from '@wings-software/uicore' import { FontVariation, Color } from '@harness/design-system' import cx from 'classnames' import type { ExecutionElementConfig, ExecutionWrapperConfig, StepElementConfig } from 'services/cd-ng' import type { TemplateStepNode } from 'services/pipeline-ng' import type { AbstractStepFactory } from '@pipeline/components/AbstractSteps/AbstractStepFactory' import type { PipelineVariablesData } from '../types' import { StepCardPanel, StepGroupCardPanel } from './StepCard' import VariableAccordionSummary from '../VariableAccordionSummary' import css from '../PipelineVariables.module.scss' export interface AddStepsParams { steps?: ExecutionWrapperConfig[] originalSteps?: ExecutionWrapperConfig[] parentPath?: string } export interface StepRenderData { step: StepElementConfig | TemplateStepNode originalStep: StepElementConfig | TemplateStepNode path: string type: 'StepRenderData' } export interface StepGroupRenderData { steps: Array<StepRenderData> name: string originalName: string identifier: string path: string type: 'StepGroupRenderData' } export interface ExecutionCardProps { id: string title: string execution: ExecutionElementConfig originalExecution: ExecutionElementConfig metadataMap: PipelineVariablesData['metadataMap'] stageIdentifier: string onUpdateExecution(data: ExecutionElementConfig): void readonly?: boolean path?: string allowableTypes: MultiTypeInputType[] stepsFactory: AbstractStepFactory } export function ExecutionCard(props: ExecutionCardProps): React.ReactElement { const { execution, originalExecution, metadataMap, stageIdentifier, onUpdateExecution, readonly, path, allowableTypes, stepsFactory } = props const allSteps = React.useMemo(() => { function addToCards({ steps, originalSteps, parentPath = /* istanbul ignore next */ '' }: AddStepsParams): Array<StepRenderData | StepGroupRenderData> { Iif (!steps || !Array.isArray(steps)) return [] return steps.reduce<Array<StepRenderData | StepGroupRenderData>>((cards, { step, stepGroup, parallel }, i) => { if (step) { cards.push({ type: 'StepRenderData', step, originalStep: originalSteps?.[i]?.step || /* istanbul ignore next */ { timeout: '10m', name: '', type: '', identifier: '' }, path: parentPath }) } else if (stepGroup) { cards.push({ type: 'StepGroupRenderData', steps: [ ...(addToCards({ steps: stepGroup.steps, originalSteps: originalSteps?.[i]?.stepGroup?.steps, parentPath: `${parentPath}.steps` }) as StepRenderData[]) ], name: stepGroup.name || '', originalName: originalSteps?.[i]?.stepGroup?.name || /* istanbul ignore next */ '', identifier: originalSteps?.[i]?.stepGroup?.identifier || /* istanbul ignore next */ '', path: `${parentPath}.stepGroup` }) } /* istanbul ignore else */ else Eif (parallel) { cards.push( ...addToCards({ steps: parallel, originalSteps: originalSteps?.[i]?.parallel, parentPath: `${parentPath}.parallel` }) ) } return cards }, []) } return [ ...addToCards({ steps: execution.steps, originalSteps: originalExecution.steps, parentPath: path }), ...addToCards({ steps: execution.rollbackSteps, originalSteps: originalExecution.rollbackSteps, parentPath: `${path}.rollbackSteps` }) ] }, [execution, originalExecution]) return ( <React.Fragment> {allSteps.map((row, index) => { if (row.type === 'StepRenderData' && row.step && row.originalStep) { const { step, originalStep, path: pathStep } = row return ( <StepCardPanel key={index} step={step} originalStep={originalStep} metadataMap={metadataMap} stageIdentifier={stageIdentifier} stepPath={pathStep} readonly={readonly} allowableTypes={allowableTypes} onUpdateStep={(data: StepElementConfig, stepPath: string) => { onUpdateExecution( produce(originalExecution, draft => { set(draft, stepPath, data) }) ) }} stepsFactory={stepsFactory} /> ) } /* istanbul ignore else */ if (row.type === 'StepGroupRenderData') { return ( <StepGroupCardPanel key={row.path} steps={row.steps} stepGroupIdentifier={row.identifier} stepGroupName={row.name} allowableTypes={allowableTypes} stepGroupOriginalName={row.originalName} metadataMap={metadataMap} readonly={readonly} stageIdentifier={stageIdentifier} onUpdateStep={(data: StepElementConfig, stepPath: string) => { onUpdateExecution( produce(originalExecution, draft => { set(draft, stepPath, data) }) ) }} stepsFactory={stepsFactory} /> ) } return null })} </React.Fragment> ) } export function ExecutionCardPanel(props: ExecutionCardProps): React.ReactElement { return ( <NestedAccordionPanel noAutoScroll isDefaultOpen addDomId id={props.id} collapseProps={{ keepChildrenMounted: true }} summary={ <VariableAccordionSummary> <Text font={{ variation: FontVariation.SMALL_SEMI }} color={Color.BLACK}> {props.title} </Text> </VariableAccordionSummary> } panelClassName={css.panel} summaryClassName={cx(css.variableBorderBottom, css.accordianSummaryL1)} details={<ExecutionCard {...props} />} /> ) } |