* Fixed BoardColumnMenu * Fixed naming * Optimized board loading * Added GenericEditableField * Introduce GenericEditableField for BoardCards * remove logs * delete unused files * fix stories --------- Co-authored-by: corentin <corentin@twenty.com>
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { EditableField } from '@/ui/editable-field/components/EditableField';
|
|
import { FieldContext } from '@/ui/editable-field/states/FieldContext';
|
|
import { DateInputDisplay } from '@/ui/input/date/components/DateInputDisplay';
|
|
import { RecoilScope } from '@/ui/utilities/recoil-scope/components/RecoilScope';
|
|
import { parseDate } from '~/utils/date-utils';
|
|
|
|
import { EditableFieldEditModeDate } from './EditableFieldEditModeDate';
|
|
|
|
type OwnProps = {
|
|
icon?: React.ReactNode;
|
|
label?: string;
|
|
value: string | null | undefined;
|
|
onSubmit?: (newValue: string) => void;
|
|
};
|
|
|
|
export function DateEditableField({ icon, value, label, onSubmit }: OwnProps) {
|
|
async function handleChange(newValue: string) {
|
|
onSubmit?.(newValue);
|
|
}
|
|
|
|
const internalDateValue = value ? parseDate(value).toJSDate() : null;
|
|
|
|
return (
|
|
<RecoilScope SpecificContext={FieldContext}>
|
|
<EditableField
|
|
// onSubmit={handleSubmit}
|
|
// onCancel={handleCancel}
|
|
iconLabel={icon}
|
|
label={label}
|
|
editModeContent={
|
|
<EditableFieldEditModeDate
|
|
value={value || new Date().toISOString()}
|
|
onChange={(newValue: string) => {
|
|
handleChange(newValue);
|
|
}}
|
|
/>
|
|
}
|
|
displayModeContent={<DateInputDisplay value={internalDateValue} />}
|
|
isDisplayModeContentEmpty={!value}
|
|
/>
|
|
</RecoilScope>
|
|
);
|
|
}
|