forked from github/plane
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>
104 lines
3.2 KiB
TypeScript
104 lines
3.2 KiB
TypeScript
// components
|
|
import { EmptyHeader } from "./empty-group";
|
|
import { ProjectHeader } from "./project";
|
|
import { StateHeader } from "./state";
|
|
import { StateGroupHeader } from "./state-group";
|
|
import { AssigneesHeader } from "./assignee";
|
|
import { PriorityHeader } from "./priority";
|
|
import { LabelHeader } from "./label";
|
|
import { CreatedByHeader } from "./created-by";
|
|
// mobx
|
|
import { observer } from "mobx-react-lite";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface IListGroupByHeaderRoot {
|
|
column_id: string;
|
|
column_value: any;
|
|
group_by: string | null;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
}
|
|
|
|
export const ListGroupByHeaderRoot: React.FC<IListGroupByHeaderRoot> = observer((props) => {
|
|
const { column_id, column_value, group_by, issues_count, disableIssueCreation, currentStore } = props;
|
|
|
|
return (
|
|
<>
|
|
{!group_by && group_by === null && (
|
|
<EmptyHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "project" && (
|
|
<ProjectHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
|
|
{group_by && group_by === "state" && (
|
|
<StateHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "state_detail.group" && (
|
|
<StateGroupHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "priority" && (
|
|
<PriorityHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "labels" && (
|
|
<LabelHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "assignees" && (
|
|
<AssigneesHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
{group_by && group_by === "created_by" && (
|
|
<CreatedByHeader
|
|
column_id={column_id}
|
|
column_value={column_value}
|
|
issues_count={issues_count}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|