mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Signed-off-by: Sami Tiilikainen <97873007+samitiilikainen@users.noreply.github.com> Co-authored-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
98 lines
2.3 KiB
TypeScript
98 lines
2.3 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import type { ReactNode } from "react";
|
|
import type { SingleOrMany } from "@k8slens/utilities";
|
|
import { getInjectionToken } from "@ogre-tools/injectable";
|
|
|
|
export interface ItemObject {
|
|
getId(): string;
|
|
getName(): string;
|
|
}
|
|
|
|
export type TableSortBy = string;
|
|
export type TableOrderBy = "asc" | "desc";
|
|
export interface TableSortParams {
|
|
sortBy: TableSortBy;
|
|
orderBy: TableOrderBy;
|
|
}
|
|
|
|
export type TableSortCallback<Item> = (data: Item) => undefined | string | number | (string | number)[];
|
|
export type TableSortCallbacks<Item> = Record<string, TableSortCallback<Item>>;
|
|
|
|
export type SearchFilter<I extends ItemObject> = (item: I) => SingleOrMany<string | number | undefined | null>;
|
|
|
|
export interface TableCellProps extends React.DOMAttributes<HTMLDivElement> {
|
|
/**
|
|
* used for configuration visibility of columns
|
|
*/
|
|
id?: string;
|
|
|
|
/**
|
|
* Any css class names for this table cell. Only used if `title` is a "simple" react node
|
|
*/
|
|
className?: string;
|
|
|
|
/**
|
|
* The actual value of the cell
|
|
*/
|
|
title?: ReactNode;
|
|
|
|
/**
|
|
* content inside could be scrolled
|
|
*/
|
|
scrollable?: boolean;
|
|
|
|
/**
|
|
* render cell with a checkbox
|
|
*/
|
|
checkbox?: boolean;
|
|
|
|
/**
|
|
* mark checkbox as checked or not
|
|
*/
|
|
isChecked?: boolean;
|
|
|
|
/**
|
|
* column name, must be same as key in sortable object <Table sortable={}/>
|
|
*/
|
|
sortBy?: TableSortBy;
|
|
|
|
/**
|
|
* id of the column which follow same visibility rules
|
|
*/
|
|
showWithColumn?: string;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
_sorting?: Partial<TableSortParams>;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
_sort?(sortBy: TableSortBy): void;
|
|
|
|
/**
|
|
* @internal
|
|
* indicator, might come from parent <TableHead>, don't use this prop outside (!)
|
|
*/
|
|
_nowrap?: boolean;
|
|
}
|
|
|
|
export interface KubeObjectListLayoutColumn<Item extends ItemObject> {
|
|
id: string;
|
|
kind: string;
|
|
apiVersion: string;
|
|
priority: number;
|
|
sortingCallBack?: TableSortCallback<Item>;
|
|
searchFilter?: SearchFilter<Item>;
|
|
header: TableCellProps | undefined | null;
|
|
content: (item: Item) => ReactNode | TableCellProps;
|
|
}
|
|
|
|
export const kubeObjectListLayoutColumnInjectionToken = getInjectionToken<KubeObjectListLayoutColumn<any>>({
|
|
id: "kube-object-list-layout-column",
|
|
});
|