plane/web/components/issues/sidebar-select/state.tsx
sriram veeraghanta 8d15b9e7de
chore: format all files in monorepo (#3054)
* chore: format all files in the project

* fix: removing @types/react from dependencies

* fix: adding prettier and eslint config

* chore: format files

* fix: upgrading turbo version

* chore: ignoring warnings and adding todos

* fix: updated the type of bubble menu item in the document editor

* chore: format files

---------

Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
2023-12-10 15:48:10 +05:30

75 lines
2.2 KiB
TypeScript

import React from "react";
import { useRouter } from "next/router";
import useSWR from "swr";
// services
import { ProjectStateService } from "services/project";
// ui
import { CustomSearchSelect, StateGroupIcon } from "@plane/ui";
// helpers
import { addSpaceIfCamelCase } from "helpers/string.helper";
// constants
import { STATES_LIST } from "constants/fetch-keys";
type Props = {
value: string;
onChange: (val: string) => void;
disabled?: boolean;
};
// services
const stateService = new ProjectStateService();
export const SidebarStateSelect: React.FC<Props> = ({ value, onChange, disabled = false }) => {
const router = useRouter();
const { workspaceSlug, projectId, inboxIssueId } = router.query;
const { data: states } = useSWR(
workspaceSlug && projectId ? STATES_LIST(projectId as string) : null,
workspaceSlug && projectId ? () => stateService.getStates(workspaceSlug as string, projectId as string) : null
);
const selectedOption = states?.find((s) => s.id === value);
const options = states?.map((state) => ({
value: state.id,
query: state.name,
content: (
<div className="flex items-center gap-2 truncate">
<StateGroupIcon stateGroup={state.group} color={state.color} />
<span className="truncate">{state.name}</span>
</div>
),
}));
return (
<CustomSearchSelect
value={value}
onChange={onChange}
options={options}
customButton={
<div className="max-w-[10rem] truncate rounded bg-custom-background-80 px-2.5 py-0.5 text-xs">
{selectedOption ? (
<div className="flex items-center gap-1.5 text-left text-custom-text-100">
<StateGroupIcon stateGroup={selectedOption.group} color={selectedOption.color} />
<span className="truncate">{addSpaceIfCamelCase(selectedOption?.name ?? "")}</span>
</div>
) : inboxIssueId ? (
<div className="flex items-center gap-1.5 text-left text-custom-text-100">
<StateGroupIcon stateGroup="backlog" color="#ff7700" />
Triage
</div>
) : (
"None"
)}
</div>
}
width="min-w-[10rem] max-w-[12rem]"
noChevron
disabled={disabled}
/>
);
};