react-table
React Table component.
Installation
- Install the latest version of react and react-table:
npm install --save react @trendmicro/react-table @trendmicro/react-paginations
- At this point you can import
@trendmicro/react-table
and its styles in your application as follows:
Usage
Sortable Table
Expanded Row
Fixed Columns
Fix left columns
Row selection
import React, { Component } from 'react';
import Table from '@trendmicro/react-table';
class SelectableTable extends Component {
state = {
selectionData: [
{ id: 1, checked: true, eventType: 'Virus/Malware', affectedDevices: 20, detections: 634 },
{ id: 2, checked: false, eventType: 'Spyware/Grayware', affectedDevices: 20, detections: 634 },
{ id: 3, checked: false, eventType: 'URL Filtering', affectedDevices: 15, detections: 598 },
{
id: 4,
checked: false,
eventType: 'Test long long long long long long long long long long long long long long long long content',
affectedDevices: 15,
detections: 598
},
{ id: 5, checked: false, eventType: 'Network Virus', affectedDevices: 15, detections: 497 },
{ id: 6, checked: false, eventType: 'Application Control', affectedDevices: 0, detections: 0 }
]
};
actions = {
handleClickRow: (record, index, e) => {
const checked = record.checked;
const data = this.state.selectionData.map(item => {
if (record.id === item.id) {
return {
...item,
checked: !checked
};
}
return item;
});
this.setState({ selectionData: data });
e.stopPropagation();
e.preventDefault();
},
handleRowClassName: (record, key) => {
const checked = record.checked;
if (checked) {
return styles['tr-active'];
} else {
return null;
}
},
handleHeaderCheckbox: (e) => {
const checkbox = e.target;
const data = this.state.selectionData.map((item, i) => {
return {
...item,
checked: checkbox.checked
};
});
this.setState({ selectionData: data });
e.stopPropagation();
},
renderHeaderCheckbox: () => {
let className = 'input-checkbox';
const selectedItems = _.filter(this.state.selectionData, { 'checked': true });
const dataLength = this.state.selectionData.length;
const selectedLength = selectedItems.length;
const isSelectedAll = selectedLength > 0 && selectedLength === dataLength;
if (selectedLength > 0 && selectedLength < dataLength) {
className += ' checkbox-partial';
}
return (
<div className="checkbox">
<input
type="checkbox"
id="headerCheckbox"
checked={isSelectedAll}
className={className}
onChange={this.actions.handleHeaderCheckbox}
/>
<label htmlFor="headerCheckbox" />
</div>
);
},
renderCheckbox: (value, row) => {
return (
<div className="checkbox">
<input
type="checkbox"
id={row.id}
className="input-checkbox"
checked={row.checked}
onChange={(e) => {}}
/>
<label />
</div>
);
}
};
columns = [
{ title: this.actions.renderHeaderCheckbox, dataIndex: 'checked', render: this.actions.renderCheckbox, width: 38 },
{ title: 'Event Type', dataIndex: 'eventType' },
{ title: 'Affected Devices', dataIndex: 'affectedDevices' },
{ title: 'Detections', dataIndex: 'detections' }
];
render() {
const columns = this.columns;
const data = this.state.selectionData;
return (
<Table
rowKey="id"
columns={columns}
data={data}
rowClassName={this.actions.handleRowClassName}
onRowClick={this.actions.handleClickRow}
/>
);
}
}
export default SelectableTable;
API
Properties
Table
Name |
Type |
Default |
Description |
bordered |
Boolean |
true |
Specify whether the table should be bordered. |
justified |
Boolean |
true |
Specify whether to keep table columns equal width. |
columns |
Object[] |
[] |
The columns config of table, see Column below for details. |
data |
Object[] |
[] |
Data record array to be rendered. |
emptyText |
Function |
() => { return 'No Data'; } |
Display text when data is empty. |
expandedRowKeys |
String[] |
|
Current expanded rows keys. |
expandedRowRender |
Function(record, rowIndex) |
|
Expanded content render function. |
footer |
React Node or Function(): React Node |
|
Table footer render function. |
hoverable |
Boolean |
true |
Whether use row hover style. |
loading |
Boolean |
false |
Whether table is loading. |
maxHeight |
Number |
|
Table maximum height. |
onRowClick |
Function(record, rowIndex, event) |
|
Handle rowClick action. |
showHeader |
Boolean |
true |
Whether table head is shown. |
sortable |
Boolean |
false |
Whether table head is sortable. |
title |
React Node or Function(): React Node |
|
Table title render function. |
useFixedHeader |
Boolean |
false |
Whether table head is fixed. |
rowClassName |
Function(record, key):string |
|
Get row's className. |
rowKey |
string or Function(record):string |
'key' |
If rowKey is string, record[rowKey] will be used as key. If rowKey is function, the return value of rowKey(record) will be use as key. |
Column
Name |
Type |
Default |
Description |
key |
String |
|
key of this column is for sortable attribute. |
className |
String |
|
className of this column. |
style |
String |
|
style of this column. |
headerClassName |
String |
|
className to assign to the column header. |
headerStyle |
String |
|
style to assign to the column header. |
cellClassName |
String |
|
className to assign to each cell in the column. |
cellStyle |
Object |
|
style to assign to each cell in the column. |
onClick |
Function(event) |
|
onClick event handler for header cell. |
title |
React Node or Function(): React Node |
|
Title of this column. |
dataIndex |
String |
|
Display field of the data record. |
dataKey |
String |
|
dataKey is an alias for dataIndex. |
width |
String or Number |
|
Width of the specific proportion calculation according to the width of the columns. |
fixed |
Boolean |
false |
This column will be fixed at left side when table scroll horizontally. |
render |
Function(value, record, rowIndex) |
|
The render function of cell, has two params: the text of this cell, the record of this row, it's return a react node. |
GitHub