mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
74 lines
2.4 KiB
JavaScript
74 lines
2.4 KiB
JavaScript
import React from 'react';
|
|
import { FastField, ErrorMessage } from 'formik';
|
|
import { Classes, FormGroup, TextArea, Position } from '@blueprintjs/core';
|
|
import { DateInput } from '@blueprintjs/datetime';
|
|
import classNames from 'classnames';
|
|
import { CLASSES } from 'common/classes';
|
|
import { FieldRequiredHint, FormattedMessage as T } from 'components';
|
|
import { useAutofocus } from 'hooks';
|
|
import {
|
|
inputIntent,
|
|
momentFormatter,
|
|
tansformDateValue,
|
|
handleDateChange,
|
|
} from 'utils';
|
|
|
|
/**
|
|
* locking Transactions form fields.
|
|
*/
|
|
export default function LockingTransactionsFormFields() {
|
|
const dateFieldRef = useAutofocus();
|
|
|
|
return (
|
|
<div className={Classes.DIALOG_BODY}>
|
|
{/*------------ Locking Date -----------*/}
|
|
<FastField name={'lock_to_date'}>
|
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'locking_transactions.dialog.locking_date'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
intent={inputIntent({ error, touched })}
|
|
helperText={<ErrorMessage name="lock_to_date" />}
|
|
minimal={true}
|
|
className={classNames(CLASSES.FILL, 'form-group--date')}
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
onChange={handleDateChange((formattedDate) => {
|
|
form.setFieldValue('lock_to_date', formattedDate);
|
|
})}
|
|
value={tansformDateValue(value)}
|
|
popoverProps={{
|
|
position: Position.BOTTOM,
|
|
minimal: true,
|
|
}}
|
|
intent={inputIntent({ error, touched })}
|
|
inputRef={(ref) => (dateFieldRef.current = ref)}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
|
|
{/*------------ Locking Reason -----------*/}
|
|
<FastField name={'reason'}>
|
|
{({ field, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'locking_transactions.dialog.reason'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
className={'form-group--reason'}
|
|
intent={inputIntent({ error, touched })}
|
|
helperText={<ErrorMessage name={'reason'} />}
|
|
>
|
|
<TextArea
|
|
growVertically={true}
|
|
large={true}
|
|
intent={inputIntent({ error, touched })}
|
|
{...field}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</div>
|
|
);
|
|
}
|