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
66 lines
2.4 KiB
TypeScript
66 lines
2.4 KiB
TypeScript
import React from "react";
|
|
// lucide icons
|
|
import { Plus, Minimize2, Maximize2, Circle } from "lucide-react";
|
|
// mobx
|
|
import { observer } from "mobx-react-lite";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
interface IHeaderGroupByCard {
|
|
sub_group_by: string | null;
|
|
group_by: string | null;
|
|
column_id: string;
|
|
icon?: React.ReactNode;
|
|
title: string;
|
|
count: number;
|
|
}
|
|
|
|
export const HeaderGroupByCard = observer(
|
|
({ sub_group_by, group_by, column_id, icon, title, count }: IHeaderGroupByCard) => {
|
|
const { issueKanBanView: issueKanBanViewStore }: RootStore = useMobxStore();
|
|
|
|
const verticalAlignPosition = issueKanBanViewStore.kanBanToggle?.groupByHeaderMinMax.includes(column_id);
|
|
|
|
return (
|
|
<div
|
|
className={`flex-shrink-0 relative flex gap-2 p-1.5 ${
|
|
verticalAlignPosition ? `flex-col items-center w-[44px]` : `flex-row items-center w-full`
|
|
}`}
|
|
>
|
|
<div className="flex-shrink-0 w-[20px] h-[20px] rounded-sm overflow-hidden flex justify-center items-center">
|
|
{icon ? icon : <Circle width={14} strokeWidth={2} />}
|
|
</div>
|
|
|
|
<div className={`flex items-center gap-1 ${verticalAlignPosition ? `flex-col` : `flex-row w-full`}`}>
|
|
<div
|
|
className={`font-medium line-clamp-1 text-custom-text-100 ${verticalAlignPosition ? `vertical-lr` : ``}`}
|
|
>
|
|
{title}
|
|
</div>
|
|
<div className={`text-sm font-medium text-custom-text-300 ${verticalAlignPosition ? `` : `pl-2`}`}>
|
|
{count || 0}
|
|
</div>
|
|
</div>
|
|
|
|
{sub_group_by === null && (
|
|
<div
|
|
className="flex-shrink-0 w-[20px] h-[20px] rounded-sm overflow-hidden flex justify-center items-center hover:bg-custom-background-80 cursor-pointer transition-all"
|
|
onClick={() => issueKanBanViewStore?.handleKanBanToggle("groupByHeaderMinMax", column_id)}
|
|
>
|
|
{verticalAlignPosition ? (
|
|
<Maximize2 width={14} strokeWidth={2} />
|
|
) : (
|
|
<Minimize2 width={14} strokeWidth={2} />
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{/* <div className="flex-shrink-0 w-[20px] h-[20px] rounded-sm overflow-hidden flex justify-center items-center hover:bg-custom-background-80 cursor-pointer transition-all">
|
|
<Plus width={14} strokeWidth={2} />
|
|
</div> */}
|
|
</div>
|
|
);
|
|
}
|
|
);
|