forked from github/plane
8d730e6680
* fix validation for start and end date in spreadsheet layout * revamp logic for sorting in all fields
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { DateDropdown } from "components/dropdowns";
|
|
// helpers
|
|
import { renderFormattedPayloadDate } from "helpers/date-time.helper";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
onClose: () => void;
|
|
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetDueDateColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue, onChange, disabled, onClose } = props;
|
|
|
|
return (
|
|
<div className="h-11 border-b-[0.5px] border-custom-border-200">
|
|
<DateDropdown
|
|
value={issue.target_date}
|
|
minDate={issue.start_date ? new Date(issue.start_date) : undefined}
|
|
onChange={(data) => {
|
|
const targetDate = data ? renderFormattedPayloadDate(data) : null;
|
|
onChange(
|
|
issue,
|
|
{ target_date: targetDate },
|
|
{
|
|
changed_property: "target_date",
|
|
change_details: targetDate,
|
|
}
|
|
);
|
|
}}
|
|
disabled={disabled}
|
|
placeholder="Due date"
|
|
buttonVariant="transparent-with-text"
|
|
buttonClassName="rounded-none text-left"
|
|
buttonContainerClassName="w-full"
|
|
onClose={onClose}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|