forked from github/plane
f30b16e9d8
* fix: user profile filters z-index * chore: user profile issue state group heading fix * fix: build error
40 lines
1.0 KiB
TypeScript
40 lines
1.0 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";
|
|
|
|
export interface IStateGroupHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
}
|
|
|
|
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_id, column_value, issues_count } = props;
|
|
|
|
const stateGroup = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{stateGroup && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon stateGroup={stateGroup?.key} />}
|
|
title={capitalizeFirstLetter(stateGroup?.key) || ""}
|
|
count={issues_count}
|
|
issuePayload={{}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|