forked from github/plane
d8c10b6bc0
* fix: ellipsis added to issue title * feat: toolttip added * feat: assignees tooltip added * fix: build fix
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import React from "react";
|
|
|
|
// ui
|
|
import { CustomSelect, Tooltip } from "components/ui";
|
|
// icons
|
|
import { getPriorityIcon } from "components/icons/priority-icon";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// constants
|
|
import { PRIORITIES } from "constants/project";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
partialUpdateIssue: (formData: Partial<IIssue>) => void;
|
|
position?: "left" | "right";
|
|
isNotAllowed: boolean;
|
|
};
|
|
|
|
export const ViewPrioritySelect: React.FC<Props> = ({
|
|
issue,
|
|
partialUpdateIssue,
|
|
position = "right",
|
|
isNotAllowed,
|
|
}) => (
|
|
<CustomSelect
|
|
label={
|
|
<Tooltip tooltipHeading="Priority" tooltipContent={issue.priority ?? "None"}>
|
|
<span>
|
|
{getPriorityIcon(
|
|
issue.priority && issue.priority !== "" ? issue.priority ?? "" : "None",
|
|
"text-sm"
|
|
)}
|
|
</span>
|
|
</Tooltip>
|
|
}
|
|
value={issue.state}
|
|
onChange={(data: string) => {
|
|
partialUpdateIssue({ priority: data });
|
|
}}
|
|
maxHeight="md"
|
|
buttonClassName={`flex ${
|
|
isNotAllowed ? "cursor-not-allowed" : "cursor-pointer"
|
|
} items-center gap-x-2 rounded px-2 py-0.5 capitalize shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 ${
|
|
issue.priority === "urgent"
|
|
? "bg-red-100 text-red-600 hover:bg-red-100"
|
|
: issue.priority === "high"
|
|
? "bg-orange-100 text-orange-500 hover:bg-orange-100"
|
|
: issue.priority === "medium"
|
|
? "bg-yellow-100 text-yellow-500 hover:bg-yellow-100"
|
|
: issue.priority === "low"
|
|
? "bg-green-100 text-green-500 hover:bg-green-100"
|
|
: "bg-gray-100"
|
|
} border-none`}
|
|
noChevron
|
|
disabled={isNotAllowed}
|
|
>
|
|
{PRIORITIES?.map((priority) => (
|
|
<CustomSelect.Option key={priority} value={priority} className="capitalize">
|
|
<>
|
|
{getPriorityIcon(priority, "text-sm")}
|
|
{priority ?? "None"}
|
|
</>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
);
|