mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
442c83eea2
* style: spreadsheet columns * fix: build errors
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { MembersSelect } from "components/project";
|
|
// hooks
|
|
import useSubIssue from "hooks/use-sub-issue";
|
|
// types
|
|
import { IIssue, IUserLite } from "types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
members: IUserLite[] | undefined;
|
|
onChange: (data: Partial<IIssue>) => void;
|
|
expandedIssues: string[];
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetAssigneeColumn: React.FC<Props> = ({ issue, members, onChange, expandedIssues, disabled }) => {
|
|
const isExpanded = expandedIssues.indexOf(issue.id) > -1;
|
|
|
|
const { subIssues, isLoading } = useSubIssue(issue.project_detail.id, issue.id, isExpanded);
|
|
|
|
return (
|
|
<div className="flex items-center h-full px-4">
|
|
<MembersSelect
|
|
value={issue.assignees}
|
|
onChange={(data) => onChange({ assignees: data })}
|
|
members={members ?? []}
|
|
buttonClassName="!p-0 !rounded-none !border-0"
|
|
hideDropdownArrow
|
|
disabled={disabled}
|
|
multiple
|
|
/>
|
|
|
|
{isExpanded &&
|
|
!isLoading &&
|
|
subIssues &&
|
|
subIssues.length > 0 &&
|
|
subIssues.map((subIssue) => (
|
|
<SpreadsheetAssigneeColumn
|
|
key={subIssue.id}
|
|
issue={subIssue}
|
|
onChange={onChange}
|
|
expandedIssues={expandedIssues}
|
|
members={members}
|
|
disabled={disabled}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
};
|