mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import { useFormikContext } from 'formik';
|
|
import { ElementCustomize } from '../../../ElementCustomize/ElementCustomize';
|
|
import { PaymentReceivedCustomizeGeneralField } from './PaymentReceivedCustomizeFieldsGeneral';
|
|
import { PaymentReceivedCustomizeContentFields } from './PaymentReceivedCustomizeFieldsContent';
|
|
import { PaymentReceivedCustomizeValues } from './types';
|
|
import { PaymentReceivedPaperTemplate } from './PaymentReceivedPaperTemplate';
|
|
import { initialValues } from './constants';
|
|
import { useDrawerContext } from '@/components/Drawer/DrawerProvider';
|
|
import { useDrawerActions } from '@/hooks/state';
|
|
import { BrandingTemplateForm } from '@/containers/BrandingTemplates/BrandingTemplateForm';
|
|
|
|
export function PaymentReceivedCustomizeContent() {
|
|
const { payload, name } = useDrawerContext();
|
|
const { closeDrawer } = useDrawerActions();
|
|
|
|
const templateId = payload?.templateId || null;
|
|
|
|
const handleSuccess = () => {
|
|
closeDrawer(name);
|
|
};
|
|
|
|
return (
|
|
<BrandingTemplateForm<PaymentReceivedCustomizeValues>
|
|
templateId={templateId}
|
|
defaultValues={initialValues}
|
|
onSuccess={handleSuccess}
|
|
resource={'PaymentReceive'}
|
|
>
|
|
<ElementCustomize.PaperTemplate>
|
|
<PaymentReceivedPaperTemplateFormConnected />
|
|
</ElementCustomize.PaperTemplate>
|
|
|
|
<ElementCustomize.FieldsTab id={'general'} label={'General'}>
|
|
<PaymentReceivedCustomizeGeneralField />
|
|
</ElementCustomize.FieldsTab>
|
|
|
|
<ElementCustomize.FieldsTab id={'content'} label={'Content'}>
|
|
<PaymentReceivedCustomizeContentFields />
|
|
</ElementCustomize.FieldsTab>
|
|
|
|
<ElementCustomize.FieldsTab id={'totals'} label={'Totals'}>
|
|
asdfasdfdsaf #3
|
|
</ElementCustomize.FieldsTab>
|
|
</BrandingTemplateForm>
|
|
);
|
|
}
|
|
|
|
function PaymentReceivedPaperTemplateFormConnected() {
|
|
const { values } = useFormikContext<PaymentReceivedCustomizeValues>();
|
|
|
|
return <PaymentReceivedPaperTemplate {...values} />;
|
|
}
|