forked from github/plane
c9cbca5ec8
* chore: issue archive services and types added * chore: project type and constant updated * feat: auto-close and auto-archive feature added * feat: implement rendering of archived issues * feat: implemented rendering of only list view for archived issues , chore: update types and services * feat: implemented archive issue detail page and unarchive issue functionality , chore: refactor code * feat: activity for issue archive and issue restore added * fix: redirection and delete fix * fix: merge conflict * fix: restore issue redirection fix * fix: disable modification of issue properties for archived issues, style: disable properties styling * fix: hide empty group, switch to list view on redirct to archived issues * fix: remove unnecessary header buttons for archived issue * fix: auto-close dropdown fix
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
import React from "react";
|
|
|
|
// ui
|
|
import { CustomSelect } from "components/ui";
|
|
// icons
|
|
import { ChartBarIcon } from "@heroicons/react/24/outline";
|
|
import { getPriorityIcon } from "components/icons/priority-icon";
|
|
// types
|
|
import { UserAuth } from "types";
|
|
// constants
|
|
import { PRIORITIES } from "constants/project";
|
|
|
|
type Props = {
|
|
value: string | null;
|
|
onChange: (val: string) => void;
|
|
userAuth: UserAuth;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export const SidebarPrioritySelect: React.FC<Props> = ({
|
|
value,
|
|
onChange,
|
|
userAuth,
|
|
disabled = false,
|
|
}) => {
|
|
const isNotAllowed = userAuth.isGuest || userAuth.isViewer || disabled;
|
|
|
|
return (
|
|
<div className="flex flex-wrap items-center py-2">
|
|
<div className="flex items-center gap-x-2 text-sm text-custom-text-200 sm:basis-1/2">
|
|
<ChartBarIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>Priority</p>
|
|
</div>
|
|
<div className="sm:basis-1/2">
|
|
<CustomSelect
|
|
label={
|
|
<div className="flex items-center gap-2 text-left capitalize">
|
|
<span className={`${value ? "text-custom-text-100" : "text-custom-text-200"}`}>
|
|
{getPriorityIcon(value ?? "None", "text-sm")}
|
|
</span>
|
|
<span className={`${value ? "text-custom-text-100" : "text-custom-text-200"}`}>
|
|
{value ?? "None"}
|
|
</span>
|
|
</div>
|
|
}
|
|
value={value}
|
|
onChange={onChange}
|
|
width="w-full"
|
|
position="right"
|
|
disabled={isNotAllowed}
|
|
>
|
|
{PRIORITIES.map((option) => (
|
|
<CustomSelect.Option key={option} value={option} className="capitalize">
|
|
<>
|
|
{getPriorityIcon(option, "text-sm")}
|
|
{option ?? "None"}
|
|
</>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|