forked from github/plane
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import React from "react";
|
|
|
|
// ui
|
|
import { CustomSelect } from "components/ui";
|
|
// icons
|
|
import { getPriorityIcon } from "components/icons/priority-icon";
|
|
// constants
|
|
import { PRIORITIES } from "constants/project";
|
|
|
|
type Props = {
|
|
value: string | null;
|
|
onChange: (value: string) => void;
|
|
};
|
|
|
|
export const IssuePrioritySelect: React.FC<Props> = ({ value, onChange }) => (
|
|
<CustomSelect
|
|
value={value}
|
|
label={
|
|
<div className="flex items-center justify-center gap-2 text-xs">
|
|
<span className="flex items-center">
|
|
{getPriorityIcon(value, `${value ? "text-xs" : "text-xs text-gray-500"}`)}
|
|
</span>
|
|
<span className={`${value ? "text-gray-600" : "text-gray-500"} capitalize`}>
|
|
{value ?? "Priority"}
|
|
</span>
|
|
</div>
|
|
}
|
|
onChange={onChange}
|
|
noChevron
|
|
>
|
|
{PRIORITIES.map((priority) => (
|
|
<CustomSelect.Option key={priority} value={priority}>
|
|
<div className="flex w-full justify-between gap-2 rounded">
|
|
<div className="flex items-center justify-start gap-2">
|
|
<span>{getPriorityIcon(priority)}</span>
|
|
<span className="capitalize">{priority ?? "None"}</span>
|
|
</div>
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
);
|