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>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
// ui
|
|
import { StateGroupIcon } from "@plane/ui";
|
|
// helpers
|
|
import { capitalizeFirstLetter } from "helpers/string.helper";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface IStateGroupHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
}
|
|
|
|
export const Icon = ({ stateGroup, color }: { stateGroup: any; color?: any }) => (
|
|
<div className="w-[14px] h-[14px] rounded-full">
|
|
<StateGroupIcon stateGroup={stateGroup} color={color || null} width="14" height="14" />
|
|
</div>
|
|
);
|
|
|
|
export const StateGroupHeader: FC<IStateGroupHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore } = props;
|
|
|
|
const stateGroup = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{stateGroup && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon stateGroup={stateGroup?.key} />}
|
|
title={capitalizeFirstLetter(stateGroup?.key) || ""}
|
|
count={issues_count}
|
|
issuePayload={{}}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|