mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
79 lines
2.5 KiB
TypeScript
79 lines
2.5 KiB
TypeScript
import { FC } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// services
|
|
import { ProjectService } from "services/project";
|
|
// ui
|
|
import { Avatar } from "components/ui";
|
|
import { CustomSearchSelect } from "@plane/ui";
|
|
// icons
|
|
import { ChevronDown, UserCircle2 } from "lucide-react";
|
|
// fetch-keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
value: string | null | undefined;
|
|
onChange: (val: string) => void;
|
|
};
|
|
|
|
const projectService = new ProjectService();
|
|
|
|
export const SidebarLeadSelect: FC<Props> = (props) => {
|
|
const { value, onChange } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// fetch project members
|
|
const { data: members } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.fetchProjectMembers(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const options = members?.map((member) => ({
|
|
value: member.member.id,
|
|
query: member.member.display_name,
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
<Avatar user={member.member} height="18px" width="18px" />
|
|
{member.member.display_name}
|
|
</div>
|
|
),
|
|
}));
|
|
|
|
const selectedOption = members?.find((m) => m.member.id === value)?.member;
|
|
|
|
return (
|
|
<div className="flex items-center justify-start gap-1">
|
|
<div className="flex w-1/2 items-center justify-start gap-2 text-custom-text-300">
|
|
<UserCircle2 className="h-4 w-4" />
|
|
<span className="text-base">Lead</span>
|
|
</div>
|
|
<div className="flex items-center w-1/2 rounded-sm">
|
|
<CustomSearchSelect
|
|
className="w-full rounded-sm"
|
|
value={value}
|
|
customButtonClassName="rounded-sm"
|
|
customButton={
|
|
selectedOption ? (
|
|
<div className="flex items-center justify-start gap-2 p-0.5 w-full">
|
|
<Avatar user={selectedOption} />
|
|
<span className="text-sm text-custom-text-200">{selectedOption?.display_name}</span>
|
|
</div>
|
|
) : (
|
|
<div className="group flex items-center justify-between gap-2 p-1 text-sm text-custom-text-400 w-full">
|
|
<span>No lead</span>
|
|
<ChevronDown className="h-3.5 w-3.5 hidden group-hover:flex" />
|
|
</div>
|
|
)
|
|
}
|
|
options={options}
|
|
maxHeight="md"
|
|
onChange={onChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|