mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
102 lines
2.6 KiB
JavaScript
102 lines
2.6 KiB
JavaScript
import React from 'react';
|
|
import {
|
|
Intent,
|
|
Button,
|
|
ButtonGroup,
|
|
Popover,
|
|
PopoverInteractionKind,
|
|
Position,
|
|
Menu,
|
|
MenuItem,
|
|
} from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
import classNames from 'classnames';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useFormikContext } from 'formik';
|
|
|
|
import { CLASSES } from 'common/classes';
|
|
import { Icon } from 'components';
|
|
import { useCustomerFormContext } from './CustomerFormProvider';
|
|
|
|
/**
|
|
* Customer floating actions bar.
|
|
*/
|
|
export default function CustomerFloatingActions() {
|
|
const history = useHistory();
|
|
|
|
// Customer form context.
|
|
const { isNewMode,setSubmitPayload } = useCustomerFormContext();
|
|
|
|
// Formik context.
|
|
const { resetForm, submitForm, isSubmitting } = useFormikContext();
|
|
|
|
// Handle submit button click.
|
|
const handleSubmitBtnClick = (event) => {
|
|
setSubmitPayload({ noRedirect: false });
|
|
};
|
|
|
|
// Handle cancel button click.
|
|
const handleCancelBtnClick = (event) => {
|
|
history.goBack();
|
|
};
|
|
|
|
// handle clear button clicl.
|
|
const handleClearBtnClick = (event) => {
|
|
resetForm();
|
|
};
|
|
|
|
// Handle submit & new button click.
|
|
const handleSubmitAndNewClick = (event) => {
|
|
submitForm();
|
|
setSubmitPayload({ noRedirect: true });
|
|
};
|
|
|
|
return (
|
|
<div className={classNames(CLASSES.PAGE_FORM_FLOATING_ACTIONS)}>
|
|
<ButtonGroup>
|
|
{/* ----------- Save and New ----------- */}
|
|
<Button
|
|
disabled={isSubmitting}
|
|
loading={isSubmitting}
|
|
intent={Intent.PRIMARY}
|
|
type="submit"
|
|
onClick={handleSubmitBtnClick}
|
|
text={!isNewMode ? <T id={'edit'} /> : <T id={'save'} />}
|
|
/>
|
|
<Popover
|
|
content={
|
|
<Menu>
|
|
<MenuItem
|
|
text={<T id={'save_and_new'} />}
|
|
onClick={handleSubmitAndNewClick}
|
|
/>
|
|
</Menu>
|
|
}
|
|
minimal={true}
|
|
interactionKind={PopoverInteractionKind.CLICK}
|
|
position={Position.BOTTOM_LEFT}
|
|
>
|
|
<Button
|
|
disabled={isSubmitting}
|
|
intent={Intent.PRIMARY}
|
|
rightIcon={<Icon icon="arrow-drop-up-16" iconSize={20} />}
|
|
/>
|
|
</Popover>
|
|
</ButtonGroup>
|
|
{/* ----------- Clear & Reset----------- */}
|
|
<Button
|
|
className={'ml1'}
|
|
disabled={isSubmitting}
|
|
onClick={handleClearBtnClick}
|
|
text={!isNewMode ? <T id={'reset'} /> : <T id={'clear'} />}
|
|
/>
|
|
{/* ----------- Cancel ----------- */}
|
|
<Button
|
|
className={'ml1'}
|
|
onClick={handleCancelBtnClick}
|
|
text={<T id={'cancel'} />}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|