All files / modules/70-pipeline/components/ManifestSelection/ManifestWizardSteps/KustomizePatchesDetails KustomizePatchesDetails.tsx

67.05% Statements 59/88
62.12% Branches 164/264
48.28% Functions 14/29
67.05% Lines 59/88

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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493              101x 101x                       101x 101x 101x 101x 101x 101x 101x 101x     101x       101x               101x 101x 101x 101x                             101x       1x                     1x             1x 1x     1x 1x 1x         1x     101x               6x                                                         101x                                                                         101x                             5x                     15x                                     3x 3x   3x         3x         3x       3x       3x                 3x                                   3x           3x 1x 1x     3x 3x   3x 1x                         2x                 3x   3x                                             10x 10x                 5x           5x       1x                         6x                                                                                                                               6x   5x                                                                                                                                     101x  
/*
 * 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, { useCallback } from 'react'
import {
  Text,
  Layout,
  Button,
  FormInput,
  StepProps,
  getMultiTypeFromValue,
  MultiTypeInputType,
  Formik,
  ButtonVariation,
  Icon
} from '@wings-software/uicore'
import * as Yup from 'yup'
import { Form, FieldArray, FieldArrayRenderProps } from 'formik'
import { get, isEmpty, set } from 'lodash-es'
import { FontVariation } from '@harness/design-system'
import cx from 'classnames'
import { v4 as nameSpace, v5 as uuid } from 'uuid'
import { useStrings } from 'framework/strings'
import { ConfigureOptions } from '@common/components/ConfigureOptions/ConfigureOptions'
import type { ConnectorConfigDTO, ManifestConfig, ManifestConfigWrapper } from 'services/cd-ng'
 
import MultiTypeFieldSelector from '@common/components/MultiTypeFieldSelector/MultiTypeFieldSelector'
 
import type { KustomizePatchDataType, ManifestTypes } from '../../ManifestInterface'
 
import {
  gitFetchTypeList,
  GitFetchTypes,
  GitRepoName,
  ManifestDataType,
  ManifestIdentifierValidation,
  ManifestStoreMap
} from '../../Manifesthelper'
import GitRepositoryName from '../GitRepositoryName/GitRepositoryName'
import { getRepositoryName } from '../ManifestUtils'
import css from '../ManifestWizardSteps.module.scss'
import helmcss from '../HelmWithGIT/HelmWithGIT.module.scss'
 
interface KustomizePathPropTypes {
  key?: string
  name?: string
  stepName: string
  expressions: string[]
  allowableTypes: MultiTypeInputType[]
  initialValues: ManifestConfig
  handleSubmit: (data: ManifestConfigWrapper) => void
  manifestIdsList: Array<string>
  selectedManifest: ManifestTypes | null
  isReadonly?: boolean
}
 
const submitKustomizePatchData = (
  formData: KustomizePatchDataType & { store?: string; connectorRef?: string },
  connectionType: string
) => {
  const manifestObj: ManifestConfigWrapper = {
    manifest: {
      identifier: formData.identifier,
      type: ManifestDataType.KustomizePatches,
      spec: {
        store: {
          type: formData?.store,
          spec: {
            connectorRef: formData?.connectorRef,
            gitFetchType: formData?.gitFetchType,
            paths:
              typeof formData?.paths === 'string' ? formData?.paths : formData?.paths?.map((path: any) => path.path)
          }
        }
      }
    }
  }
 
  Eif (connectionType === GitRepoName.Account) {
    set(manifestObj, 'manifest.spec.store.spec.repoName', formData?.repoName)
  }
 
  Eif (manifestObj?.manifest?.spec?.store) {
    Eif (formData?.gitFetchType === 'Branch') {
      set(manifestObj, 'manifest.spec.store.spec.branch', formData?.branch)
    } else if (formData?.gitFetchType === 'Commit') {
      set(manifestObj, 'manifest.spec.store.spec.commitId', formData?.commitId)
    }
  }
  return manifestObj
}
 
const renderBranch = (
  formik: any,
  isReadonly: boolean,
  label: string,
  placeholder: string,
  expressions?: any,
  allowableTypes?: MultiTypeInputType[]
) => {
  return (
    <div
      className={cx(helmcss.halfWidth, {
        [helmcss.runtimeInput]: getMultiTypeFromValue(formik.values?.branch) === MultiTypeInputType.RUNTIME
      })}
    >
      <FormInput.MultiTextInput
        label={label}
        placeholder={placeholder}
        multiTextInputProps={{ expressions, allowableTypes }}
        name="branch"
      />
      {getMultiTypeFromValue(formik.values?.branch) === MultiTypeInputType.RUNTIME && (
        <ConfigureOptions
          style={{ alignSelf: 'center' }}
          value={formik.values?.branch as string}
          type="String"
          variableName="branch"
          showRequiredField={false}
          showDefaultField={false}
          showAdvanced={true}
          onChange={value => formik.setFieldValue('branch', value)}
          isReadonly={isReadonly}
        />
      )}
    </div>
  )
}
 
const renderCommitId = (
  formik: any,
  isReadonly: boolean,
  label: string,
  placeholder: string,
  expressions?: any,
  allowableTypes?: MultiTypeInputType[]
) => {
  return (
    <div
      className={cx(helmcss.halfWidth, {
        [helmcss.runtimeInput]: getMultiTypeFromValue(formik.values?.commitId) === MultiTypeInputType.RUNTIME
      })}
    >
      <FormInput.MultiTextInput
        label={label}
        placeholder={placeholder}
        multiTextInputProps={{ expressions, allowableTypes }}
        name="commitId"
      />
      {getMultiTypeFromValue(formik.values?.commitId) === MultiTypeInputType.RUNTIME && (
        <ConfigureOptions
          style={{ alignSelf: 'center' }}
          value={formik.values?.commitId as string}
          type="String"
          variableName="commitId"
          showRequiredField={false}
          showDefaultField={false}
          showAdvanced={true}
          onChange={value => formik.setFieldValue('commitId', value)}
          isReadonly={isReadonly}
        />
      )}
    </div>
  )
}
 
const renderPathArr = ({
  index,
  selectedManifest,
  manifestPathPlaceholder,
  pathPlaceholder,
  expressions,
  allowableTypes
}: {
  index: number
  selectedManifest: string | null
  manifestPathPlaceholder: string
  pathPlaceholder: string
  expressions: any
  allowableTypes: MultiTypeInputType[]
}) => {
  return (
    <>
      <Icon name="drag-handle-vertical" className={css.drag} />
      <Text width={12}>{`${index + 1}.`}</Text>
      <FormInput.MultiTextInput
        label={''}
        placeholder={selectedManifest === ManifestDataType.KustomizePatches ? manifestPathPlaceholder : pathPlaceholder}
        name={`paths[${index}].path`}
        style={{ width: 275 }}
        multiTextInputProps={{
          expressions,
          allowableTypes: allowableTypes.filter(allowedType => allowedType !== MultiTypeInputType.RUNTIME)
        }}
      />
    </>
  )
}
 
function KustomizePatchDetails({
  stepName,
  expressions,
  allowableTypes,
  initialValues,
  selectedManifest,
  prevStepData,
  previousStep,
  isReadonly = false,
  handleSubmit,
  manifestIdsList
}: StepProps<ConnectorConfigDTO> & KustomizePathPropTypes): React.ReactElement {
  const { getString } = useStrings()
  const gitConnectionType: string = prevStepData?.store === ManifestStoreMap.Git ? 'connectionType' : 'type'
  const connectionType =
    prevStepData?.connectorRef?.connector?.spec?.[gitConnectionType] === GitRepoName.Repo ||
    prevStepData?.urlType === GitRepoName.Repo
      ? GitRepoName.Repo
      : GitRepoName.Account
 
  const onDragStart = useCallback((event: React.DragEvent<HTMLDivElement>, index: number) => {
    event.dataTransfer.setData('data', index.toString())
    event.currentTarget.classList.add(css.dragging)
  }, [])
 
  const onDragEnd = useCallback((event: React.DragEvent<HTMLDivElement>) => {
    event.currentTarget.classList.remove(css.dragging)
  }, [])
 
  const onDragLeave = useCallback((event: React.DragEvent<HTMLDivElement>) => {
    event.currentTarget.classList.remove(css.dragOver)
  }, [])
 
  const onDragOver = useCallback((event: React.DragEvent<HTMLDivElement>) => {
    /* istanbul ignore else */
    Iif (event.preventDefault) {
      event.preventDefault()
    }
    event.currentTarget.classList.add(css.dragOver)
    event.dataTransfer.dropEffect = 'move'
  }, [])
 
  const onDrop = useCallback(
    (event: React.DragEvent<HTMLDivElement>, arrayHelpers: FieldArrayRenderProps, droppedIndex: number) => {
      /* istanbul ignore else */
      Iif (event.preventDefault) {
        event.preventDefault()
      }
      const data = event.dataTransfer.getData('data')
      /* istanbul ignore else */
      Iif (data) {
        const index = parseInt(data, 10)
        arrayHelpers.swap(index, droppedIndex)
      }
      event.currentTarget.classList.remove(css.dragOver)
    },
    []
  )
 
  const accountUrl =
    connectionType === GitRepoName.Account
      ? prevStepData?.connectorRef
        ? prevStepData?.connectorRef?.connector?.spec?.url
        : prevStepData?.url
      : null
 
  const submitFormData = (formData: KustomizePatchDataType & { store?: string; connectorRef?: string }): void => {
    const manifestObj = submitKustomizePatchData(formData, connectionType)
    handleSubmit(manifestObj)
  }
 
  const getInitialValues = React.useCallback((): KustomizePatchDataType => {
    const specValues = get(initialValues, 'spec.store.spec', null)
 
    if (specValues) {
      return {
        ...specValues,
        identifier: initialValues.identifier,
        repoName: getRepositoryName(prevStepData, initialValues),
        paths:
          typeof specValues.paths === 'string'
            ? specValues.paths
            : specValues.paths.map((path: string) => ({
                id: uuid('', nameSpace()),
                path: path
              }))
      }
    }
    return {
      identifier: '',
      branch: undefined,
      commitId: undefined,
      repoName: getRepositoryName(prevStepData, initialValues),
      gitFetchType: 'Branch',
      paths: [{ path: '', id: uuid('', nameSpace()) }]
    }
  }, [])
  const defaultValueToReset = [{ path: '', uuid: uuid('', nameSpace()) }]
 
  return (
    <Layout.Vertical spacing="xxlarge" padding="small" className={css.manifestStore}>
      <Text font={{ variation: FontVariation.H3 }} margin={{ bottom: 'medium' }}>
        {stepName}
      </Text>
      <Formik
        initialValues={getInitialValues()}
        formName="kustomizePath"
        validationSchema={Yup.object().shape({
          ...ManifestIdentifierValidation(
            manifestIdsList,
            initialValues?.identifier,
            getString('pipeline.uniqueIdentifier')
          ),
          branch: Yup.string().when('gitFetchType', {
            is: 'Branch',
            then: Yup.string().trim().required(getString('validation.branchName'))
          }),
          commitId: Yup.string().when('gitFetchType', {
            is: 'Commit',
            then: Yup.string().trim().required(getString('validation.commitId'))
          }),
          paths: Yup.lazy((value): Yup.Schema<unknown> => {
            Eif (getMultiTypeFromValue(value as any) === MultiTypeInputType.FIXED) {
              return Yup.array().of(
                Yup.object().shape({
                  path: Yup.string().min(1).required(getString('pipeline.manifestType.pathRequired'))
                })
              )
            }
            return Yup.string().required(getString('pipeline.manifestType.pathRequired'))
          }),
          repoName: Yup.string().test('repoName', getString('common.validation.repositoryName'), value => {
            Iif (
              connectionType === GitRepoName.Repo ||
              getMultiTypeFromValue(prevStepData?.connectorRef) !== MultiTypeInputType.FIXED
            ) {
              return true
            }
            return !isEmpty(value) && value?.length > 0
          })
        })}
        onSubmit={formData => {
          submitFormData({
            ...prevStepData,
            ...formData,
            connectorRef: prevStepData?.connectorRef
              ? getMultiTypeFromValue(prevStepData?.connectorRef) !== MultiTypeInputType.FIXED
                ? prevStepData?.connectorRef
                : prevStepData?.connectorRef?.value
              : prevStepData?.identifier
              ? prevStepData?.identifier
              : ''
          })
        }}
      >
        {(formik: { setFieldValue: (a: string, b: string) => void; values: KustomizePatchDataType }) => (
          <Form>
            <div className={helmcss.helmGitForm}>
              <Layout.Horizontal flex spacing="huge">
                <div className={helmcss.halfWidth}>
                  <FormInput.Text
                    name="identifier"
                    label={getString('pipeline.manifestType.manifestIdentifier')}
                    placeholder={getString('pipeline.manifestType.manifestPlaceholder')}
                  />
                </div>
              </Layout.Horizontal>
              {!!(connectionType === GitRepoName.Account && accountUrl) && (
                <GitRepositoryName
                  accountUrl={accountUrl}
                  expressions={expressions}
                  allowableTypes={allowableTypes}
                  fieldValue={formik.values?.repoName}
                  changeFieldValue={(value: string) => formik.setFieldValue('repoName', value)}
                  isReadonly={isReadonly}
                />
              )}
              <Layout.Horizontal flex spacing="huge" margin={{ top: 'small', bottom: 'small' }}>
                <div className={helmcss.halfWidth}>
                  <FormInput.Select
                    name="gitFetchType"
                    label={getString('pipeline.manifestType.gitFetchTypeLabel')}
                    items={gitFetchTypeList}
                  />
                </div>
                {formik.values?.gitFetchType === GitFetchTypes.Branch &&
                  renderBranch(
                    formik,
                    isReadonly,
                    getString('pipelineSteps.deploy.inputSet.branch'),
                    getString('pipeline.manifestType.branchPlaceholder'),
                    expressions,
                    allowableTypes
                  )}
 
                {formik.values?.gitFetchType === GitFetchTypes.Commit &&
                  renderCommitId(
                    formik,
                    isReadonly,
                    getString('pipeline.manifestType.commitId'),
                    getString('pipeline.manifestType.commitPlaceholder'),
                    expressions,
                    allowableTypes
                  )}
              </Layout.Horizontal>
              <div className={css.halfWidth}>
                <MultiTypeFieldSelector
                  defaultValueToReset={defaultValueToReset}
                  name={'paths'}
                  label={
                    <Text>
                      {selectedManifest === ManifestDataType.KustomizePatches
                        ? getString('fileFolderPathText')
                        : getString('common.git.filePath')}
                    </Text>
                  }
                >
                  <FieldArray
                    name="paths"
                    render={arrayHelpers => (
                      <Layout.Vertical>
                        {formik.values?.paths?.map((path: { path: string; uuid: string }, index: number) => (
                          <Layout.Horizontal
                            key={path.uuid}
                            flex={{ distribution: 'space-between' }}
                            style={{ alignItems: 'end' }}
                          >
                            <Layout.Horizontal
                              spacing="medium"
                              style={{ alignItems: 'baseline' }}
                              draggable={true}
                              onDragStart={event => {
                                onDragStart(event, index)
                              }}
                              onDragEnd={onDragEnd}
                              onDragOver={onDragOver}
                              onDragLeave={onDragLeave}
                              onDrop={event => onDrop(event, arrayHelpers, index)}
                            >
                              {renderPathArr({
                                index,
                                selectedManifest,
                                manifestPathPlaceholder: getString('pipeline.manifestType.manifestPathPlaceholder'),
                                pathPlaceholder: getString('pipeline.manifestType.pathPlaceholder'),
                                expressions,
                                allowableTypes
                              })}
                            </Layout.Horizontal>
                            {formik.values?.paths?.length > 1 && (
                              <Button minimal icon="main-trash" onClick={() => arrayHelpers.remove(index)} />
                            )}
                          </Layout.Horizontal>
                        ))}
                        <span>
                          <Button
                            text={getString('addFileText')}
                            variation={ButtonVariation.LINK}
                            className={css.addFileButton}
                            onClick={() => arrayHelpers.push({ path: '', uuid: uuid('', nameSpace()) })}
                          />
                        </span>
                      </Layout.Vertical>
                    )}
                  />
                </MultiTypeFieldSelector>
              </div>
            </div>
            <Layout.Horizontal spacing="medium">
              <Button
                variation={ButtonVariation.SECONDARY}
                text={getString('back')}
                icon="chevron-left"
                onClick={() => previousStep?.(prevStepData)}
              />
              <Button
                variation={ButtonVariation.PRIMARY}
                type="submit"
                text={getString('submit')}
                rightIcon="chevron-right"
              />
            </Layout.Horizontal>
          </Form>
        )}
      </Formik>
    </Layout.Vertical>
  )
}
 
export default KustomizePatchDetails