Table

Table is a component that displays data in a tabular format.
Import
import { Table } from '@kubed/components;'
Source
View source code
Docs
Edit this page
npm
@kubed/components

Basic Usage

For detailed react table usage, please refer to react-table

KubeSphere1Beijing
KubeSphere3Beijing
KubeSphere2Beijing

useTable Extension Points

useTable(options)

options.meta

Most of the extension points in the table are configured through meta.

1
interface TableMeta<TData extends RowData> {
2
tableName: string; // table name, now only used for storage state
3
refetch?: () => void; // refetch data
4
storageStateKeys?: (keyof TableState)[] | '*'; // state keys need to be stored, used with Status2StorageFeature
5
manual?: boolean; // whether to manually control the data
6
enable?: {
7
// whether to enable some features
8
pagination?: boolean; // whether to enable pagination
9
toolbar?: boolean; // whether to enable toolbar
10
visible?: boolean; // whether to enable hidden columns
11
filters?: boolean; // whether to enable filters
12
};
13
enableDefault?: {
14
// whether to enable default functions
15
toolbar?: boolean; // toolbar default functions, including multi-selection display, multi-selection operation status switching, etc.
16
th?: boolean; // when th is more than one line, enable border
17
};
18
getProps?: {
19
// custom props of each component in BaseTable, can be returned by function. Refer to BaseTable for the props of each component
20
filters?: (table: Table<TData>) => BaseTable.ToolbarProps['filterProps'];
21
toolbar?: (
22
table: Table<TData>
23
) => Partial<Omit<BaseTable.ToolbarProps, 'filtersProps' | 'enableFilters'>>;
24
table?: (table: Table<TData>) => Partial<BaseTable.TableProps>;
25
th?: (
26
table: Table<TData>,
27
header: Header<TData, unknown>
28
) => Omit<BaseTable.TableCellProps, 'ref'>;
29
pagination?: (table: Table<TData>) => Partial<BaseTable.BaseTablePaginationProps> & {
30
total?: number;
31
};
32
tr?: (table: Table<TData>, row: Row<TData>) => Partial<BaseTable.TableRowProps>;
33
td?: (table: Table<TData>, props: Record<string, any>) => Omit<BaseTable.TableCellProps, 'ref'>;
34
empty?: () => Partial<BaseTable.TableFilteredEmptyProps>;
35
};
36
37
registerHandlers?: StateHandler[];
38
}

options.meta.registerHandlers

Extend the state processing function of the table by registering through registerHandlers.

When stateKeys is '*', all state changes are listened to through useEffect. When (keyof TableState[]), state changes are listened to through onXXXChange.

handleName and callback are optional, and callback has a higher priority than handleName.

1
interface StateHandler {
2
handlerName?: string; // options 中的方法名
3
stateKeys: (keyof TableState)[] | '*'; // 监听的状态
4
callback?: (state: Partial<TableState>) => void; // 状态变化时的回调
5
}

options.columns

Customize column configuration by setting column.meta

1
interface ColumnMeta<TData extends RowData, TValue = unknown> {
2
description?: Record<string, any>; // icon ? tooltip props
3
// filterOptions?: { key: string; label: React.ReactNode }[]; // filter options
4
selectType?: 'single' | 'multiple'; // multiple selection type
5
sortable?: boolean; // whether it can be sorted
6
searchKey?: string; // custom search key
7
th?: Partial<BaseTable.TableCellProps>; // baseTable th props, priority is higher than getProps.th
8
td?: Partial<BaseTable.TableCellProps>; //baseTable td props, priority is higher than getProps.td
9
}

Feature

Status2StorageFeature

After being added to _features, the fields in the configured state are stored in localStorage by default. getDefaultTableOptions will automatically register this feature.

  • options.state2Storage The method of converting state to storage, the method of converting state to storage.
  • options.storage2State The method of converting storage to state, the method of converting storage to state.
  • options.meta.storageKeys Fields that need to be stored.
