forked from github/plane
d5d64e09d4
* style: shortcut modal * style: feature setting module icon * style: delete issue modal * style: delete project modal * style: sidebar prompt for chart and other info * fix: create issue modal state icon * fix: workspace dropdown
82 lines
2.2 KiB
TypeScript
82 lines
2.2 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import stateService from "services/state.service";
|
|
// ui
|
|
import { CustomSearchSelect } from "components/ui";
|
|
// icons
|
|
import { PlusIcon, Squares2X2Icon } from "@heroicons/react/24/outline";
|
|
import { getStateGroupIcon } from "components/icons";
|
|
// helpers
|
|
import { getStatesList } from "helpers/state.helper";
|
|
// fetch keys
|
|
import { STATE_LIST } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
projectId: string;
|
|
};
|
|
|
|
export const IssueStateSelect: React.FC<Props> = ({ setIsOpen, value, onChange, projectId }) => {
|
|
// states
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { data: stateGroups } = useSWR(
|
|
workspaceSlug && projectId ? STATE_LIST(projectId) : null,
|
|
workspaceSlug && projectId
|
|
? () => stateService.getStates(workspaceSlug as string, projectId)
|
|
: null
|
|
);
|
|
const states = getStatesList(stateGroups ?? {});
|
|
|
|
const options = states?.map((state) => ({
|
|
value: state.id,
|
|
query: state.name,
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
{getStateGroupIcon(state.group, "16", "16", state.color)}
|
|
{state.name}
|
|
</div>
|
|
),
|
|
}));
|
|
|
|
const selectedOption = states?.find((s) => s.id === value);
|
|
|
|
return (
|
|
<CustomSearchSelect
|
|
value={value}
|
|
onChange={onChange}
|
|
options={options}
|
|
label={
|
|
<div className="flex items-center gap-2 text-gray-500">
|
|
{selectedOption ? (
|
|
getStateGroupIcon(selectedOption.group, "16", "16", selectedOption.color)
|
|
) : (
|
|
<Squares2X2Icon className="h-4 w-4" />
|
|
)}
|
|
|
|
{selectedOption?.name ?? "State"}
|
|
</div>
|
|
}
|
|
footerOption={
|
|
<button
|
|
type="button"
|
|
className="flex w-full select-none items-center gap-2 rounded px-1 py-1.5 text-xs text-gray-500 hover:bg-hover-gray"
|
|
onClick={() => setIsOpen(true)}
|
|
>
|
|
<PlusIcon className="h-4 w-4" aria-hidden="true" />
|
|
Create New State
|
|
</button>
|
|
}
|
|
noChevron
|
|
/>
|
|
);
|
|
};
|