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 | 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 8x 8x 8x 8x 8x 8x 8x 8x 8x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 8x 2x 2x 13x 10x | /* * Copyright 2021 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Free Trial 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/05/PolyForm-Free-Trial-1.0.0.txt. */ import React, { useState } from 'react' import { Button, Container, Formik, FormikForm as Form, Layout, ModalErrorHandler, ModalErrorHandlerBinding, ButtonVariation } from '@wings-software/uicore' import * as Yup from 'yup' import { useParams } from 'react-router-dom' import { NameIdDescriptionTags, useToaster } from '@common/components' import { Role, usePostRole, usePutRole } from 'services/rbac' import { useStrings } from 'framework/strings' import type { ProjectPathProps } from '@common/interfaces/RouteInterfaces' import { NameSchema, IdentifierSchema } from '@common/utils/Validation' import useRBACError from '@rbac/utils/useRBACError/useRBACError' import css from '@rbac/modals/RoleModal/useRoleModal.module.scss' interface RoleModalData { data?: Role isEdit?: boolean onSubmit?: (role: Role) => void onCancel?: () => void } const RoleForm: React.FC<RoleModalData> = props => { const { data: roleData, onSubmit, isEdit, onCancel } = props const { accountId, orgIdentifier, projectIdentifier } = useParams<ProjectPathProps>() const { getRBACErrorMessage } = useRBACError() const { getString } = useStrings() const { showSuccess } = useToaster() const [modalErrorHandler, setModalErrorHandler] = useState<ModalErrorHandlerBinding>() const { mutate: createRole, loading: saving } = usePostRole({ queryParams: { accountIdentifier: accountId, orgIdentifier, projectIdentifier } }) const { mutate: editRole, loading: updating } = usePutRole({ identifier: roleData?.identifier || '', queryParams: { accountIdentifier: accountId, orgIdentifier, projectIdentifier } }) const handleSubmit = async (values: Role): Promise<void> => { try { if (isEdit) { const updated = await editRole(values) /* istanbul ignore else */ if (updated) { showSuccess(getString('rbac.roleForm.updateSuccess')) onSubmit?.(values) } } else { const created = await createRole(values) /* istanbul ignore else */ if (created) { showSuccess(getString('rbac.roleForm.createSuccess')) onSubmit?.(values) } } } catch (e) { /* istanbul ignore next */ modalErrorHandler?.showDanger(getRBACErrorMessage(e)) } } return ( <Formik initialValues={{ identifier: '', name: '', description: '', tags: {}, ...roleData }} formName="roleForm" validationSchema={Yup.object().shape({ name: NameSchema(), identifier: IdentifierSchema() })} onSubmit={values => { modalErrorHandler?.hide() handleSubmit(values) }} > {formikProps => { return ( <Form> <Container className={css.roleForm}> <ModalErrorHandler bind={setModalErrorHandler} /> <NameIdDescriptionTags formikProps={formikProps} identifierProps={{ isIdentifierEditable: !isEdit }} /> </Container> <Layout.Horizontal spacing="small"> <Button variation={ButtonVariation.PRIMARY} text={getString('save')} type="submit" disabled={saving || updating} /> <Button text={getString('cancel')} variation={ButtonVariation.TERTIARY} onClick={onCancel} /> </Layout.Horizontal> </Form> ) }} </Formik> ) } export default RoleForm |