mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
442c83eea2
* style: spreadsheet columns * fix: build errors
248 lines
9.1 KiB
TypeScript
248 lines
9.1 KiB
TypeScript
import {
|
|
ArrowDownWideNarrow,
|
|
ArrowUpNarrowWide,
|
|
CheckIcon,
|
|
ChevronDownIcon,
|
|
Eraser,
|
|
ListFilter,
|
|
MoveRight,
|
|
} from "lucide-react";
|
|
// hooks
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
// components
|
|
import {
|
|
SpreadsheetAssigneeColumn,
|
|
SpreadsheetCreatedOnColumn,
|
|
SpreadsheetDueDateColumn,
|
|
SpreadsheetEstimateColumn,
|
|
SpreadsheetLabelColumn,
|
|
SpreadsheetPriorityColumn,
|
|
SpreadsheetStartDateColumn,
|
|
SpreadsheetStateColumn,
|
|
SpreadsheetUpdatedOnColumn,
|
|
} from "components/issues";
|
|
// ui
|
|
import { CustomMenu } from "@plane/ui";
|
|
// types
|
|
import {
|
|
IIssue,
|
|
IIssueDisplayFilterOptions,
|
|
IIssueLabels,
|
|
IStateResponse,
|
|
IUserLite,
|
|
TIssueOrderByOptions,
|
|
} from "types";
|
|
// constants
|
|
import { SPREADSHEET_PROPERTY_DETAILS } from "constants/spreadsheet";
|
|
|
|
type Props = {
|
|
disableUserActions: boolean;
|
|
displayFilters: IIssueDisplayFilterOptions;
|
|
expandedIssues: string[];
|
|
handleDisplayFilterUpdate: (data: Partial<IIssueDisplayFilterOptions>) => void;
|
|
handleUpdateIssue: (issue: IIssue, data: Partial<IIssue>) => void;
|
|
issues: IIssue[] | undefined;
|
|
property: string;
|
|
members?: IUserLite[] | undefined;
|
|
labels?: IIssueLabels[] | undefined;
|
|
states?: IStateResponse | undefined;
|
|
};
|
|
|
|
export const SpreadsheetColumn: React.FC<Props> = (props) => {
|
|
const {
|
|
disableUserActions,
|
|
displayFilters,
|
|
expandedIssues,
|
|
handleDisplayFilterUpdate,
|
|
handleUpdateIssue,
|
|
issues,
|
|
property,
|
|
members,
|
|
labels,
|
|
states,
|
|
} = props;
|
|
|
|
const { storedValue: selectedMenuItem, setValue: setSelectedMenuItem } = useLocalStorage(
|
|
"spreadsheetViewSorting",
|
|
""
|
|
);
|
|
const { storedValue: activeSortingProperty, setValue: setActiveSortingProperty } = useLocalStorage(
|
|
"spreadsheetViewActiveSortingProperty",
|
|
""
|
|
);
|
|
|
|
const handleOrderBy = (order: TIssueOrderByOptions, itemKey: string) => {
|
|
handleDisplayFilterUpdate({ order_by: order });
|
|
|
|
setSelectedMenuItem(`${order}_${itemKey}`);
|
|
setActiveSortingProperty(order === "-created_at" ? "" : itemKey);
|
|
};
|
|
|
|
const propertyDetails = SPREADSHEET_PROPERTY_DETAILS[property];
|
|
|
|
return (
|
|
<div className="relative flex flex-col h-max w-full bg-custom-background-100">
|
|
<div className="flex items-center min-w-[8rem] px-4 py-1 text-sm font-medium z-[1] h-11 w-full sticky top-0 bg-custom-background-90 border border-l-0 border-custom-border-100">
|
|
<CustomMenu
|
|
customButtonClassName="!w-full"
|
|
className="!w-full"
|
|
customButton={
|
|
<div className="flex items-center justify-between gap-1.5 cursor-pointer text-sm text-custom-text-200 hover:text-custom-text-100 w-full py-2">
|
|
<div className="flex items-center gap-1.5">
|
|
{activeSortingProperty === property && (
|
|
<div className="rounded-full flex items-center justify-center h-3.5 w-3.5">
|
|
<ListFilter className="h-3 w-3" />
|
|
</div>
|
|
)}
|
|
{propertyDetails.title}
|
|
</div>
|
|
<ChevronDownIcon className="h-3 w-3" aria-hidden="true" />
|
|
</div>
|
|
}
|
|
width="xl"
|
|
placement="bottom-end"
|
|
>
|
|
<CustomMenu.MenuItem onClick={() => handleOrderBy(propertyDetails.ascendingOrderKey, property)}>
|
|
<div
|
|
className={`flex gap-1.5 px-1 items-center justify-between ${
|
|
selectedMenuItem === `${propertyDetails.ascendingOrderKey}_${property}`
|
|
? "text-custom-text-100"
|
|
: "text-custom-text-200 hover:text-custom-text-100"
|
|
}`}
|
|
>
|
|
<div className="flex gap-2 items-center">
|
|
<ArrowDownWideNarrow className="h-3 w-3 stroke-[1.5]" />
|
|
<span>{propertyDetails.ascendingOrderTitle}</span>
|
|
<MoveRight className="h-3 w-3" />
|
|
<span>{propertyDetails.descendingOrderTitle}</span>
|
|
</div>
|
|
|
|
{selectedMenuItem === `${propertyDetails.ascendingOrderKey}_${property}` && (
|
|
<CheckIcon className="h-3 w-3" />
|
|
)}
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem onClick={() => handleOrderBy(propertyDetails.descendingOrderKey, property)}>
|
|
<div
|
|
className={`flex gap-1.5 px-1 items-center justify-between ${
|
|
selectedMenuItem === `${propertyDetails.descendingOrderKey}_${property}`
|
|
? "text-custom-text-100"
|
|
: "text-custom-text-200 hover:text-custom-text-100"
|
|
}`}
|
|
>
|
|
<div className="flex gap-2 items-center">
|
|
<ArrowUpNarrowWide className="h-3 w-3 stroke-[1.5]" />
|
|
<span>{propertyDetails.descendingOrderTitle}</span>
|
|
<MoveRight className="h-3 w-3" />
|
|
<span>{propertyDetails.ascendingOrderTitle}</span>
|
|
</div>
|
|
|
|
{selectedMenuItem === `${propertyDetails.descendingOrderKey}_${property}` && (
|
|
<CheckIcon className="h-3 w-3" />
|
|
)}
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
{selectedMenuItem &&
|
|
selectedMenuItem !== "" &&
|
|
displayFilters?.order_by !== "-created_at" &&
|
|
selectedMenuItem.includes(property) && (
|
|
<CustomMenu.MenuItem
|
|
className={`mt-0.5 ${selectedMenuItem === `-created_at_${property}` ? "bg-custom-background-80" : ""}`}
|
|
key={property}
|
|
onClick={() => handleOrderBy("-created_at", property)}
|
|
>
|
|
<div className="flex items-center gap-2 px-1">
|
|
<Eraser className="h-3 w-3" />
|
|
<span>Clear sorting</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
)}
|
|
</CustomMenu>
|
|
</div>
|
|
|
|
<div className="h-full min-w-[8rem] w-full">
|
|
{issues?.map((issue) => (
|
|
<div
|
|
key={`${property}-${issue.id}`}
|
|
className={`h-11 border-b-[0.5px] border-custom-border-200 ${
|
|
disableUserActions ? "" : "cursor-pointer hover:bg-custom-background-80"
|
|
}`}
|
|
>
|
|
{property === "state" ? (
|
|
<SpreadsheetStateColumn
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
states={states}
|
|
/>
|
|
) : property === "priority" ? (
|
|
<SpreadsheetPriorityColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "estimate" ? (
|
|
<SpreadsheetEstimateColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "assignee" ? (
|
|
<SpreadsheetAssigneeColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
members={members}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "labels" ? (
|
|
<SpreadsheetLabelColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
labels={labels}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "start_date" ? (
|
|
<SpreadsheetStartDateColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "due_date" ? (
|
|
<SpreadsheetDueDateColumn
|
|
key={`${property}-${issue.id}`}
|
|
disabled={disableUserActions}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
onChange={(data: Partial<IIssue>) => handleUpdateIssue(issue, data)}
|
|
/>
|
|
) : property === "created_on" ? (
|
|
<SpreadsheetCreatedOnColumn
|
|
key={`${property}-${issue.id}`}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
/>
|
|
) : property === "updated_on" ? (
|
|
<SpreadsheetUpdatedOnColumn
|
|
key={`${property}-${issue.id}`}
|
|
expandedIssues={expandedIssues}
|
|
issue={issue}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|