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>
36 lines
974 B
TypeScript
36 lines
974 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { Icon } from "./state-group";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface IStateHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
}
|
|
|
|
export const StateHeader: FC<IStateHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore } = props;
|
|
|
|
const state = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{state && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon stateGroup={state?.group} color={state?.color} />}
|
|
title={state?.name || ""}
|
|
count={issues_count}
|
|
issuePayload={{ state: state?.id }}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|