forked from github/plane
2b168edd99
* feat: peak overview for issues * fix: peek spelling * chore: truncate issue property labels * style: full screen view designed * chore: add comment section * chore: copy link and delete options added * chore: update icons --------- Co-authored-by: Aaryan Khandelwal <aaryan610@Aaryans-MacBook-Pro.local>
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import stateService from "services/state.service";
|
|
// ui
|
|
import { Spinner, CustomSelect } from "components/ui";
|
|
// icons
|
|
import { getStateGroupIcon } from "components/icons";
|
|
// helpers
|
|
import { getStatesList } from "helpers/state.helper";
|
|
import { addSpaceIfCamelCase } from "helpers/string.helper";
|
|
// constants
|
|
import { STATES_LIST } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
value: string;
|
|
onChange: (val: string) => void;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export const SidebarStateSelect: React.FC<Props> = ({ value, onChange, disabled = false }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, inboxIssueId } = router.query;
|
|
|
|
const { data: stateGroups } = useSWR(
|
|
workspaceSlug && projectId ? STATES_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => stateService.getStates(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
const states = getStatesList(stateGroups);
|
|
|
|
const selectedState = states?.find((s) => s.id === value);
|
|
|
|
return (
|
|
<CustomSelect
|
|
customButton={
|
|
<button type="button" className="bg-custom-background-80 text-sm rounded px-2.5 py-0.5">
|
|
{selectedState ? (
|
|
<div className="flex items-center gap-1.5 text-left text-custom-text-100">
|
|
{getStateGroupIcon(
|
|
selectedState?.group ?? "backlog",
|
|
"14",
|
|
"14",
|
|
selectedState?.color ?? ""
|
|
)}
|
|
{addSpaceIfCamelCase(selectedState?.name ?? "")}
|
|
</div>
|
|
) : inboxIssueId ? (
|
|
<div className="flex items-center gap-1.5 text-left text-custom-text-100">
|
|
{getStateGroupIcon("backlog", "14", "14", "#ff7700")}
|
|
Triage
|
|
</div>
|
|
) : (
|
|
"None"
|
|
)}
|
|
</button>
|
|
}
|
|
value={value}
|
|
onChange={onChange}
|
|
optionsClassName="w-min"
|
|
position="left"
|
|
disabled={disabled}
|
|
>
|
|
{states ? (
|
|
states.length > 0 ? (
|
|
states.map((state) => (
|
|
<CustomSelect.Option key={state.id} value={state.id}>
|
|
<>
|
|
{getStateGroupIcon(state.group, "16", "16", state.color)}
|
|
{state.name}
|
|
</>
|
|
</CustomSelect.Option>
|
|
))
|
|
) : (
|
|
<div className="text-center">No states found</div>
|
|
)
|
|
) : (
|
|
<Spinner />
|
|
)}
|
|
</CustomSelect>
|
|
);
|
|
};
|