2023-08-11 11:48:33 +00:00
|
|
|
// mobx react lite
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// interfaces
|
|
|
|
// constants
|
2023-11-06 15:13:34 +00:00
|
|
|
import { StateGroupIcon } from "@plane/ui";
|
2024-03-19 14:38:35 +00:00
|
|
|
import { issueGroupFilter } from "@/constants/data";
|
|
|
|
// ui
|
2023-08-11 11:48:33 +00:00
|
|
|
// mobx hook
|
2024-03-19 14:38:35 +00:00
|
|
|
import { useMobxStore } from "@/lib/mobx/store-provider";
|
2024-05-07 11:54:45 +00:00
|
|
|
import { RootStore } from "@/store/root.store";
|
2024-03-19 14:38:35 +00:00
|
|
|
import { IIssueState } from "types/issue";
|
2023-08-11 11:48:33 +00:00
|
|
|
|
2023-12-05 11:56:57 +00:00
|
|
|
export const IssueKanBanHeader = observer(({ state }: { state: IIssueState }) => {
|
2023-08-11 11:48:33 +00:00
|
|
|
const store: RootStore = useMobxStore();
|
|
|
|
|
|
|
|
const stateGroup = issueGroupFilter(state.group);
|
|
|
|
|
|
|
|
if (stateGroup === null) return <></>;
|
|
|
|
|
|
|
|
return (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex items-center gap-2 px-2 pb-2">
|
|
|
|
<div className="flex h-3.5 w-3.5 flex-shrink-0 items-center justify-center">
|
2023-11-06 15:13:34 +00:00
|
|
|
<StateGroupIcon stateGroup={state.group} color={state.color} height="14" width="14" />
|
2023-08-11 11:48:33 +00:00
|
|
|
</div>
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="mr-1 truncate font-semibold capitalize text-custom-text-200">{state?.name}</div>
|
|
|
|
<span className="flex-shrink-0 rounded-full text-custom-text-300">
|
2023-08-11 11:48:33 +00:00
|
|
|
{store.issue.getCountOfIssuesByState(state.id)}
|
2023-09-01 11:12:30 +00:00
|
|
|
</span>
|
2023-08-11 11:48:33 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|