mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
93 lines
2.8 KiB
TypeScript
93 lines
2.8 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { FormGroup, InputGroup, Intent, Button } from '@blueprintjs/core';
|
|
import { FastField, Form, useFormikContext, ErrorMessage } from 'formik';
|
|
import {
|
|
ListSelect,
|
|
FieldRequiredHint,
|
|
FormattedMessage as T,
|
|
FFormGroup,
|
|
FInputGroup,
|
|
} from '@/components';
|
|
import { CLASSES } from '@/constants/classes';
|
|
import classNames from 'classnames';
|
|
import { compose, inputIntent } from '@/utils';
|
|
import { useInviteUserFormContext } from './InviteUserFormProvider';
|
|
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
|
|
function InviteUserFormContent({
|
|
// #withDialogActions
|
|
closeDialog,
|
|
}) {
|
|
const { isSubmitting } = useFormikContext();
|
|
const { isEditMode, dialogName, roles } = useInviteUserFormContext();
|
|
|
|
const handleClose = () => {
|
|
closeDialog(dialogName);
|
|
};
|
|
|
|
return (
|
|
<Form>
|
|
<div className={CLASSES.DIALOG_BODY}>
|
|
<p className="mb2">
|
|
<T id={'your_access_to_your_team'} />
|
|
</p>
|
|
{/* ----------- Email ----------- */}
|
|
<FFormGroup
|
|
name={'email'}
|
|
label={<T id={'invite_user.label.email'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
>
|
|
<FInputGroup name={'email'} />
|
|
</FFormGroup>
|
|
{/* ----------- Role name ----------- */}
|
|
<FastField name={'role_id'}>
|
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'invite_user.label.role_name'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
helperText={<ErrorMessage name="role_id" />}
|
|
className={classNames(CLASSES.FILL, 'form-group--role_name')}
|
|
intent={inputIntent({ error, touched })}
|
|
>
|
|
<ListSelect
|
|
items={roles}
|
|
onItemSelect={({ id }) => {
|
|
form.setFieldValue('role_id', id);
|
|
}}
|
|
selectedItem={value}
|
|
selectedItemProp={'id'}
|
|
textProp={'name'}
|
|
// labelProp={'id '}
|
|
popoverProps={{ minimal: true }}
|
|
intent={inputIntent({ error, touched })}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</div>
|
|
|
|
<div className={CLASSES.DIALOG_FOOTER}>
|
|
<div className={CLASSES.DIALOG_FOOTER_ACTIONS}>
|
|
<Button onClick={handleClose}>
|
|
<T id={'cancel'} />
|
|
</Button>
|
|
|
|
<Button
|
|
intent={Intent.PRIMARY}
|
|
type="submit"
|
|
disabled={isSubmitting}
|
|
loading={isSubmitting}
|
|
style={{ minWidth: '95px' }}
|
|
>
|
|
{isEditMode ? <T id={'edit'} /> : <T id={'invite'} />}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogActions)(InviteUserFormContent);
|