mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9075f9441c
* style: added cta at the bottom of sidebar, added missing icons as well, showing dynamic workspace member count on workspace dropdown * refractor: running parallel request, made create/edit label function to async function * fix: sidebar dropdown content going below kanban items outside click detection in need help dropdown * refractor: making parallel api calls fix: create state input comes at bottom, create state input gets on focus automatically, form is getting submitted on enter click * refactoring file structure and signin page * style: changed text and added spinner for signing in loading * refractor: removed unused type * fix: my issue cta in profile page sending to 404 page * fix: added new s3 bucket url in next.config.js file increased image modal height * packaging UI components * eslint config * eslint fixes * refactoring changes * build fixes * minor fixes * adding todo comments for reference * refactor: cleared unused imports and re ordered imports * refactor: removed unused imports * fix: added workspace argument to useissues hook * refactor: removed api-routes file, unnecessary constants * refactor: created helpers folder, removed unnecessary constants * refactor: new context for issue view * refactoring issues page * build fixes * refactoring * refactor: create issue modal * refactor: module ui * fix: sub-issues mutation * fix: create more option in create issue modal * description form debounce issue * refactor: global component for assignees list * fix: link module interface * fix: priority icons and sub-issues count added * fix: cycle mutation in issue details page * fix: remove issue from cycle mutation * fix: create issue modal in home page * fix: removed unnecessary props * fix: updated create issue form status * fix: settings auth breaking * refactor: issue details page Co-authored-by: Dakshesh Jain <dakshesh.jain14@gmail.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: venkatesh-soulpage <venkatesh.marreboyina@soulpageit.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com>
167 lines
5.4 KiB
TypeScript
167 lines
5.4 KiB
TypeScript
import { useState, FC, Fragment } from "react";
|
|
|
|
import Image from "next/image";
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// headless ui
|
|
import { Transition, Combobox } from "@headlessui/react";
|
|
// icons
|
|
import { UserIcon } from "@heroicons/react/24/outline";
|
|
// service
|
|
import projectServices from "services/project.service";
|
|
// types
|
|
import type { IProjectMember } from "types";
|
|
// fetch keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
|
|
export type IssueAssigneeSelectProps = {
|
|
projectId: string;
|
|
value: string[];
|
|
onChange: (value: string[]) => void;
|
|
};
|
|
|
|
type AssigneeAvatarProps = {
|
|
user: IProjectMember | undefined;
|
|
};
|
|
|
|
export const AssigneeAvatar: FC<AssigneeAvatarProps> = ({ user }) => {
|
|
if (!user) return <></>;
|
|
|
|
if (user.member.avatar && user.member.avatar !== "") {
|
|
return (
|
|
<div className="relative h-4 w-4">
|
|
<Image
|
|
src={user.member.avatar}
|
|
alt="avatar"
|
|
className="rounded-full"
|
|
layout="fill"
|
|
objectFit="cover"
|
|
/>
|
|
</div>
|
|
);
|
|
} else
|
|
return (
|
|
<div className="grid h-4 w-4 flex-shrink-0 place-items-center rounded-full bg-gray-700 capitalize text-white">
|
|
{user.member.first_name && user.member.first_name !== ""
|
|
? user.member.first_name.charAt(0)
|
|
: user.member.email.charAt(0)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const IssueAssigneeSelect: FC<IssueAssigneeSelectProps> = ({
|
|
projectId,
|
|
value = [],
|
|
onChange,
|
|
}) => {
|
|
// states
|
|
const [query, setQuery] = useState("");
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
// fetching project members
|
|
const { data: people } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectServices.projectMembers(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const options = people?.map((person) => ({
|
|
value: person.member.id,
|
|
display:
|
|
person.member.first_name && person.member.first_name !== ""
|
|
? person.member.first_name
|
|
: person.member.email,
|
|
}));
|
|
|
|
const filteredOptions =
|
|
query === ""
|
|
? options
|
|
: options?.filter((option) => option.display.toLowerCase().includes(query.toLowerCase()));
|
|
|
|
return (
|
|
<Combobox
|
|
as="div"
|
|
value={value}
|
|
onChange={(val) => onChange(val)}
|
|
className="relative flex-shrink-0"
|
|
multiple
|
|
>
|
|
{({ open }: any) => (
|
|
<>
|
|
<Combobox.Label className="sr-only">Assignees</Combobox.Label>
|
|
<Combobox.Button
|
|
className={`flex cursor-pointer items-center gap-1 rounded-md border px-2 py-1 text-xs shadow-sm duration-300 hover:bg-gray-100 focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500`}
|
|
>
|
|
<UserIcon className="h-3 w-3 text-gray-500" />
|
|
<span
|
|
className={`hidden truncate sm:block ${
|
|
value === null || value === undefined ? "" : "text-gray-900"
|
|
}`}
|
|
>
|
|
{Array.isArray(value)
|
|
? value
|
|
.map((v) => options?.find((option) => option.value === v)?.display)
|
|
.join(", ") || "Assignees"
|
|
: options?.find((option) => option.value === value)?.display || "Assignees"}
|
|
</span>
|
|
</Combobox.Button>
|
|
|
|
<Transition
|
|
show={open}
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Combobox.Options
|
|
className={`absolute z-10 mt-1 max-h-32 min-w-[8rem] overflow-auto rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none text-xs`}
|
|
>
|
|
<Combobox.Input
|
|
className="w-full border-b bg-transparent p-2 text-xs focus:outline-none"
|
|
onChange={(event) => setQuery(event.target.value)}
|
|
placeholder="Search"
|
|
displayValue={(assigned: any) => assigned?.name}
|
|
/>
|
|
<div className="py-1">
|
|
{filteredOptions ? (
|
|
filteredOptions.length > 0 ? (
|
|
filteredOptions.map((option) => (
|
|
<Combobox.Option
|
|
key={option.value}
|
|
className={({ active, selected }) =>
|
|
`${active ? "bg-indigo-50" : ""} ${
|
|
selected ? "bg-indigo-50 font-medium" : ""
|
|
} flex cursor-pointer select-none items-center gap-2 truncate p-2 text-gray-900`
|
|
}
|
|
value={option.value}
|
|
>
|
|
{people && (
|
|
<>
|
|
<AssigneeAvatar
|
|
user={people?.find((p) => p.member.id === option.value)}
|
|
/>
|
|
{option.display}
|
|
</>
|
|
)}
|
|
</Combobox.Option>
|
|
))
|
|
) : (
|
|
<p className="text-xs text-gray-500 px-2">No assignees found</p>
|
|
)
|
|
) : (
|
|
<p className="text-xs text-gray-500 px-2">Loading...</p>
|
|
)}
|
|
</div>
|
|
</Combobox.Options>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Combobox>
|
|
);
|
|
};
|