mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
60 lines
2.5 KiB
TypeScript
60 lines
2.5 KiB
TypeScript
|
// ui
|
||
|
import { LayersIcon } from "@plane/ui";
|
||
|
// types
|
||
|
import { IIssueDisplayFilterOptions, IIssueDisplayProperties } from "@plane/types";
|
||
|
// constants
|
||
|
import { SPREADSHEET_PROPERTY_LIST } from "constants/spreadsheet";
|
||
|
// components
|
||
|
import { WithDisplayPropertiesHOC } from "../properties/with-display-properties-HOC";
|
||
|
import { SpreadsheetHeaderColumn } from "./columns/header-column";
|
||
|
|
||
|
|
||
|
interface Props {
|
||
|
displayProperties: IIssueDisplayProperties;
|
||
|
displayFilters: IIssueDisplayFilterOptions;
|
||
|
handleDisplayFilterUpdate: (data: Partial<IIssueDisplayFilterOptions>) => void;
|
||
|
isEstimateEnabled: boolean;
|
||
|
}
|
||
|
|
||
|
export const SpreadsheetHeader = (props: Props) => {
|
||
|
const { displayProperties, displayFilters, handleDisplayFilterUpdate, isEstimateEnabled } = props;
|
||
|
|
||
|
return (
|
||
|
<thead className="sticky top-0 left-0 z-[1] border-b-[0.5px] border-custom-border-100">
|
||
|
<tr>
|
||
|
<th className="sticky left-0 z-[1] h-11 w-[28rem] flex items-center bg-custom-background-90 text-sm font-medium before:absolute before:h-full before:right-0 before:border-[0.5px] before:border-custom-border-100">
|
||
|
<WithDisplayPropertiesHOC displayProperties={displayProperties} displayPropertyKey="key">
|
||
|
<span className="flex h-full w-24 flex-shrink-0 items-center px-4 py-2.5">
|
||
|
<span className="mr-1.5 text-custom-text-400">#</span>ID
|
||
|
</span>
|
||
|
</WithDisplayPropertiesHOC>
|
||
|
<span className="flex h-full w-full flex-grow items-center justify-center px-4 py-2.5">
|
||
|
<LayersIcon className="mr-1.5 h-4 w-4 text-custom-text-400" />
|
||
|
Issue
|
||
|
</span>
|
||
|
</th>
|
||
|
|
||
|
{SPREADSHEET_PROPERTY_LIST.map((property) => {
|
||
|
const shouldRenderProperty = property === "estimate" ? isEstimateEnabled : true;
|
||
|
|
||
|
return (
|
||
|
<WithDisplayPropertiesHOC
|
||
|
displayProperties={displayProperties}
|
||
|
displayPropertyKey={property}
|
||
|
shouldRenderProperty={shouldRenderProperty}
|
||
|
>
|
||
|
<th className="h-11 w-full min-w-[8rem] items-center bg-custom-background-90 text-sm font-medium px-4 py-1 border border-b-0 border-t-0 border-custom-border-100">
|
||
|
<SpreadsheetHeaderColumn
|
||
|
displayFilters={displayFilters}
|
||
|
handleDisplayFilterUpdate={handleDisplayFilterUpdate}
|
||
|
property={property}
|
||
|
/>
|
||
|
</th>
|
||
|
</WithDisplayPropertiesHOC>
|
||
|
);
|
||
|
})}
|
||
|
</tr>
|
||
|
</thead>
|
||
|
);
|
||
|
};
|