mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
76cc634a46
* feat: link option in remirror * fix: removed link import from remirror toolbar * refactor: constants folder * refactor: layouts folder structure * fix: issue view context * feat: cycles and modules toggle in settings
37 lines
954 B
TypeScript
37 lines
954 B
TypeScript
// ui
|
|
import { CustomDatePicker } from "components/ui";
|
|
// helpers
|
|
import { findHowManyDaysLeft } from "helpers/date-time.helper";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
partialUpdateIssue: (formData: Partial<IIssue>) => void;
|
|
isNotAllowed: boolean;
|
|
};
|
|
|
|
export const ViewDueDateSelect: React.FC<Props> = ({ issue, partialUpdateIssue, isNotAllowed }) => (
|
|
<div
|
|
className={`group relative ${
|
|
issue.target_date === null
|
|
? ""
|
|
: issue.target_date < new Date().toISOString()
|
|
? "text-red-600"
|
|
: findHowManyDaysLeft(issue.target_date) <= 3 && "text-orange-400"
|
|
}`}
|
|
>
|
|
<CustomDatePicker
|
|
placeholder="N/A"
|
|
value={issue?.target_date}
|
|
onChange={(val) =>
|
|
partialUpdateIssue({
|
|
target_date: val,
|
|
})
|
|
}
|
|
className={issue?.target_date ? "w-[6.5rem]" : "w-[3rem] text-center"}
|
|
disabled={isNotAllowed}
|
|
/>
|
|
</div>
|
|
);
|