2023-10-17 10:53:54 +00:00
|
|
|
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";
|
2023-11-27 08:45:33 +00:00
|
|
|
import { EProjectStore } from "store/command-palette.store";
|
2023-11-28 09:20:37 +00:00
|
|
|
import { IIssue } from "types";
|
2023-10-17 10:53:54 +00:00
|
|
|
|
|
|
|
export interface IProjectHeader {
|
|
|
|
column_id: string;
|
|
|
|
column_value: any;
|
|
|
|
issues_count: number;
|
2023-11-27 08:45:33 +00:00
|
|
|
disableIssueCreation?: boolean;
|
|
|
|
currentStore: EProjectStore;
|
2023-11-28 09:20:37 +00:00
|
|
|
addIssuesToView?: (issueIds: string[]) => Promise<IIssue>;
|
2023-10-17 10:53:54 +00:00
|
|
|
}
|
|
|
|
|
2023-12-10 10:18:10 +00:00
|
|
|
const Icon = ({ emoji }: any) => <div className="h-6 w-6">{renderEmoji(emoji)}</div>;
|
2023-10-17 10:53:54 +00:00
|
|
|
|
|
|
|
export const ProjectHeader: FC<IProjectHeader> = observer((props) => {
|
2023-11-28 09:20:37 +00:00
|
|
|
const { column_value, issues_count, disableIssueCreation, currentStore, addIssuesToView } = props;
|
2023-10-17 10:53:54 +00:00
|
|
|
|
|
|
|
const project = column_value ?? null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{project && (
|
2023-11-01 13:40:29 +00:00
|
|
|
<HeaderGroupByCard
|
|
|
|
icon={<Icon emoji={project?.emoji} />}
|
|
|
|
title={project?.name || ""}
|
|
|
|
count={issues_count}
|
|
|
|
issuePayload={{ project: project?.id ?? "" }}
|
2023-11-27 08:45:33 +00:00
|
|
|
disableIssueCreation={disableIssueCreation}
|
|
|
|
currentStore={currentStore}
|
2023-11-28 09:20:37 +00:00
|
|
|
addIssuesToView={addIssuesToView}
|
2023-11-01 13:40:29 +00:00
|
|
|
/>
|
2023-10-17 10:53:54 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
});
|