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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 3x 3x 3x 3x 5x 14x 14x 11x 3x 3x 5x 30x 2x 3x 2x 5x 56x 56x 3x 3x 3x 5x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 86x 54x 14x 86x 26x 26x 26x 86x 59x 8x 59x 36x 36x 23x 13x 13x 86x 86x 86x 86x 86x 172x 86x 5x | /* * 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, { useState, useEffect } from 'react' import { Layout, Text, Label, Container, HarnessDocTooltip, PageSpinner } from '@wings-software/uicore' import { Color } from '@harness/design-system' import { NameIdDescriptionTags } from '@common/components' import { useStrings } from 'framework/strings' import { SelectArtifactModal } from './modals' import ArtifactTableInfo from './subviews/ArtifactTableInfo' import { parseArtifactsManifests, getArtifactTableDataFromData, artifactManifestData, artifactTableItem, getPathString, getArtifactSpecObj, updatePipelineManifest, updatePipelineArtifact, getArtifactId } from '../utils/TriggersWizardPageUtils' import css from './ArtifactTriggerConfigPanel.module.scss' export interface ArtifactTriggerConfigPanelPropsInterface { formikProps?: any isEdit?: boolean } const artifactStr = 'pipeline.artifactTriggerConfigPanel.artifact' const onRemoveSelectedArtifactManifest = ({ isManifest, stageId, formikProps }: { isManifest: boolean stageId: string formikProps: any }) => { const { pipeline } = formikProps.values const newPipelineObj = isManifest ? updatePipelineManifest({ pipeline, stageIdentifier: stageId, selectedArtifact: formikProps?.values?.selectedArtifact, newArtifact: {} }) : updatePipelineArtifact({ pipeline, stageIdentifier: stageId, selectedArtifact: formikProps?.values?.selectedArtifact, newArtifact: {} }) formikProps.setValues({ ...formikProps.values, pipeline: newPipelineObj, selectedArtifact: undefined, stageId: undefined, stages: undefined // clears all artifact runtime inputs }) formikProps.setFieldTouched('selectedArtifact') } const onEdit = ({ appliedArtifact, selectedArtifact, initialPath, isManifest, formikProps }: { appliedArtifact: any selectedArtifact: any initialPath: string isManifest: boolean formikProps: any }) => { const newAppliedArtifactSpecObj = getArtifactSpecObj({ appliedArtifact, selectedArtifact, path: '', isManifest }) if (isManifest) { formikProps.setFieldValue(`${initialPath}.manifests[0].manifest.spec`, newAppliedArtifactSpecObj) } else { Iif (appliedArtifact?.sidecar) { formikProps.setFieldValue(`${initialPath}.artifacts.sidecars[0].sidecar`, newAppliedArtifactSpecObj) } else { formikProps.setFieldValue(`${initialPath}.artifacts.primary`, newAppliedArtifactSpecObj) } } } const showAppliedTableArtifact = ({ formikProps, appliedTableArtifact, isManifest, editModalOpen, setEditModalOpen, data, stageId }: { formikProps: any appliedTableArtifact: any isManifest: boolean editModalOpen: boolean setEditModalOpen: any data: any stageId: string }) => { return ( <Container style={{ display: 'inline-block', width: '100%' }}> <ArtifactTableInfo formikProps={formikProps} appliedArtifact={appliedTableArtifact} isManifest={isManifest} editArtifact={() => setEditModalOpen(true)} removeArtifact={() => onRemoveSelectedArtifactManifest({ isManifest, formikProps, stageId }) } /> {editModalOpen && ( <SelectArtifactModal isModalOpen={editModalOpen} formikProps={formikProps} closeModal={() => setEditModalOpen(false)} isManifest={isManifest} runtimeData={data} /> )} </Container> ) } const showAddArtifactManifest = ({ isManifest, getString, allowSelectArtifact, setModalOpen, formikProps, modalOpen, artifactTableData, data }: { isManifest: boolean getString: any allowSelectArtifact: boolean setModalOpen: any formikProps: any modalOpen: any artifactTableData: any data: any }): JSX.Element => { const artifactOrManifestText = isManifest ? getString('manifestsText') : getString(artifactStr) return ( <> <Label style={{ fontSize: 13, color: 'var(--form-label)', fontWeight: 'normal', marginBottom: 'var(--spacing-small)' }} data-tooltip-id={'selectArtifactManifestLabel'} > {artifactOrManifestText} <HarnessDocTooltip tooltipId="selectArtifactManifestLabel" useStandAlone={true} /> </Label> <Text data-name="plusAdd" style={{ cursor: allowSelectArtifact ? 'pointer' : 'not-allowed', color: allowSelectArtifact ? 'var(--primary-7)' : 'var(--form-label)', width: '130px' }} onClick={() => { Eif (allowSelectArtifact) { setModalOpen(true) formikProps.setFieldTouched('selectedArtifact') } }} > {getString('pipeline.artifactTriggerConfigPanel.plusSelect', { artifact: artifactOrManifestText })} </Text> {allowSelectArtifact && ( <SelectArtifactModal isModalOpen={modalOpen} formikProps={formikProps} artifactTableData={artifactTableData} closeModal={() => setModalOpen(false)} isManifest={isManifest} runtimeData={data} /> )} </> ) } const ArtifactTriggerConfigPanel: React.FC<ArtifactTriggerConfigPanelPropsInterface> = ({ formikProps, isEdit = false }) => { const { artifactType, manifestType, stageId, inputSetTemplateYamlObj, resolvedPipeline, selectedArtifact } = formikProps.values const [modalOpen, setModalOpen] = useState<boolean>(false) const [editModalOpen, setEditModalOpen] = useState<boolean>(false) const [parsedArtifactsManifests, setParsedArtifactsManifests] = useState<{ appliedArtifact?: artifactManifestData data?: artifactManifestData[] }>({}) // appliedArtifact is saved on the trigger or in formikValues vs. selectedArtifact is in the modal const [appliedTableArtifact, setAppliedTableArtifact] = useState<artifactTableItem[] | undefined>(undefined) const [artifactTableData, setArtifactTableData] = useState<artifactTableItem[] | undefined>(undefined) const { appliedArtifact, data } = parsedArtifactsManifests const { getString } = useStrings() const isManifest = !!manifestType const initialPath = data && stageId && getPathString(data, stageId) useEffect(() => { if ( !formikProps.values?.stages && initialPath && appliedArtifact && Object.entries(appliedArtifact).length && selectedArtifact ) { // sets stages which is required to edit runtime input of selected artifact // when onEdit or from yaml switch onEdit({ appliedArtifact, selectedArtifact, initialPath, isManifest, formikProps }) } }, [initialPath, appliedTableArtifact]) useEffect(() => { Eif (inputSetTemplateYamlObj || selectedArtifact) { const res = parseArtifactsManifests({ inputSetTemplateYamlObj, manifestType, stageId, artifactType, artifactRef: getArtifactId(isManifest, selectedArtifact?.identifier), // artifactRef will represent artifact or manifest isManifest }) setParsedArtifactsManifests(res) } }, [inputSetTemplateYamlObj, selectedArtifact]) useEffect(() => { if (!selectedArtifact) { setAppliedTableArtifact(undefined) } if ((appliedArtifact || data) && resolvedPipeline) { const { appliedTableArtifact: newAppliedTableArtifact, artifactTableData: newArtifactTableData } = getArtifactTableDataFromData({ data, isManifest, appliedArtifact, stageId, getString, artifactType, pipeline: resolvedPipeline }) if (newAppliedTableArtifact) { setAppliedTableArtifact(newAppliedTableArtifact) } else Eif (newArtifactTableData) { setArtifactTableData(newArtifactTableData) } } }, [appliedArtifact, data, resolvedPipeline, selectedArtifact]) const loading = false const allowSelectArtifact = !!data?.length const artifactOrManifestText = isManifest ? getString('manifestsText') : getString(artifactStr) const { errors } = formikProps const getTooltipIds = (manifestTooltipIds: string, artifactTooltipIds: string): string => { return isManifest ? manifestTooltipIds : artifactTooltipIds } return ( <Layout.Vertical className={css.artifactTriggerConfigContainer} padding="xxlarge"> {loading && ( <div style={{ position: 'relative', height: 'calc(100vh - 128px)' }}> <PageSpinner /> </div> )} <Text className={css.formContentTitle} inline={true} tooltipProps={{ dataTooltipId: getTooltipIds('artifactManifestLabel', 'artifactLabel') }} > {getString('triggers.triggerConfigurationLabel')} {!isEdit ? `: ${getString('triggers.onNewArtifactTitle', { artifact: artifactOrManifestText })}` : ''} </Text> <div className={css.formContent}> <NameIdDescriptionTags className={css.nameIdDescriptionTags} formikProps={formikProps} identifierProps={{ isIdentifierEditable: !isEdit }} tooltipProps={{ dataTooltipId: 'artifactTrigger' }} /> </div> <Text className={css.formContentTitle} inline={true} tooltipProps={{ dataTooltipId: getTooltipIds('listenOnNewArtifactManifest', 'listenNewArtifact') }} > {getString('pipeline.artifactTriggerConfigPanel.listenOnNewArtifact', { artifact: artifactOrManifestText })} </Text> <div className={css.formContent}> {appliedTableArtifact ? ( showAppliedTableArtifact({ formikProps, appliedTableArtifact, isManifest, editModalOpen, setEditModalOpen, data, stageId }) ) : ( <> {showAddArtifactManifest({ isManifest, getString, allowSelectArtifact, setModalOpen, formikProps, modalOpen, artifactTableData, data })} {(formikProps.touched['selectedArtifact'] || formikProps.submitCount > 0) && !modalOpen && errors['selectedArtifact'] && ( <Text color={Color.RED_500} style={{ marginBottom: 'var(--spacing-medium)' }}> {errors['selectedArtifact']} </Text> )} </> )} {inputSetTemplateYamlObj && !appliedArtifact && !allowSelectArtifact && ( <Text margin="small" intent="warning"> {getString('pipeline.artifactTriggerConfigPanel.noSelectableArtifactsFound', { artifact: artifactOrManifestText })} </Text> )} </div> </Layout.Vertical> ) } export default ArtifactTriggerConfigPanel |