1
// storageKey field consists of kube-table-${tableName}-state
2
interface StorageStateOptions {
3
storage2State?: (storageKey: string) => Partial<TableState>;
4
state2Storage?: (storageKey: string, state: Partial<TableState>) => void;
5
}
6
7
interface TableMeta<TData extends RowData> {
8
storageKeys?: Array<keyof TableState>;
9
tableName: string;
10
}

getDefaultTableOptions(config)

Quickly generate default options configuration

1
**config**:
2
3
```ts
4
interface Config {
5
tableName: string;
6
manual: boolean; // whether to manually control the data
7
enableToolbar?: boolean; // whether to enable toolbar
8
enablePagination?: boolean; // whether to enable pagination
9
enableVisible?: boolean; // whether to enable hidden columns
10
enableFilters?: boolean; // whether to enable filters
11
enableStateToStorage?: boolean; // whether to store state to storage, used with options.meta.storageKeys
12
enableSelection?: boolean; // whether to enable selection
13
enableSort?: boolean; // whether to enable sorting
14
enableMultiSelection?: boolean; // whether to enable multi-selection
15
enableInitParamsByUrl?: boolean; // TODO: whether to enable url parameter initialization (not implemented)
16
enableParamsToUrl?: boolean; // TODO: whether to enable url parameters (not implemented)
17
}

Default enabled features:

  • enableFilters
  • enablePagination
  • enableToolbar
  • enableVisible
  • enableStateToStorage
  • enableSort

Default enabled Feature:

  • Status2StorageFeature

Default generated configuration:

1
{
2
storageStateKeys: ['columnVisibility'],
3
registerHandlers: manual
4
? [
5
{
6
handlerName: 'onParamsChange',
7
stateKeys: ['pagination', 'columnFilters', 'sorting'],
8
},
9
]
10
: [],
11
}

BaseTable

BaseTable.TableProps

1
interface TableInnerProps {
2
padding?: 'normal' | 'none';
3
size?: 'small' | 'medium';
4
stickyHeader?: boolean; // whether to fix the table header
5
className?: string;
6
style?: React.CSSProperties;
7
tableWrapperClassName?: string;
8
}

BaseTable.TableHeadProps

1
interface TableHeadProps {
2
className?: string;
3
style?: React.CSSProperties;
4
hasBorder?: boolean; // whether the table th has a border
5
}

BaseTable.TableBodyProps

1
interface TableBodyProps {
2
className?: string;
3
style?: React.CSSProperties;
4
hasBorder?: boolean; // whether the td in the table body has a border
5
}

BaseTable.TableRowProps

1
export interface TableRowProps {
2
className?: string;
3
hover?: boolean; // whether hover effect
4
selected?: boolean; // whether selected
5
style?: React.CSSProperties;
6
}

BaseTable.TableCellProps

1
/**
2
when padding is normal, variant and size correspond to the padding attributeQ
3
'head-small': '8px 12px',
4
'head-medium': '16px 12px',
5
'body-small': '4px 8px',
6
'body-medium': '8px 12px',
7
*/
8
export type TableCellProps = {
9
padding?: 'none' | 'normal'; // cell padding
10
align?: 'left' | 'center' | 'right' | 'justify'; // cell alignment
11
className?: string;
12
size?: 'small' | 'medium'; // cell size
13
ariaSort?: 'asc' | 'desc' | false; // whether to sort
14
variant?: 'head' | 'body'; // distinguish th and td
15
stickyHeader?: boolean; // whether to fix the table header
16
fixed?: 'left' | 'right'; // fixed column
17
fixedWidth?: number; // width when the column is fixed (when position is sticky; left or right value)
18
fixedLastLeft?: boolean; // whether it is the most left fixed, mainly used to separate shadow effects
19
fixedLastRight?: boolean; // whether it is the most right fixed, mainly used to separate shadow effects
20
style?: React.CSSProperties;
21
hasBorder?: boolean;
22
};

BaseTable.ToolbarProps

1
interface ToolbarProps {
2
enableBatchActions: boolean; // Whether to operate when multiple selections
3
enableSettingMenu?: boolean; // Whether to temporarily operate the button
4
onDisableBatchActions?: () => void; // Cancel the multi-selection operation box
5
enableFilters?: boolean; // Whether to enable filtering
6
settingMenu?: React.ReactNode; // Operation list
7
settingMenuText?: string;
8
toolbarLeft?: React.ReactNode; // left component
9
toolbarRight?: React.ReactNode; // right component
10
batchActions?: React.ReactNode; // Multi-selection operation button
11
filterProps: {
12
// FilterInput props
13
filters?: any;
14
placeholder?: string;
15
suggestions: Suggestions;
16
simpleMode?: boolean;
17
onChange?: (value: any) => void;
18
initialKeyword?: string;
19
};
20
onFilterInputChange?: (value: any) => void; // FilterInput onChange
21
refetch?: any; // refresh
22
loading?: boolean; // loading on the refresh button
23
}

BaseTable.EmptyProps

1
// empty create button props
2
interface CreateButtonProps {
3
enableCreate?: boolean;
4
createButton?: ReactElement;
5
clickCreateButtonFn?: (event: MouseEvent<HTMLButtonElement>) => void;
6
}
7
8
// data is empty, no filter conditions
9
export type TableEmptyProps = PropsWithChildren<EmptyProps & CreateButtonProps>;
10
11
interface DescriptionProps {
12
clearAndRefetch?: false | (() => void); // clear filter conditions
13
refetch?: false | (() => void); // refresh
14
}
15
16
// data is empty, with filter conditions
17
export type TableFilteredEmptyProps = TableEmptyProps & DescriptionProps;

Full example

Name
Info
More Info
firstName
Last Name
Visits
Profile Progress
Total:100
{
  "pagination": {
    "pageIndex": 0,
    "pageSize": 10
  },
  "columnFilters": [],
  "sorting": [],
  "rowSelection": {}
}

Base Table

BaseTable is a basic table component that provides some fundamental table components, such as Table, TableHead, TableBody, TableRow, TableCell.

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

baseTable selected

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

BaseTable Header Fixed

Header 1Header 2
Header 1Header 2Header 3
0col2-0col3-0
1col2-1col3-1
2col2-2col3-2
3col2-3col3-3
4col2-4col3-4
5col2-5col3-5
6col2-6col3-6
7col2-7col3-7
8col2-8col3-8
9col2-9col3-9
10col2-10col3-10
11col2-11col3-11
12col2-12col3-12
13col2-13col3-13
14col2-14col3-14
15col2-15col3-15
16col2-16col3-16
17col2-17col3-17
18col2-18col3-18
19col2-19col3-19
20col2-20col3-20
21col2-21col3-21
22col2-22col3-22
23col2-23col3-23
24col2-24col3-24
25col2-25col3-25
26col2-26col3-26
27col2-27col3-27
28col2-28col3-28
29col2-29col3-29
30col2-30col3-30
31col2-31col3-31
32col2-32col3-32
33col2-33col3-33
34col2-34col3-34
35col2-35col3-35
36col2-36col3-36
37col2-37col3-37
38col2-38col3-38
39col2-39col3-39
40col2-40col3-40
41col2-41col3-41
42col2-42col3-42
43col2-43col3-43
44col2-44col3-44
45col2-45col3-45
46col2-46col3-46
47col2-47col3-47
48col2-48col3-48
49col2-49col3-49
50col2-50col3-50
51col2-51col3-51
52col2-52col3-52
53col2-53col3-53
54col2-54col3-54
55col2-55col3-55
56col2-56col3-56
57col2-57col3-57
58col2-58col3-58
59col2-59col3-59
60col2-60col3-60
61col2-61col3-61
62col2-62col3-62
63col2-63col3-63
64col2-64col3-64
65col2-65col3-65
66col2-66col3-66
67col2-67col3-67
68col2-68col3-68
69col2-69col3-69
70col2-70col3-70
71col2-71col3-71
72col2-72col3-72
73col2-73col3-73
74col2-74col3-74
75col2-75col3-75
76col2-76col3-76
77col2-77col3-77
78col2-78col3-78
79col2-79col3-79
80col2-80col3-80
81col2-81col3-81
82col2-82col3-82
83col2-83col3-83
84col2-84col3-84
85col2-85col3-85
86col2-86col3-86
87col2-87col3-87
88col2-88col3-88
89col2-89col3-89
90col2-90col3-90
91col2-91col3-91
92col2-92col3-92
93col2-93col3-93
94col2-94col3-94
95col2-95col3-95
96col2-96col3-96
97col2-97col3-97
98col2-98col3-98
99col2-99col3-99

BaseTable Column Fixed

Header 1Header 2Header 3Header 3Header 3Header 3
0
col2-0
col3-0
col3-0col3-0col3-0
1
col2-1
col3-1
col3-1col3-1col3-1
2
col2-2
col3-2
col3-2col3-2col3-2
3
col2-3
col3-3
col3-3col3-3col3-3
4
col2-4
col3-4
col3-4col3-4col3-4
5
col2-5
col3-5
col3-5col3-5col3-5
6
col2-6
col3-6
col3-6col3-6col3-6
7
col2-7
col3-7
col3-7col3-7col3-7
8
col2-8
col3-8
col3-8col3-8col3-8
9
col2-9
col3-9
col3-9col3-9col3-9
10
col2-10
col3-10
col3-10col3-10col3-10
11
col2-11
col3-11
col3-11col3-11col3-11
12
col2-12
col3-12
col3-12col3-12col3-12
13
col2-13
col3-13
col3-13col3-13col3-13
14
col2-14
col3-14
col3-14col3-14col3-14
15
col2-15
col3-15
col3-15col3-15col3-15
16
col2-16
col3-16
col3-16col3-16col3-16
17
col2-17
col3-17
col3-17col3-17col3-17
18
col2-18
col3-18
col3-18col3-18col3-18
19
col2-19
col3-19
col3-19col3-19col3-19
20
col2-20
col3-20
col3-20col3-20col3-20
21
col2-21
col3-21
col3-21col3-21col3-21
22
col2-22
col3-22
col3-22col3-22col3-22
23
col2-23
col3-23
col3-23col3-23col3-23
24
col2-24
col3-24
col3-24col3-24col3-24
25
col2-25
col3-25
col3-25col3-25col3-25
26
col2-26
col3-26
col3-26col3-26col3-26
27
col2-27
col3-27
col3-27col3-27col3-27
28
col2-28
col3-28
col3-28col3-28col3-28
29
col2-29
col3-29
col3-29col3-29col3-29
30
col2-30
col3-30
col3-30col3-30col3-30
31
col2-31
col3-31
col3-31col3-31col3-31
32
col2-32
col3-32
col3-32col3-32col3-32
33
col2-33
col3-33
col3-33col3-33col3-33
34
col2-34
col3-34
col3-34col3-34col3-34
35
col2-35
col3-35
col3-35col3-35col3-35
36
col2-36
col3-36
col3-36col3-36col3-36
37
col2-37
col3-37
col3-37col3-37col3-37
38
col2-38
col3-38
col3-38col3-38col3-38
39
col2-39
col3-39
col3-39col3-39col3-39
40
col2-40
col3-40
col3-40col3-40col3-40
41
col2-41
col3-41
col3-41col3-41col3-41
42
col2-42
col3-42
col3-42col3-42col3-42
43
col2-43
col3-43
col3-43col3-43col3-43
44
col2-44
col3-44
col3-44col3-44col3-44
45
col2-45
col3-45
col3-45col3-45col3-45
46
col2-46
col3-46
col3-46col3-46col3-46
47
col2-47
col3-47
col3-47col3-47col3-47
48
col2-48
col3-48
col3-48col3-48col3-48
49
col2-49
col3-49
col3-49col3-49col3-49
50
col2-50
col3-50
col3-50col3-50col3-50
51
col2-51
col3-51
col3-51col3-51col3-51
52
col2-52
col3-52
col3-52col3-52col3-52
53
col2-53
col3-53
col3-53col3-53col3-53
54
col2-54
col3-54
col3-54col3-54col3-54
55
col2-55
col3-55
col3-55col3-55col3-55
56
col2-56
col3-56
col3-56col3-56col3-56
57
col2-57
col3-57
col3-57col3-57col3-57
58
col2-58
col3-58
col3-58col3-58col3-58
59
col2-59
col3-59
col3-59col3-59col3-59
60
col2-60
col3-60
col3-60col3-60col3-60
61
col2-61
col3-61
col3-61col3-61col3-61
62
col2-62
col3-62
col3-62col3-62col3-62
63
col2-63
col3-63
col3-63col3-63col3-63
64
col2-64
col3-64
col3-64col3-64col3-64
65
col2-65
col3-65
col3-65col3-65col3-65
66
col2-66
col3-66
col3-66col3-66col3-66
67
col2-67
col3-67
col3-67col3-67col3-67
68
col2-68
col3-68
col3-68col3-68col3-68
69
col2-69
col3-69
col3-69col3-69col3-69
70
col2-70
col3-70
col3-70col3-70col3-70
71
col2-71
col3-71
col3-71col3-71col3-71
72
col2-72
col3-72
col3-72col3-72col3-72
73
col2-73
col3-73
col3-73col3-73col3-73
74
col2-74
col3-74
col3-74col3-74col3-74
75
col2-75
col3-75
col3-75col3-75col3-75
76
col2-76
col3-76
col3-76col3-76col3-76
77
col2-77
col3-77
col3-77col3-77col3-77
78
col2-78
col3-78
col3-78col3-78col3-78
79
col2-79
col3-79
col3-79col3-79col3-79
80
col2-80
col3-80
col3-80col3-80col3-80
81
col2-81
col3-81
col3-81col3-81col3-81
82
col2-82
col3-82
col3-82col3-82col3-82
83
col2-83
col3-83
col3-83col3-83col3-83
84
col2-84
col3-84
col3-84col3-84col3-84
85
col2-85
col3-85
col3-85col3-85col3-85
86
col2-86
col3-86
col3-86col3-86col3-86
87
col2-87
col3-87
col3-87col3-87col3-87
88
col2-88
col3-88
col3-88col3-88col3-88
89
col2-89
col3-89
col3-89col3-89col3-89
90
col2-90
col3-90
col3-90col3-90col3-90
91
col2-91
col3-91
col3-91col3-91col3-91
92
col2-92
col3-92
col3-92col3-92col3-92
93
col2-93
col3-93
col3-93col3-93col3-93
94
col2-94
col3-94
col3-94col3-94col3-94
95
col2-95
col3-95
col3-95col3-95col3-95
96
col2-96
col3-96
col3-96col3-96col3-96
97
col2-97
col3-97
col3-97col3-97col3-97
98
col2-98
col3-98
col3-98col3-98col3-98
99
col2-99
col3-99
col3-99col3-99col3-99

BaseTable Pagination

Total:100

BaseTable with toolbar

Toolbar Right
Header 2Header 3Header 3Header 3Header 3
page-1-col2-0
page-1-col3-0
page-1-col3-0page-1-col3-0page-1-col3-0
page-1-col2-1
page-1-col3-1
page-1-col3-1page-1-col3-1page-1-col3-1
page-1-col2-2
page-1-col3-2
page-1-col3-2page-1-col3-2page-1-col3-2
page-1-col2-3
page-1-col3-3
page-1-col3-3page-1-col3-3page-1-col3-3
page-1-col2-4
page-1-col3-4
page-1-col3-4page-1-col3-4page-1-col3-4
page-1-col2-5
page-1-col3-5
page-1-col3-5page-1-col3-5page-1-col3-5
page-1-col2-6
page-1-col3-6
page-1-col3-6page-1-col3-6page-1-col3-6
page-1-col2-7
page-1-col3-7
page-1-col3-7page-1-col3-7page-1-col3-7
page-1-col2-8
page-1-col3-8
page-1-col3-8page-1-col3-8page-1-col3-8
page-1-col2-9
page-1-col3-9
page-1-col3-9page-1-col3-9page-1-col3-9
Total:100