forked from github/plane
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
// emoji helper
|
|
import { renderEmoji } from "helpers/emoji.helper";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
import { IIssue } from "types";
|
|
|
|
export interface IProjectHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<IIssue>;
|
|
}
|
|
|
|
const Icon = ({ emoji }: any) => <div className="h-6 w-6">{renderEmoji(emoji)}</div>;
|
|
|
|
export const ProjectHeader: FC<IProjectHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore, addIssuesToView } = props;
|
|
|
|
const project = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{project && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon emoji={project?.emoji} />}
|
|
title={project?.name || ""}
|
|
count={issues_count}
|
|
issuePayload={{ project: project?.id ?? "" }}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
addIssuesToView={addIssuesToView}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|