mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 07:39:32 +01:00
* chore: added issue relations in issue listing * chore: added pagination for issue detail endpoint * chore: bulk date update endpoint * chore: appended the target date * chore: issue relation new types defined * fix: order by and issue filters * fix: passed order by in pagination * chore: changed the key for issue dates * Revamp Timeline Layout * fix block dragging * minor ui fixes * improve auto scroll UX * remove unused import * fix timeline layout heights * modify base timeline store * Segregate issue relation types --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { CircleDot, CopyPlus, XCircle } from "lucide-react";
|
|
import { RelatedIcon } from "@plane/ui";
|
|
import { TRelationObject } from "@/components/issues";
|
|
import { TIssueRelationTypes } from "../../types";
|
|
|
|
export const ISSUE_RELATION_OPTIONS: Record<TIssueRelationTypes, TRelationObject> = {
|
|
relates_to: {
|
|
key: "relates_to",
|
|
label: "Relates to",
|
|
className: "bg-custom-background-80 text-custom-text-200",
|
|
icon: (size) => <RelatedIcon height={size} width={size} className="text-custom-text-200" />,
|
|
placeholder: "Add related issues",
|
|
},
|
|
duplicate: {
|
|
key: "duplicate",
|
|
label: "Duplicate of",
|
|
className: "bg-custom-background-80 text-custom-text-200",
|
|
icon: (size) => <CopyPlus size={size} className="text-custom-text-200" />,
|
|
placeholder: "None",
|
|
},
|
|
blocked_by: {
|
|
key: "blocked_by",
|
|
label: "Blocked by",
|
|
className: "bg-red-500/20 text-red-700",
|
|
icon: (size) => <CircleDot size={size} className="text-custom-text-200" />,
|
|
placeholder: "None",
|
|
},
|
|
blocking: {
|
|
key: "blocking",
|
|
label: "Blocking",
|
|
className: "bg-yellow-500/20 text-yellow-700",
|
|
icon: (size) => <XCircle size={size} className="text-custom-text-200" />,
|
|
placeholder: "None",
|
|
},
|
|
};
|