forked from github/plane
03387848fe
Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { Icon } from "./assignee";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
import { IIssue } from "types";
|
|
|
|
export interface ICreatedByHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<IIssue>;
|
|
}
|
|
|
|
export const CreatedByHeader: FC<ICreatedByHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore, addIssuesToView } = props;
|
|
|
|
const createdBy = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{createdBy && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon user={createdBy} />}
|
|
title={createdBy?.display_name || ""}
|
|
count={issues_count}
|
|
issuePayload={{ created_by: createdBy?.member?.id }}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
addIssuesToView={addIssuesToView}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|