plane/web/components/issues/issue-layouts/kanban/headers/state-group.tsx
guru_sainath 43404bfcdf
Implemented swimlanes and kanban view (#2262)
* chore: issue store for kanban and calendar

* chore: updated ui for kanba and swimlanes

* chore: yarn.lock updated
2023-09-26 13:18:42 +05:30

24 lines
670 B
TypeScript

import React from "react";
// components
import { HeaderCard } from "./card";
// constants
import { issueStateGroupByKey } from "constants/issue";
// mobx
import { observer } from "mobx-react-lite";
// mobx
import { useMobxStore } from "lib/mobx/store-provider";
import { RootStore } from "store/root";
export interface IStateGroupHeader {
column_id: string;
swimlanes?: boolean;
}
export const StateGroupHeader: React.FC<IStateGroupHeader> = observer(({ column_id }) => {
const {}: RootStore = useMobxStore();
const stateGroup = column_id && issueStateGroupByKey(column_id);
return <>{stateGroup && <HeaderCard title={stateGroup?.title || ""} />}</>;
});