mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b1592adc66
* dev: initialize new date picker * style: selected date focus state * chore: replace custom date filter modal components * chore: replaced inbox snooze popover datepicker * chore: replaced the custom date picker * style: date range picker designed * chore: date range picker implemented throughout the platform * chore: updated tab indices * chore: range-picker in the issue layouts * chore: passed due date color * chore: removed range picker from issue dates
47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
import { useRef } from "react";
|
|
//types
|
|
import { IIssueDisplayFilterOptions, IIssueDisplayProperties } from "@plane/types";
|
|
//components
|
|
import { WithDisplayPropertiesHOC } from "../properties/with-display-properties-HOC";
|
|
import { HeaderColumn } from "./columns/header-column";
|
|
import { observer } from "mobx-react";
|
|
|
|
interface Props {
|
|
displayProperties: IIssueDisplayProperties;
|
|
property: keyof IIssueDisplayProperties;
|
|
isEstimateEnabled: boolean;
|
|
displayFilters: IIssueDisplayFilterOptions;
|
|
handleDisplayFilterUpdate: (data: Partial<IIssueDisplayFilterOptions>) => void;
|
|
}
|
|
export const SpreadsheetHeaderColumn = observer((props: Props) => {
|
|
const { displayProperties, displayFilters, property, isEstimateEnabled, handleDisplayFilterUpdate } = props;
|
|
|
|
//hooks
|
|
const tableHeaderCellRef = useRef<HTMLTableCellElement | null>(null);
|
|
|
|
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"
|
|
ref={tableHeaderCellRef}
|
|
tabIndex={0}
|
|
>
|
|
<HeaderColumn
|
|
displayFilters={displayFilters}
|
|
handleDisplayFilterUpdate={handleDisplayFilterUpdate}
|
|
property={property}
|
|
onClose={() => {
|
|
tableHeaderCellRef?.current?.focus();
|
|
}}
|
|
/>
|
|
</th>
|
|
</WithDisplayPropertiesHOC>
|
|
);
|
|
});
|