forked from github/plane
03387848fe
Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { HeaderSubGroupByCard } from "./sub-group-by-card";
|
|
// ui
|
|
import { Avatar } from "@plane/ui";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
import { IIssue } from "types";
|
|
|
|
export interface IAssigneesHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
sub_group_by: string | null;
|
|
group_by: string | null;
|
|
header_type: "group_by" | "sub_group_by";
|
|
issues_count: number;
|
|
kanBanToggle: any;
|
|
handleKanBanToggle: any;
|
|
disableIssueCreation?: boolean;
|
|
currentStore?: EProjectStore;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<IIssue>;
|
|
}
|
|
|
|
export const Icon = ({ user }: any) => <Avatar name={user.display_name} src={user.avatar} size="base" />;
|
|
|
|
export const AssigneesHeader: FC<IAssigneesHeader> = observer((props) => {
|
|
const {
|
|
column_id,
|
|
column_value,
|
|
sub_group_by,
|
|
group_by,
|
|
header_type,
|
|
issues_count,
|
|
kanBanToggle,
|
|
handleKanBanToggle,
|
|
disableIssueCreation,
|
|
currentStore,
|
|
addIssuesToView,
|
|
} = props;
|
|
|
|
const assignee = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{assignee &&
|
|
(sub_group_by && header_type === "sub_group_by" ? (
|
|
<HeaderSubGroupByCard
|
|
column_id={column_id}
|
|
icon={<Icon user={assignee} />}
|
|
title={assignee?.display_name || ""}
|
|
count={issues_count}
|
|
kanBanToggle={kanBanToggle}
|
|
handleKanBanToggle={handleKanBanToggle}
|
|
/>
|
|
) : (
|
|
<HeaderGroupByCard
|
|
sub_group_by={sub_group_by}
|
|
group_by={group_by}
|
|
column_id={column_id}
|
|
icon={<Icon user={assignee} />}
|
|
title={assignee?.display_name || ""}
|
|
count={issues_count}
|
|
kanBanToggle={kanBanToggle}
|
|
handleKanBanToggle={handleKanBanToggle}
|
|
issuePayload={{ assignees: [assignee?.id] }}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
addIssuesToView={addIssuesToView}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
});
|