mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f79bd9df60
* dev: draft and archived issue store * connect draft and archived issues * kanban for draft issues * fix filter store for calendar and kanban * dev: profile issues store and draft issues filters in header * disble issue creation for draft issues * dev: profile issues store filters * disable kanban properties in draft issues * dev: profile issues store filters * dev: seperated adding issues to the cycle and module as seperate methds in cycle and module store * dev: workspace profile issues store * dev: sub group issues in the swimlanes * profile issues and create issue connection * fix profile issues * fix spreadsheet issues * fix dissapearing project from create issue modal * page level modifications * fix additional bugs * dev: issues profile and global iisues and filters update * fix issue related bugs * fix project views for list and kanban * fix build errors --------- Co-authored-by: rahulramesha <rahulramesham@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";
|
|
// emoji helper
|
|
import { renderEmoji } from "helpers/emoji.helper";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface IProjectHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
}
|
|
|
|
const Icon = ({ emoji }: any) => <div className="w-6 h-6">{renderEmoji(emoji)}</div>;
|
|
|
|
export const ProjectHeader: FC<IProjectHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore } = 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}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|