Merge branch 'master'
[arvados-workbench2.git] / src / components / data-table / data-column.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export interface DataColumn<T> {
6     name: string;
7     selected: boolean;
8     configurable?: boolean;
9     key?: React.Key;
10     sortDirection?: SortDirection;
11     onSortToggle?: () => void;
12     render: (item: T) => React.ReactElement<void>;
13     renderHeader?: () => React.ReactElement<void> | null;
14 }
15
16 export type SortDirection = "asc" | "desc";
17
18 export const isColumnConfigurable = <T>(column: DataColumn<T>) => {
19     return column.configurable === undefined || column.configurable;
20 };
21
22 export const toggleSortDirection = <T>(column: DataColumn<T>): DataColumn<T> => {
23     const sortDirection = column.sortDirection === undefined || column.sortDirection === "desc" ? "asc" : "desc";
24     return { ...column, sortDirection };
25 };
26
27 export const resetSortDirection = <T>(column: DataColumn<T>): DataColumn<T> => {
28     return { ...column, sortDirection: undefined };
29 };