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 | 219x 219x 219x 219x 219x 219x 219x 219x 219x 219x 219x 7x 6x 6x 6x 6x 6x 6x 3x 1x 1x 1x 1x 1x 6x 5x 1x 219x | /* * 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 { Layout, Button, Formik, Text, FormInput, ModalErrorHandler, ModalErrorHandlerBinding, StepProps, ButtonVariation, PageSpinner } from '@wings-software/uicore' import * as Yup from 'yup' import { FontVariation } from '@harness/design-system' import type { ConnectorRequestBody, ConnectorInfoDTO } from 'services/cd-ng' import { useStrings } from 'framework/strings' import SecretInput from '@secrets/components/SecretInput/SecretInput' import TextReference, { TextReferenceInterface, ValueType } from '@secrets/components/TextReference/TextReference' import { setupServiceNowFormData } from '@connectors/pages/connectors/utils/ConnectorUtils' import type { SecretReferenceInterface } from '@secrets/utils/SecretField' import css from './ServiceNowConnector.module.scss' interface ServiceNowFormData { serviceNowUrl: string username: TextReferenceInterface | void password: SecretReferenceInterface | void } interface AuthenticationProps { onConnectorCreated?: (data?: ConnectorRequestBody) => void | Promise<void> isEditMode: boolean setIsEditMode: (val: boolean) => void connectorInfo: ConnectorInfoDTO | void accountId: string orgIdentifier: string projectIdentifier: string } interface ServiceNowFormProps extends ConnectorInfoDTO { name: string isEditMode?: boolean } const defaultInitialFormData: ServiceNowFormData = { serviceNowUrl: '', username: undefined, password: undefined } const ServiceNowDetailsForm: React.FC<StepProps<ServiceNowFormProps> & AuthenticationProps> = props => { const { prevStepData, nextStep, accountId } = props const [, setModalErrorHandler] = React.useState<ModalErrorHandlerBinding | undefined>() const [initialValues, setInitialValues] = React.useState(defaultInitialFormData) const [loadConnector] = React.useState(false) const [loadingConnectorSecrets, setLoadingConnectorSecrets] = React.useState(true && props.isEditMode) const { getString } = useStrings() React.useEffect(() => { if (loadingConnectorSecrets) { Eif (props.isEditMode) { Eif (props.connectorInfo) { setupServiceNowFormData(props.connectorInfo, accountId).then(data => { setInitialValues(data as ServiceNowFormData) setLoadingConnectorSecrets(false) }) } else { setInitialValues(prevStepData as any) setLoadingConnectorSecrets(false) } } } }, [loadingConnectorSecrets]) return loadingConnectorSecrets ? ( <PageSpinner /> ) : ( <Layout.Vertical spacing="small" className={css.secondStep}> <Text font={{ variation: FontVariation.H3 }} tooltipProps={{ dataTooltipId: 'serviceNowConnectorDetails' }}> {getString('details')} </Text> <Formik initialValues={{ ...initialValues, ...prevStepData }} formName="serviceNowDetailsForm" validationSchema={Yup.object().shape({ serviceNowUrl: Yup.string().trim().required(getString('connectors.validation.serviceNowUrl')), username: Yup.string().required(getString('validation.username')), passwordRef: Yup.object().required(getString('validation.password')) })} onSubmit={stepData => { nextStep?.({ ...props.connectorInfo, ...prevStepData, ...stepData } as ServiceNowFormProps) }} > {formik => { return ( <> <ModalErrorHandler bind={setModalErrorHandler} /> <Layout.Vertical padding={{ top: 'large', bottom: 'large' }} width={'56%'}> <FormInput.Text name="serviceNowUrl" placeholder={getString('UrlLabel')} label={getString('UrlLabel')} /> <TextReference name="username" stringId="username" type={formik.values.username ? formik.values.username?.type : ValueType.TEXT} /> <SecretInput name={'passwordRef'} label={getString('connectors.apiKeyOrPassword')} /> </Layout.Vertical> <Layout.Horizontal padding={{ top: 'small' }} spacing="medium"> <Button text={getString('back')} icon="chevron-left" variation={ButtonVariation.SECONDARY} onClick={() => props?.previousStep?.(props?.prevStepData)} data-name="serviceNowBackButton" /> <Button type="submit" onClick={formik.submitForm} variation={ButtonVariation.PRIMARY} text={getString('continue')} rightIcon="chevron-right" disabled={loadConnector} /> </Layout.Horizontal> </> ) }} </Formik> </Layout.Vertical> ) } export default ServiceNowDetailsForm |