forked from github/plane
b4cc58d5dd
* chore: spreadsheet layout cycle and module feature toggle validation added * chore: project analytics cycle and module feature toggle validation added
53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
// ui
|
|
import { IIssueDisplayFilterOptions, IIssueDisplayProperties } from "@plane/types";
|
|
import { LayersIcon } from "@plane/ui";
|
|
// constants
|
|
// components
|
|
import { WithDisplayPropertiesHOC } from "../properties/with-display-properties-HOC";
|
|
import { SpreadsheetHeaderColumn } from "./spreadsheet-header-column";
|
|
|
|
interface Props {
|
|
displayProperties: IIssueDisplayProperties;
|
|
displayFilters: IIssueDisplayFilterOptions;
|
|
handleDisplayFilterUpdate: (data: Partial<IIssueDisplayFilterOptions>) => void;
|
|
isEstimateEnabled: boolean;
|
|
spreadsheetColumnsList: (keyof IIssueDisplayProperties)[];
|
|
}
|
|
|
|
export const SpreadsheetHeader = (props: Props) => {
|
|
const { displayProperties, displayFilters, handleDisplayFilterUpdate, isEstimateEnabled, spreadsheetColumnsList } =
|
|
props;
|
|
|
|
return (
|
|
<thead className="sticky top-0 left-0 z-[12] border-b-[0.5px] border-custom-border-100">
|
|
<tr>
|
|
<th
|
|
className="sticky left-0 z-[15] 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"
|
|
tabIndex={-1}
|
|
>
|
|
<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>
|
|
|
|
{spreadsheetColumnsList.map((property) => (
|
|
<SpreadsheetHeaderColumn
|
|
key={property}
|
|
property={property}
|
|
displayProperties={displayProperties}
|
|
displayFilters={displayFilters}
|
|
handleDisplayFilterUpdate={handleDisplayFilterUpdate}
|
|
isEstimateEnabled={isEstimateEnabled}
|
|
/>
|
|
))}
|
|
</tr>
|
|
</thead>
|
|
);
|
|
};
|