mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fb3dd77b66
* enable keyboard navigation for spreadsheet layout * move the logic to table level instead of cell level * fix perf issue that made it unusable * fix scroll issue with navigation * fix build errors
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { IssuePropertyLabels } from "../../properties";
|
|
// hooks
|
|
import { useLabel } from "hooks/store";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
onClose: () => void;
|
|
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetLabelColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue, onChange, disabled, onClose } = props;
|
|
// hooks
|
|
const { labelMap } = useLabel();
|
|
|
|
const defaultLabelOptions = issue?.label_ids?.map((id) => labelMap[id]) || [];
|
|
|
|
return (
|
|
<IssuePropertyLabels
|
|
projectId={issue.project_id ?? null}
|
|
value={issue.label_ids}
|
|
defaultOptions={defaultLabelOptions}
|
|
onChange={(data) => onChange(issue, { label_ids: data }, { changed_property: "labels", change_details: data })}
|
|
className="h-11 w-full border-b-[0.5px] border-custom-border-200 hover:bg-custom-background-80"
|
|
buttonClassName="px-2.5 h-full"
|
|
hideDropdownArrow
|
|
maxRender={1}
|
|
disabled={disabled}
|
|
placeholderText="Select labels"
|
|
onClose={onClose}
|
|
/>
|
|
);
|
|
});
|