mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import projectServices from "services/project.service";
|
|
// ui
|
|
import { AssigneesList, Avatar, CustomSearchSelect } from "components/ui";
|
|
// icons
|
|
import { UserGroupIcon } from "@heroicons/react/24/outline";
|
|
// fetch-keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
value: string[];
|
|
onChange: () => void;
|
|
};
|
|
|
|
export const ModuleMembersSelect: 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>
|
|
),
|
|
})) ?? [];
|
|
|
|
return (
|
|
<CustomSearchSelect
|
|
value={value}
|
|
label={
|
|
<div className="flex items-center gap-2 text-brand-secondary">
|
|
{value && value.length > 0 && Array.isArray(value) ? (
|
|
<div className="flex items-center justify-center gap-2">
|
|
<AssigneesList userIds={value} length={3} showLength={false} />
|
|
<span className="text-brand-secondary">{value.length} Assignees</span>
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center justify-center gap-2">
|
|
<UserGroupIcon className="h-4 w-4 text-brand-secondary" />
|
|
<span className="text-brand-secondary">Assignee</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
}
|
|
options={options}
|
|
onChange={onChange}
|
|
height="md"
|
|
multiple
|
|
noChevron
|
|
/>
|
|
);
|
|
};
|