forked from github/plane
d46eb9c59a
* chore: add issue option added in list view group header * chore: add issue option added in kanban view group header
31 lines
731 B
TypeScript
31 lines
731 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { Icon } from "./state-group";
|
|
|
|
export interface IStateHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
}
|
|
|
|
export const StateHeader: FC<IStateHeader> = observer((props) => {
|
|
const { column_id, column_value, issues_count } = 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 }}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|