2023-08-11 11:48:33 +00:00
|
|
|
// mobx react lite
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// interfaces
|
2023-09-01 11:12:30 +00:00
|
|
|
import { IIssueState } from "types/issue";
|
2023-08-11 11:48:33 +00:00
|
|
|
// constants
|
|
|
|
import { issueGroupFilter } from "constants/data";
|
2023-09-04 07:32:47 +00:00
|
|
|
// icons
|
|
|
|
import { StateGroupIcon } from "components/icons";
|
2023-08-11 11:48:33 +00:00
|
|
|
// mobx hook
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
import { RootStore } from "store/root";
|
|
|
|
|
|
|
|
export const IssueListHeader = observer(({ state }: { state: IIssueState }) => {
|
|
|
|
const store: RootStore = useMobxStore();
|
|
|
|
|
|
|
|
const stateGroup = issueGroupFilter(state.group);
|
|
|
|
|
|
|
|
if (stateGroup === null) return <></>;
|
|
|
|
|
|
|
|
return (
|
2023-09-01 11:12:30 +00:00
|
|
|
<div className="pb-2 px-2 flex items-center">
|
|
|
|
<div className="w-4 h-4 flex justify-center items-center flex-shrink-0">
|
2023-09-04 07:32:47 +00:00
|
|
|
<StateGroupIcon stateGroup={state.group} color={state.color} />
|
2023-08-11 11:48:33 +00:00
|
|
|
</div>
|
2023-09-01 11:12:30 +00:00
|
|
|
<div className="font-semibold text-custom-text-200 capitalize ml-2 mr-3 truncate">{state?.name}</div>
|
|
|
|
<span className="text-custom-text-300 rounded-full flex-shrink-0">
|
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>
|
|
|
|
);
|
|
|
|
});
|