import React from "react"; import { useRouter } from "next/router"; import useSWR from "swr"; // services import projectService from "services/project.service"; import trackEventServices from "services/track-event.service"; // ui import { AssigneesList, Avatar, CustomSearchSelect, Tooltip } from "components/ui"; // icons import { UserGroupIcon } from "@heroicons/react/24/outline"; // types import { IIssue } from "types"; // fetch-keys import { PROJECT_MEMBERS } from "constants/fetch-keys"; type Props = { issue: IIssue; partialUpdateIssue: (formData: Partial) => void; position?: "left" | "right"; selfPositioned?: boolean; tooltipPosition?: "left" | "right"; isNotAllowed: boolean; }; export const ViewAssigneeSelect: React.FC = ({ issue, partialUpdateIssue, position = "left", selfPositioned = false, tooltipPosition = "right", isNotAllowed, }) => { const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { data: members } = useSWR( projectId ? PROJECT_MEMBERS(projectId as string) : null, workspaceSlug && projectId ? () => projectService.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: (
{member.member.first_name && member.member.first_name !== "" ? member.member.first_name : member.member.email}
), })) ?? []; return ( { const newData = issue.assignees ?? []; if (newData.includes(data)) newData.splice(newData.indexOf(data), 1); else newData.push(data); partialUpdateIssue({ assignees_list: data }); trackEventServices.trackIssuePartialPropertyUpdateEvent( { workspaceSlug, workspaceId: issue.workspace, projectId: issue.project_detail.id, projectIdentifier: issue.project_detail.identifier, projectName: issue.project_detail.name, issueId: issue.id, }, "ISSUE_PROPERTY_UPDATE_ASSIGNEE" ); }} options={options} label={ 0 ? issue.assignee_details .map((assignee) => assignee?.first_name !== "" ? assignee?.first_name : assignee?.email ) .join(", ") : "No Assignee" } >
{issue.assignees && issue.assignees.length > 0 && Array.isArray(issue.assignees) ? (
{issue.assignees.length} Assignees
) : (
Assignee
)}
} multiple noChevron position={position} disabled={isNotAllowed} /> ); };