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 | 233x 233x 233x 233x 233x 233x 233x 233x 233x 8x 5x 5x 5x 3x 5x 233x | /*
* 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 { StepWizard } from '@wings-software/uicore'
import { useStrings } from 'framework/strings'
import type { SecretDTOV2 } from 'services/cd-ng'
import { useTelemetry } from '@common/hooks/useTelemetry'
import { Category, SecretActions } from '@common/constants/TrackingConstants'
import StepSSHDetails from './views/StepDetails'
import StepAuthentication from './views/StepAuthentication'
import StepVerify from './views/StepVerify'
import type { DetailsForm } from './views/StepDetails'
import type { SSHConfigFormData } from './views/StepAuthentication'
interface CreateSSHCredWizardProps {
onSuccess?: (secret: SecretDTOV2) => void
hideModal?: () => void
}
export interface SSHCredSharedObj {
detailsData?: DetailsForm
authData?: SSHConfigFormData
isEdit?: boolean
}
const CreateSSHCredWizard: React.FC<CreateSSHCredWizardProps & SSHCredSharedObj> = props => {
const { isEdit } = props
const { getString } = useStrings()
const { trackEvent } = useTelemetry()
React.useEffect(() => {
trackEvent(SecretActions.StartCreateSecret, {
category: Category.PROJECT
})
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
return (
<StepWizard<SSHCredSharedObj> icon="secret-ssh" iconProps={{ size: 37 }} title={getString('ssh.sshCredential')}>
<StepSSHDetails name={getString('secrets.createSSHCredWizard.titleDetails')} {...props} />
<StepAuthentication name={getString('configuration')} onSuccess={props.onSuccess} isEdit={isEdit} />
<StepVerify name={getString('secrets.stepTitleVerify')} closeModal={props.hideModal} />
</StepWizard>
)
}
export default CreateSSHCredWizard
|