mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
483c49d0ff
* style: sub issue theming * style: shortcut modal theming * style: blocking and blocked by modal theming * fix: filter labels dropdown width fix * style: display properties * chore: workspace invite * style: invite co workers theming * style: create workspace theming * style: attachment theming * style: workspace sidebar theming * style: issue property theming * style: create module modal lead icon * style: label list modal theming * delete attachment and member modal theming * style: transfer issue modal * style: delete estimate modal theming * style: module form status * style: delete state modal theming * style: shortcut modal * style: onboarding logo * style: onboarding command menu
81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import Image from "next/image";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import projectServices from "services/project.service";
|
|
// ui
|
|
import { Avatar, CustomSearchSelect } from "components/ui";
|
|
// icons
|
|
import { UserCircleIcon } from "@heroicons/react/24/outline";
|
|
// fetch-keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
value: string | null;
|
|
onChange: () => void;
|
|
};
|
|
|
|
export const ModuleLeadSelect: React.FC<Props> = ({ value, onChange }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: members } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectServices.projectMembers(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const options =
|
|
members?.map((member) => ({
|
|
value: member.member.id,
|
|
query:
|
|
(member.member.first_name && member.member.first_name !== ""
|
|
? member.member.first_name
|
|
: member.member.email) +
|
|
" " +
|
|
member.member.last_name ?? "",
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
<Avatar user={member.member} />
|
|
{member.member.first_name && member.member.first_name !== ""
|
|
? member.member.first_name
|
|
: member.member.email}
|
|
</div>
|
|
),
|
|
})) ?? [];
|
|
|
|
const selectedOption = members?.find((m) => m.member.id === value)?.member;
|
|
|
|
return (
|
|
<CustomSearchSelect
|
|
options={options}
|
|
value={value}
|
|
label={
|
|
<div className="flex items-center gap-2">
|
|
{selectedOption ? (
|
|
<Avatar user={selectedOption} />
|
|
) : (
|
|
<UserCircleIcon className="h-4 w-4 text-brand-secondary" />
|
|
)}
|
|
{selectedOption ? (
|
|
selectedOption?.first_name && selectedOption.first_name !== "" ? (
|
|
selectedOption?.first_name
|
|
) : (
|
|
selectedOption?.email
|
|
)
|
|
) : (
|
|
<span className="text-brand-secondary">Lead</span>
|
|
)}
|
|
</div>
|
|
}
|
|
onChange={onChange}
|
|
noChevron
|
|
/>
|
|
);
|
|
};
|