mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b70047b1d5
* chore: updated the all the group_by and sub_group_by UI and functionality render in kanban * chore: kanban sorting in mobx and ui updates * chore: ui changes and drag and drop functionality changes in kanban * chore: issues count render in kanban default and swimlanes * chore: Added icons to the group_by and sub_group_by in kanban and swimlanes
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
// mobx
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { HeaderSubGroupByCard } from "./sub-group-by-card";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
export interface ILabelHeader {
|
|
column_id: string;
|
|
sub_group_by: string | null;
|
|
group_by: string | null;
|
|
header_type: "group_by" | "sub_group_by";
|
|
issues_count: number;
|
|
}
|
|
|
|
const Icon = ({ color }: any) => (
|
|
<div className="w-[12px] h-[12px] rounded-full" style={{ backgroundColor: color ? color : "#666" }} />
|
|
);
|
|
|
|
export const LabelHeader: React.FC<ILabelHeader> = observer(
|
|
({ column_id, sub_group_by, group_by, header_type, issues_count }) => {
|
|
const { project: projectStore }: RootStore = useMobxStore();
|
|
|
|
const label = (column_id && projectStore?.getProjectLabelById(column_id)) ?? null;
|
|
|
|
return (
|
|
<>
|
|
{label &&
|
|
(sub_group_by && header_type === "sub_group_by" ? (
|
|
<HeaderSubGroupByCard
|
|
column_id={column_id}
|
|
icon={<Icon color={label?.color} />}
|
|
title={label?.name || ""}
|
|
count={issues_count}
|
|
/>
|
|
) : (
|
|
<HeaderGroupByCard
|
|
sub_group_by={sub_group_by}
|
|
group_by={group_by}
|
|
column_id={column_id}
|
|
icon={<Icon />}
|
|
title={label?.name || ""}
|
|
count={issues_count}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
}
|
|
);
|