mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
03387848fe
Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
import { IIssue } from "types";
|
|
|
|
export interface ILabelHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
disableIssueCreation?: boolean;
|
|
currentStore: EProjectStore;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<IIssue>;
|
|
}
|
|
|
|
const Icon = ({ color }: any) => (
|
|
<div className="w-[12px] h-[12px] rounded-full" style={{ backgroundColor: color ? color : "#666" }} />
|
|
);
|
|
|
|
export const LabelHeader: FC<ILabelHeader> = observer((props) => {
|
|
const { column_value, issues_count, disableIssueCreation, currentStore, addIssuesToView } = props;
|
|
|
|
const label = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{column_value && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon color={label?.color || null} />}
|
|
title={column_value?.name || ""}
|
|
count={issues_count}
|
|
issuePayload={{ labels: [label.id] }}
|
|
disableIssueCreation={disableIssueCreation}
|
|
currentStore={currentStore}
|
|
addIssuesToView={addIssuesToView}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|