plane/web/components/issues/issue-layouts/spreadsheet/columns/assignee-column.tsx
Aaryan Khandelwal a76e02045b chore: update UI
2024-05-22 18:25:51 +05:30

51 lines
1.5 KiB
TypeScript

import React from "react";
import { observer } from "mobx-react-lite";
// types
import { TIssue } from "@plane/types";
// components
import { MemberDropdown } from "@/components/dropdowns";
// helpers
import { cn } from "@/helpers/common.helper";
type Props = {
issue: TIssue;
onClose: () => void;
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
disabled: boolean;
isIssueSelected: boolean;
};
export const SpreadsheetAssigneeColumn: React.FC<Props> = observer((props: Props) => {
const { issue, onChange, disabled, onClose, isIssueSelected } = props;
return (
<div className="h-11 border-b-[0.5px] border-custom-border-200">
<MemberDropdown
value={issue?.assignee_ids ?? []}
onChange={(data) => {
onChange(
issue,
{ assignee_ids: data },
{
changed_property: "assignees",
change_details: data,
}
);
}}
projectId={issue?.project_id}
disabled={disabled}
multiple
placeholder="Assignees"
buttonVariant={
issue?.assignee_ids && issue.assignee_ids.length > 0 ? "transparent-without-text" : "transparent-with-text"
}
buttonClassName={cn("text-left rounded-none", {
"bg-custom-primary-100/5 hover:bg-custom-primary-100/10": isIssueSelected,
})}
buttonContainerClassName="w-full"
onClose={onClose}
/>
</div>
);
});