mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2026-06-29 21:50:07 +00:00
Compare commits
30 Commits
react-boot
...
react-boot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be916d81a3 | ||
|
|
49d1ce8812 | ||
|
|
18caf0ac8d | ||
|
|
1b9bd63370 | ||
|
|
b2121fdf24 | ||
|
|
4aaf140de5 | ||
|
|
569aa0195e | ||
|
|
cf5b24e9e8 | ||
|
|
da86b4aa1a | ||
|
|
7d28d46185 | ||
|
|
16128e77e6 | ||
|
|
ec1f96cd1f | ||
|
|
00b1558df0 | ||
|
|
4dc5e6099f | ||
|
|
d9acbace67 | ||
|
|
7c8bf00cde | ||
|
|
63df43a1e0 | ||
|
|
bb42514e56 | ||
|
|
79e3247921 | ||
|
|
c25192145f | ||
|
|
056957b0b5 | ||
|
|
c12d3faba3 | ||
|
|
963b8d669b | ||
|
|
47f6340a99 | ||
|
|
23cb0bb317 | ||
|
|
70827eecd6 | ||
|
|
43b5eeb74f | ||
|
|
eb204f6526 | ||
|
|
2b410fb8ac | ||
|
|
e31b5eb691 |
@@ -208,6 +208,8 @@ const defaultSorted = [{
|
|||||||
}];
|
}];
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Note**: Only the first column is sorted currently, see #1083.
|
||||||
|
|
||||||
### <a name='defaultSortDirection'>defaultSortDirection - [String]</a>
|
### <a name='defaultSortDirection'>defaultSortDirection - [String]</a>
|
||||||
Default sort direction when user click on header column at first time, available value is `asc` and `desc`. Default is `desc`.
|
Default sort direction when user click on header column at first time, available value is `asc` and `desc`. Default is `desc`.
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Available properties in a column object:
|
|||||||
* [formatExtraData](#formatExtraData)
|
* [formatExtraData](#formatExtraData)
|
||||||
* [type](#type)
|
* [type](#type)
|
||||||
* [sort](#sort)
|
* [sort](#sort)
|
||||||
|
* [sortValue](#sortValue)
|
||||||
* [sortFunc](#sortFunc)
|
* [sortFunc](#sortFunc)
|
||||||
* [sortCaret](#sortCaret)
|
* [sortCaret](#sortCaret)
|
||||||
* [onSort](#onSort)
|
* [onSort](#onSort)
|
||||||
@@ -49,6 +50,7 @@ Available properties in a column object:
|
|||||||
* [editorRenderer](#editorRenderer)
|
* [editorRenderer](#editorRenderer)
|
||||||
* [filter](#filter)
|
* [filter](#filter)
|
||||||
* [filterValue](#filterValue)
|
* [filterValue](#filterValue)
|
||||||
|
* [searchable](#searchable)
|
||||||
* [csvType](#csvType)
|
* [csvType](#csvType)
|
||||||
* [csvFormatter](#csvFormatter)
|
* [csvFormatter](#csvFormatter)
|
||||||
* [csvText](#csvText)
|
* [csvText](#csvText)
|
||||||
@@ -140,8 +142,42 @@ Specify the data type on column. Available value so far is `string`, `number`, `
|
|||||||
## <a name='sort'>column.sort - [Bool]</a>
|
## <a name='sort'>column.sort - [Bool]</a>
|
||||||
Enable the column sort via a `true` value given.
|
Enable the column sort via a `true` value given.
|
||||||
|
|
||||||
|
## <a name='sortValue'>column.sortValue - [Function]</a>
|
||||||
|
`column.sortValue` only work when `column.sort` enabled. This prop allow you to replace the value when table sorting.
|
||||||
|
|
||||||
|
For example, consider following data:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const types = ['Cloud Service', 'Message Service', 'Add Service', 'Edit Service', 'Money'];
|
||||||
|
const data = [{id: 1, type: 2}, {id: 2, type: 1}, {id: 3, type:0}];
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Job ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'type',
|
||||||
|
text: 'Job Type'
|
||||||
|
sort: true,
|
||||||
|
formatter: (cell, row) => types[cell]
|
||||||
|
}]
|
||||||
|
```
|
||||||
|
|
||||||
|
In above case, when user try to sort Job Type column which will sort the original value: 0, 1, 2 but we display the type name via [`column.formatter`](#formatter), which will lead confuse because we are sorting by type value instead of type name. So `sortValue` is a way for you to decide what kind of value should be adopted when sorting on a specify column:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Job ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'type',
|
||||||
|
text: 'Job Type'
|
||||||
|
sort: true,
|
||||||
|
formatter: (cell, row) => types[cell],
|
||||||
|
sortValue: (cell, row) => types[cell] // we use type name to sort.
|
||||||
|
}]
|
||||||
|
```
|
||||||
|
|
||||||
## <a name='sortFunc'>column.sortFunc - [Function]</a>
|
## <a name='sortFunc'>column.sortFunc - [Function]</a>
|
||||||
`column.sortFunc` only work when `column.sort` is enable. `sortFunc` allow you to define your sorting algorithm. This callback function accept six arguments:
|
`column.sortFunc` only work when `column.sort` enabled. `sortFunc` allow you to define your sorting algorithm. This callback function accept six arguments:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
{
|
{
|
||||||
@@ -420,7 +456,7 @@ If the events is not listed above, the callback function will only pass the `eve
|
|||||||
{
|
{
|
||||||
// omit...
|
// omit...
|
||||||
headerEvents: {
|
headerEvents: {
|
||||||
onClick: e => { ... }
|
onClick: (e, column, columnIndex) => { ... }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -630,7 +666,7 @@ It's also available to custom via a callback function:
|
|||||||
{
|
{
|
||||||
// omit...
|
// omit...
|
||||||
footerEvents: {
|
footerEvents: {
|
||||||
onClick: e => { ... }
|
onClick: (e, column, columnIndex) => { ... }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@@ -917,6 +953,9 @@ A final `String` value you want to be filtered.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## <a name='searchable'>column.searchable - [Boolean]</a>
|
||||||
|
Default the column is searchable. Give `false` to disable search functionality on specified column.
|
||||||
|
|
||||||
## <a name='csvType'>column.csvType - [Object]</a>
|
## <a name='csvType'>column.csvType - [Object]</a>
|
||||||
Default is `String`. Currently, the available value is `String` and `Number`. If `Number` assigned, the cell value will not wrapped with double quote.
|
Default is `String`. Currently, the available value is `String` and `Number`. If `Number` assigned, the cell value will not wrapped with double quote.
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
* [expandColumnPosition](#expandColumnPosition)
|
* [expandColumnPosition](#expandColumnPosition)
|
||||||
* [expandColumnRenderer](#expandColumnRenderer)
|
* [expandColumnRenderer](#expandColumnRenderer)
|
||||||
* [expandHeaderColumnRenderer](#expandHeaderColumnRenderer)
|
* [expandHeaderColumnRenderer](#expandHeaderColumnRenderer)
|
||||||
|
* [className](#className)
|
||||||
* [parentClassName](#parentClassName)
|
* [parentClassName](#parentClassName)
|
||||||
|
|
||||||
### <a name="renderer">expandRow.renderer - [Function]</a>
|
### <a name="renderer">expandRow.renderer - [Function]</a>
|
||||||
@@ -168,6 +169,27 @@ const expandRow = {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### <a name='className'>expandRow.className - [String | Function]</a>
|
||||||
|
Apply the custom class name on the expanding row. For example:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const expandRow = {
|
||||||
|
renderer: (row) => ...,
|
||||||
|
className: 'foo'
|
||||||
|
};
|
||||||
|
```
|
||||||
|
following usage is more flexible way for customing the class name:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const expandRow = {
|
||||||
|
renderer: (row) => ...,
|
||||||
|
className: (isExpanded, row, rowIndex) => {
|
||||||
|
if (rowIndex > 2) return 'foo';
|
||||||
|
return 'bar';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
### <a name='parentClassName'>expandRow.parentClassName - [String | Function]</a>
|
### <a name='parentClassName'>expandRow.parentClassName - [String | Function]</a>
|
||||||
Apply the custom class name on parent row of expanded row. For example:
|
Apply the custom class name on parent row of expanded row. For example:
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-editor",
|
"name": "react-bootstrap-table2-editor",
|
||||||
"version": "1.3.2",
|
"version": "1.4.0",
|
||||||
"description": "it's the editor addon for react-bootstrap-table2",
|
"description": "it's the editor addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
|
/* eslint disable-next-line: 0 */
|
||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
/* eslint react/require-default-props: 0 */
|
/* eslint react/require-default-props: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
|
/* eslint react/no-unused-prop-types: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { CLICK_TO_CELL_EDIT, DBCLICK_TO_CELL_EDIT } from './const';
|
import { CLICK_TO_CELL_EDIT, DBCLICK_TO_CELL_EDIT } from './const';
|
||||||
@@ -43,7 +46,7 @@ export default (
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.cellEdit && isRemoteCellEdit()) {
|
if (nextProps.cellEdit && isRemoteCellEdit()) {
|
||||||
if (nextProps.cellEdit.options.errorMessage) {
|
if (nextProps.cellEdit.options.errorMessage) {
|
||||||
this.setState(() => ({
|
this.setState(() => ({
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
/* eslint no-return-assign: 0 */
|
/* eslint no-return-assign: 0 */
|
||||||
/* eslint class-methods-use-this: 0 */
|
/* eslint class-methods-use-this: 0 */
|
||||||
/* eslint jsx-a11y/no-noninteractive-element-interactions: 0 */
|
/* eslint jsx-a11y/no-noninteractive-element-interactions: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import cs from 'classnames';
|
import cs from 'classnames';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
@@ -51,7 +52,11 @@ export default (_, onStartEdit) =>
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps({ message }) {
|
componentWillUnmount() {
|
||||||
|
this.clearTimer();
|
||||||
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps({ message }) {
|
||||||
if (_.isDefined(message)) {
|
if (_.isDefined(message)) {
|
||||||
this.createTimer();
|
this.createTimer();
|
||||||
this.setState(() => ({
|
this.setState(() => ({
|
||||||
@@ -60,10 +65,6 @@ export default (_, onStartEdit) =>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
|
||||||
this.clearTimer();
|
|
||||||
}
|
|
||||||
|
|
||||||
clearTimer() {
|
clearTimer() {
|
||||||
if (this.indicatorTimer) {
|
if (this.indicatorTimer) {
|
||||||
clearTimeout(this.indicatorTimer);
|
clearTimeout(this.indicatorTimer);
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ describe('CellEditContext', () => {
|
|||||||
wrapper = shallow(shallowContext());
|
wrapper = shallow(shallowContext());
|
||||||
wrapper.setState(initialState);
|
wrapper.setState(initialState);
|
||||||
wrapper.render();
|
wrapper.render();
|
||||||
wrapper.instance().componentWillReceiveProps({});
|
wrapper.instance().UNSAFE_componentWillReceiveProps({});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not set state.message', () => {
|
it('should not set state.message', () => {
|
||||||
@@ -138,7 +138,7 @@ describe('CellEditContext', () => {
|
|||||||
wrapper = shallow(shallowContext());
|
wrapper = shallow(shallowContext());
|
||||||
wrapper.setState(initialState);
|
wrapper.setState(initialState);
|
||||||
wrapper.render();
|
wrapper.render();
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
cellEdit: cellEditFactory(defaultCellEdit)
|
cellEdit: cellEditFactory(defaultCellEdit)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -164,7 +164,7 @@ describe('CellEditContext', () => {
|
|||||||
wrapper = shallow(shallowContext(defaultCellEdit, true));
|
wrapper = shallow(shallowContext(defaultCellEdit, true));
|
||||||
wrapper.setState(initialState);
|
wrapper.setState(initialState);
|
||||||
wrapper.render();
|
wrapper.render();
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
cellEdit: cellEditFactory({
|
cellEdit: cellEditFactory({
|
||||||
...defaultCellEdit,
|
...defaultCellEdit,
|
||||||
errorMessage: message
|
errorMessage: message
|
||||||
@@ -190,7 +190,7 @@ describe('CellEditContext', () => {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(shallowContext(defaultCellEdit, true));
|
wrapper = shallow(shallowContext(defaultCellEdit, true));
|
||||||
wrapper.setState(initialState);
|
wrapper.setState(initialState);
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
cellEdit: cellEditFactory({ ...defaultCellEdit })
|
cellEdit: cellEditFactory({ ...defaultCellEdit })
|
||||||
});
|
});
|
||||||
wrapper.update();
|
wrapper.update();
|
||||||
|
|||||||
150
packages/react-bootstrap-table2-example/examples/column-filter/select-filter-option-type.js
vendored
Normal file
150
packages/react-bootstrap-table2-example/examples/column-filter/select-filter-option-type.js
vendored
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import filterFactory, { selectFilter } from 'react-bootstrap-table2-filter';
|
||||||
|
import Code from 'components/common/code-block';
|
||||||
|
import { productsQualityGenerator } from 'utils/common';
|
||||||
|
|
||||||
|
const products = productsQualityGenerator(6);
|
||||||
|
|
||||||
|
const selectOptions = {
|
||||||
|
0: 'good',
|
||||||
|
1: 'Bad',
|
||||||
|
2: 'unknown'
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectOptionsArr = [{
|
||||||
|
value: 0,
|
||||||
|
label: 'good'
|
||||||
|
}, {
|
||||||
|
value: 1,
|
||||||
|
label: 'Bad'
|
||||||
|
}, {
|
||||||
|
value: 2,
|
||||||
|
label: 'unknown'
|
||||||
|
}];
|
||||||
|
|
||||||
|
const columns1 = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptions[cell],
|
||||||
|
filter: selectFilter({
|
||||||
|
options: selectOptions
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
|
||||||
|
const columns2 = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptionsArr.filter(opt => opt.value === cell)[0].label || '',
|
||||||
|
filter: selectFilter({
|
||||||
|
options: selectOptionsArr
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
|
||||||
|
const columns3 = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptionsArr.filter(opt => opt.value === cell)[0].label || '',
|
||||||
|
filter: selectFilter({
|
||||||
|
options: () => selectOptionsArr
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
|
||||||
|
const sourceCode = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import filterFactory, { selectFilter } from 'react-bootstrap-table2-filter';
|
||||||
|
|
||||||
|
// Object map options
|
||||||
|
const selectOptions = {
|
||||||
|
0: 'good',
|
||||||
|
1: 'Bad',
|
||||||
|
2: 'unknown'
|
||||||
|
};
|
||||||
|
|
||||||
|
// Array options
|
||||||
|
const selectOptionsArr = [{
|
||||||
|
value: 0,
|
||||||
|
label: 'good'
|
||||||
|
}, {
|
||||||
|
value: 1,
|
||||||
|
label: 'Bad'
|
||||||
|
}, {
|
||||||
|
value: 2,
|
||||||
|
label: 'unknown'
|
||||||
|
}];
|
||||||
|
|
||||||
|
const columns1 = [..., {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptions[cell],
|
||||||
|
filter: selectFilter({
|
||||||
|
options: selectOptions
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
<BootstrapTable keyField='id' data={ products } columns={ columns1 } filter={ filterFactory() } />
|
||||||
|
|
||||||
|
const columns2 = [..., {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptionsArr.filter(opt => opt.value === cell)[0].label || '',
|
||||||
|
filter: selectFilter({
|
||||||
|
options: selectOptionsArr
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
<BootstrapTable keyField='id' data={ products } columns={ columns2 } filter={ filterFactory() } />
|
||||||
|
|
||||||
|
const columns3 = [..., {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptionsArr.filter(opt => opt.value === cell)[0].label || '',
|
||||||
|
filter: selectFilter({
|
||||||
|
options: () => selectOptionsArr
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
<BootstrapTable keyField='id' data={ products } columns={ columns3 } filter={ filterFactory() } />
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default () => (
|
||||||
|
<div>
|
||||||
|
<h2>Options as an object</h2>
|
||||||
|
<BootstrapTable
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns1 }
|
||||||
|
filter={ filterFactory() }
|
||||||
|
/>
|
||||||
|
<h2>Options as an array</h2>
|
||||||
|
<BootstrapTable
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns2 }
|
||||||
|
filter={ filterFactory() }
|
||||||
|
/>
|
||||||
|
<h2>Options as a function which return an array</h2>
|
||||||
|
<BootstrapTable
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns3 }
|
||||||
|
filter={ filterFactory() }
|
||||||
|
/>
|
||||||
|
<Code>{ sourceCode }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
@@ -36,11 +36,12 @@ const columns = [{
|
|||||||
|
|
||||||
const MyExportCSV = (props) => {
|
const MyExportCSV = (props) => {
|
||||||
const handleClick = () => {
|
const handleClick = () => {
|
||||||
props.onExport();
|
// passing my custom data
|
||||||
|
props.onExport(products.filter(r => r.id > 2));
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<button className="btn btn-success" onClick={ handleClick }>Export to CSV</button>
|
<button className="btn btn-success" onClick={ handleClick }>Only export Product ID bigger than 2</button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ const columns = [{
|
|||||||
dataField: 'id',
|
dataField: 'id',
|
||||||
text: 'Product ID',
|
text: 'Product ID',
|
||||||
footerEvents: {
|
footerEvents: {
|
||||||
onClick: () => alert('Click on Product ID footer column')
|
onClick: (e, column, columnIndex) => alert(`Click on Product ID header column, columnIndex: ${columnIndex}`)
|
||||||
},
|
},
|
||||||
footer: 'Footer 1'
|
footer: 'Footer 1'
|
||||||
}, {
|
}, {
|
||||||
@@ -32,7 +32,7 @@ const columns = [{
|
|||||||
dataField: 'id',
|
dataField: 'id',
|
||||||
text: 'Product ID',
|
text: 'Product ID',
|
||||||
footerEvents: {
|
footerEvents: {
|
||||||
onClick: () => alert('Click on Product ID footer column')
|
onClick: (e, column, columnIndex) => alert('Click on Product ID footer column')
|
||||||
},
|
},
|
||||||
footer: 'Footer 1'
|
footer: 'Footer 1'
|
||||||
}, {
|
}, {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ const columns = [{
|
|||||||
dataField: 'id',
|
dataField: 'id',
|
||||||
text: 'Product ID',
|
text: 'Product ID',
|
||||||
headerEvents: {
|
headerEvents: {
|
||||||
onClick: () => alert('Click on Product ID header column')
|
onClick: (e, column, columnIndex) => alert(`Click on Product ID header column, columnIndex: ${columnIndex}`)
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
dataField: 'name',
|
dataField: 'name',
|
||||||
@@ -29,7 +29,7 @@ const columns = [{
|
|||||||
dataField: 'id',
|
dataField: 'id',
|
||||||
text: 'Product ID',
|
text: 'Product ID',
|
||||||
headerEvents: {
|
headerEvents: {
|
||||||
onClick: () => alert('Click on Product ID header column')
|
onClick: (e, column, columnIndex) => alert('Click on Product ID header column')
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
dataField: 'name',
|
dataField: 'name',
|
||||||
|
|||||||
106
packages/react-bootstrap-table2-example/examples/row-expand/expanding-row-classname.js
vendored
Normal file
106
packages/react-bootstrap-table2-example/examples/row-expand/expanding-row-classname.js
vendored
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import Code from 'components/common/code-block';
|
||||||
|
import { productsExpandRowsGenerator } from 'utils/common';
|
||||||
|
|
||||||
|
const products = productsExpandRowsGenerator();
|
||||||
|
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price'
|
||||||
|
}];
|
||||||
|
|
||||||
|
const expandRow1 = {
|
||||||
|
className: 'expanding-foo',
|
||||||
|
renderer: row => (
|
||||||
|
<div>
|
||||||
|
<p>{ `This Expand row is belong to rowKey ${row.id}` }</p>
|
||||||
|
<p>You can render anything here, also you can add additional data on every row object</p>
|
||||||
|
<p>expandRow.renderer callback will pass the origin row object to you</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
const expandRow2 = {
|
||||||
|
className: (isExpanded, row, rowIndex) => {
|
||||||
|
if (rowIndex > 2) return 'expanding-foo';
|
||||||
|
return 'expanding-bar';
|
||||||
|
},
|
||||||
|
renderer: row => (
|
||||||
|
<div>
|
||||||
|
<p>{ `This Expand row is belong to rowKey ${row.id}` }</p>
|
||||||
|
<p>You can render anything here, also you can add additional data on every row object</p>
|
||||||
|
<p>expandRow.renderer callback will pass the origin row object to you</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
const sourceCode1 = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
|
||||||
|
const columns = // omit...
|
||||||
|
|
||||||
|
const expandRow = {
|
||||||
|
className: 'expanding-foo',
|
||||||
|
renderer: row => (
|
||||||
|
<div>.....</div>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
<BootstrapTable
|
||||||
|
keyField='id'
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
expandRow={ expandRow }
|
||||||
|
/>
|
||||||
|
`;
|
||||||
|
|
||||||
|
const sourceCode2 = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
|
||||||
|
const columns = // omit...
|
||||||
|
|
||||||
|
const expandRow = {
|
||||||
|
className: (isExpanded, row, rowIndex) => {
|
||||||
|
if (rowIndex > 2) return 'expanding-foo';
|
||||||
|
return 'expanding-bar';
|
||||||
|
},
|
||||||
|
renderer: row => (
|
||||||
|
<div>...</div>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
<BootstrapTable
|
||||||
|
keyField='id'
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
expandRow={ expandRow }
|
||||||
|
/>
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default () => (
|
||||||
|
<div>
|
||||||
|
<BootstrapTable
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
expandRow={ expandRow1 }
|
||||||
|
/>
|
||||||
|
<Code>{ sourceCode1 }</Code>
|
||||||
|
<BootstrapTable
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
expandRow={ expandRow2 }
|
||||||
|
/>
|
||||||
|
<Code>{ sourceCode2 }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
116
packages/react-bootstrap-table2-example/examples/search/custom-match-function.js
vendored
Normal file
116
packages/react-bootstrap-table2-example/examples/search/custom-match-function.js
vendored
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
/* eslint react/prop-types: 0 */
|
||||||
|
/* eslint no-unused-vars: 0 */
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
|
||||||
|
import Code from 'components/common/code-block';
|
||||||
|
import { productsGenerator } from 'utils/common';
|
||||||
|
|
||||||
|
const { SearchBar } = Search;
|
||||||
|
const products = productsGenerator();
|
||||||
|
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price'
|
||||||
|
}];
|
||||||
|
|
||||||
|
const sourceCode = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
|
||||||
|
|
||||||
|
const { SearchBar } = Search;
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price'
|
||||||
|
}];
|
||||||
|
|
||||||
|
// Implement startWith instead of contain
|
||||||
|
function customMatchFunc({
|
||||||
|
searchText,
|
||||||
|
value,
|
||||||
|
column,
|
||||||
|
row
|
||||||
|
}) {
|
||||||
|
if (typeof value !== 'undefined') {
|
||||||
|
return value.startsWith(searchText);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => (
|
||||||
|
<div>
|
||||||
|
<ToolkitProvider
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
search={ { customMatchFunc } }
|
||||||
|
>
|
||||||
|
{
|
||||||
|
props => (
|
||||||
|
<div>
|
||||||
|
<h3>Input something at below input field:</h3>
|
||||||
|
<SearchBar { ...props.searchProps } />
|
||||||
|
<hr />
|
||||||
|
<BootstrapTable
|
||||||
|
{ ...props.baseProps }
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</ToolkitProvider>
|
||||||
|
<Code>{ sourceCode }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
`;
|
||||||
|
|
||||||
|
// Implement startWith instead of contain
|
||||||
|
function customMatchFunc({
|
||||||
|
searchText,
|
||||||
|
value,
|
||||||
|
column,
|
||||||
|
row
|
||||||
|
}) {
|
||||||
|
if (typeof value !== 'undefined') {
|
||||||
|
return `${value}`.toLowerCase().startsWith(searchText.toLowerCase());
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => (
|
||||||
|
<div>
|
||||||
|
<h1>Custom a search match function by startWith instead of contain</h1>
|
||||||
|
<ToolkitProvider
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
search={ { onColumnMatch: customMatchFunc } }
|
||||||
|
>
|
||||||
|
{
|
||||||
|
props => (
|
||||||
|
<div>
|
||||||
|
<h3>Input something at below input field:</h3>
|
||||||
|
<SearchBar { ...props.searchProps } />
|
||||||
|
<hr />
|
||||||
|
<BootstrapTable
|
||||||
|
{ ...props.baseProps }
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</ToolkitProvider>
|
||||||
|
<Code>{ sourceCode }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
87
packages/react-bootstrap-table2-example/examples/search/searchable-column.js
vendored
Normal file
87
packages/react-bootstrap-table2-example/examples/search/searchable-column.js
vendored
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
/* eslint react/prop-types: 0 */
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
|
||||||
|
import Code from 'components/common/code-block';
|
||||||
|
import { productsGenerator } from 'utils/common';
|
||||||
|
|
||||||
|
const { SearchBar } = Search;
|
||||||
|
const products = productsGenerator();
|
||||||
|
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name',
|
||||||
|
searchable: false
|
||||||
|
}, {
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price',
|
||||||
|
searchable: false
|
||||||
|
}];
|
||||||
|
|
||||||
|
const sourceCode = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
|
||||||
|
|
||||||
|
const { SearchBar } = Search;
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Product ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Product Name',
|
||||||
|
searchable: false
|
||||||
|
}, {
|
||||||
|
dataField: 'price',
|
||||||
|
text: 'Product Price',
|
||||||
|
searchable: false
|
||||||
|
}];
|
||||||
|
|
||||||
|
<ToolkitProvider
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
search
|
||||||
|
>
|
||||||
|
{
|
||||||
|
props => (
|
||||||
|
<div>
|
||||||
|
<h3>Input something at below input field:</h3>
|
||||||
|
<SearchBar { ...props.searchProps } />
|
||||||
|
<hr />
|
||||||
|
<BootstrapTable
|
||||||
|
{ ...props.baseProps }
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</ToolkitProvider>
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default () => (
|
||||||
|
<div>
|
||||||
|
<ToolkitProvider
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
search
|
||||||
|
>
|
||||||
|
{
|
||||||
|
props => (
|
||||||
|
<div>
|
||||||
|
<h3>Column name and price is unsearchable</h3>
|
||||||
|
<SearchBar { ...props.searchProps } />
|
||||||
|
<hr />
|
||||||
|
<BootstrapTable
|
||||||
|
{ ...props.baseProps }
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</ToolkitProvider>
|
||||||
|
<Code>{ sourceCode }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
78
packages/react-bootstrap-table2-example/examples/sort/custom-sort-value.js
vendored
Normal file
78
packages/react-bootstrap-table2-example/examples/sort/custom-sort-value.js
vendored
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
/* eslint no-unused-vars: 0 */
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
import Code from 'components/common/code-block';
|
||||||
|
import { jobsGenerator1 } from 'utils/common';
|
||||||
|
|
||||||
|
const jobs = jobsGenerator1(8);
|
||||||
|
|
||||||
|
const types = ['Cloud Service', 'Message Service', 'Add Service', 'Edit Service', 'Money'];
|
||||||
|
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Job ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Job Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'owner',
|
||||||
|
text: 'Job Owner'
|
||||||
|
}, {
|
||||||
|
dataField: 'type',
|
||||||
|
text: 'Job Type',
|
||||||
|
sort: true,
|
||||||
|
formatter: (cell, row) => types[cell],
|
||||||
|
sortValue: (cell, row) => types[cell]
|
||||||
|
}];
|
||||||
|
|
||||||
|
const sourceCode = `\
|
||||||
|
import BootstrapTable from 'react-bootstrap-table-next';
|
||||||
|
|
||||||
|
const types = ['Cloud Service', 'Message Service', 'Add Service', 'Edit Service', 'Money'];
|
||||||
|
|
||||||
|
const columns = [{
|
||||||
|
dataField: 'id',
|
||||||
|
text: 'Job ID'
|
||||||
|
}, {
|
||||||
|
dataField: 'name',
|
||||||
|
text: 'Job Name'
|
||||||
|
}, {
|
||||||
|
dataField: 'owner',
|
||||||
|
text: 'Job Owner'
|
||||||
|
}, {
|
||||||
|
dataField: 'type',
|
||||||
|
text: 'Job Type',
|
||||||
|
sort: true,
|
||||||
|
formatter: (cell, row) => types[cell],
|
||||||
|
sortValue: (cell, row) => types[cell]
|
||||||
|
}];
|
||||||
|
|
||||||
|
<BootstrapTable keyField='id' data={ products } columns={ columns } />
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default class Test extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = { data: jobs };
|
||||||
|
}
|
||||||
|
|
||||||
|
handleClick = () => {
|
||||||
|
this.setState(() => {
|
||||||
|
const newProducts = jobsGenerator1(21);
|
||||||
|
return {
|
||||||
|
data: newProducts
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<button className="btn btn-default" onClick={ this.handleClick }>Change Data</button>
|
||||||
|
<BootstrapTable keyField="id" data={ this.state.data } columns={ columns } />
|
||||||
|
<Code>{ sourceCode }</Code>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-example",
|
"name": "react-bootstrap-table2-example",
|
||||||
"version": "1.0.29",
|
"version": "1.0.32",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
@@ -29,6 +29,11 @@ export const withOnSale = rows => rows.map((row) => {
|
|||||||
return row;
|
return row;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const withRandomPrice = rows => rows.map((row) => {
|
||||||
|
row.price = Math.floor((Math.random() * 10) + 2000);
|
||||||
|
return row;
|
||||||
|
});
|
||||||
|
|
||||||
export const productsQualityGenerator = (quantity = 5, factor = 0) =>
|
export const productsQualityGenerator = (quantity = 5, factor = 0) =>
|
||||||
Array.from({ length: quantity }, (value, index) => ({
|
Array.from({ length: quantity }, (value, index) => ({
|
||||||
id: index + factor,
|
id: index + factor,
|
||||||
|
|||||||
@@ -68,6 +68,7 @@ import TextFilterCaseSensitive from 'examples/column-filter/text-filter-caseSens
|
|||||||
import CustomTextFilter from 'examples/column-filter/custom-text-filter';
|
import CustomTextFilter from 'examples/column-filter/custom-text-filter';
|
||||||
import CustomFilterValue from 'examples/column-filter/custom-filter-value';
|
import CustomFilterValue from 'examples/column-filter/custom-filter-value';
|
||||||
import SelectFilter from 'examples/column-filter/select-filter';
|
import SelectFilter from 'examples/column-filter/select-filter';
|
||||||
|
import ConfigureSelectFilterOptions from 'examples/column-filter/select-filter-option-type';
|
||||||
import SelectFilterWithDefaultValue from 'examples/column-filter/select-filter-default-value';
|
import SelectFilterWithDefaultValue from 'examples/column-filter/select-filter-default-value';
|
||||||
import SelectFilterComparator from 'examples/column-filter/select-filter-like-comparator';
|
import SelectFilterComparator from 'examples/column-filter/select-filter-like-comparator';
|
||||||
import SelectFilterWithPreservedOptionsOrder from 'examples/column-filter/select-filter-preserve-option-order';
|
import SelectFilterWithPreservedOptionsOrder from 'examples/column-filter/select-filter-preserve-option-order';
|
||||||
@@ -103,6 +104,7 @@ import EnableSortTable from 'examples/sort/enable-sort-table';
|
|||||||
import DefaultSortTable from 'examples/sort/default-sort-table';
|
import DefaultSortTable from 'examples/sort/default-sort-table';
|
||||||
import DefaultSortDirectionTable from 'examples/sort/default-sort-direction';
|
import DefaultSortDirectionTable from 'examples/sort/default-sort-direction';
|
||||||
import SortEvents from 'examples/sort/sort-events';
|
import SortEvents from 'examples/sort/sort-events';
|
||||||
|
import CustomSortValue from 'examples/sort/custom-sort-value';
|
||||||
import CustomSortTable from 'examples/sort/custom-sort-table';
|
import CustomSortTable from 'examples/sort/custom-sort-table';
|
||||||
import CustomSortCaretTable from 'examples/sort/custom-sort-caret';
|
import CustomSortCaretTable from 'examples/sort/custom-sort-caret';
|
||||||
import HeaderSortingClassesTable from 'examples/sort/header-sorting-classes';
|
import HeaderSortingClassesTable from 'examples/sort/header-sorting-classes';
|
||||||
@@ -166,6 +168,7 @@ import CustomExpandColumn from 'examples/row-expand/custom-expand-column';
|
|||||||
import ExpandColumnPosition from 'examples/row-expand/expand-column-position';
|
import ExpandColumnPosition from 'examples/row-expand/expand-column-position';
|
||||||
import ExpandHooks from 'examples/row-expand/expand-hooks';
|
import ExpandHooks from 'examples/row-expand/expand-hooks';
|
||||||
import ParentRowClassName from 'examples/row-expand/parent-row-classname';
|
import ParentRowClassName from 'examples/row-expand/parent-row-classname';
|
||||||
|
import ExpandingRowClassName from 'examples/row-expand/expanding-row-classname';
|
||||||
|
|
||||||
// pagination
|
// pagination
|
||||||
import PaginationTable from 'examples/pagination';
|
import PaginationTable from 'examples/pagination';
|
||||||
@@ -192,6 +195,8 @@ import DefaultCustomSearch from 'examples/search/default-custom-search';
|
|||||||
import FullyCustomSearch from 'examples/search/fully-custom-search';
|
import FullyCustomSearch from 'examples/search/fully-custom-search';
|
||||||
import SearchFormattedData from 'examples/search/search-formatted';
|
import SearchFormattedData from 'examples/search/search-formatted';
|
||||||
import CustomSearchValue from 'examples/search/custom-search-value';
|
import CustomSearchValue from 'examples/search/custom-search-value';
|
||||||
|
import SearchableColumn from 'examples/search/searchable-column';
|
||||||
|
import CustomMatchFunction from 'examples/search/custom-match-function';
|
||||||
|
|
||||||
// CSV
|
// CSV
|
||||||
import ExportCSV from 'examples/csv';
|
import ExportCSV from 'examples/csv';
|
||||||
@@ -300,6 +305,7 @@ storiesOf('Column Filter', module)
|
|||||||
.add('Text Filter with Case Sensitive', () => <TextFilterCaseSensitive />)
|
.add('Text Filter with Case Sensitive', () => <TextFilterCaseSensitive />)
|
||||||
// add another filter type example right here.
|
// add another filter type example right here.
|
||||||
.add('Select Filter', () => <SelectFilter />)
|
.add('Select Filter', () => <SelectFilter />)
|
||||||
|
.add('Configure Select Filter Options', () => <ConfigureSelectFilterOptions />)
|
||||||
.add('Select Filter with Default Value', () => <SelectFilterWithDefaultValue />)
|
.add('Select Filter with Default Value', () => <SelectFilterWithDefaultValue />)
|
||||||
.add('Select Filter with Comparator', () => <SelectFilterComparator />)
|
.add('Select Filter with Comparator', () => <SelectFilterComparator />)
|
||||||
.add('MultiSelect Filter', () => <MultiSelectFilter />)
|
.add('MultiSelect Filter', () => <MultiSelectFilter />)
|
||||||
@@ -352,6 +358,7 @@ storiesOf('Sort Table', module)
|
|||||||
.add('Default Sort Table', () => <DefaultSortTable />)
|
.add('Default Sort Table', () => <DefaultSortTable />)
|
||||||
.add('Default Sort Direction Table', () => <DefaultSortDirectionTable />)
|
.add('Default Sort Direction Table', () => <DefaultSortDirectionTable />)
|
||||||
.add('Sort Events', () => <SortEvents />)
|
.add('Sort Events', () => <SortEvents />)
|
||||||
|
.add('Custom Sort Value', () => <CustomSortValue />)
|
||||||
.add('Custom Sort Fuction', () => <CustomSortTable />)
|
.add('Custom Sort Fuction', () => <CustomSortTable />)
|
||||||
.add('Custom Sort Caret', () => <CustomSortCaretTable />)
|
.add('Custom Sort Caret', () => <CustomSortCaretTable />)
|
||||||
.add('Custom Classes on Sorting Header Column', () => <HeaderSortingClassesTable />)
|
.add('Custom Classes on Sorting Header Column', () => <HeaderSortingClassesTable />)
|
||||||
@@ -417,7 +424,8 @@ storiesOf('Row Expand', module)
|
|||||||
.add('Custom Expand Indicator', () => <CustomExpandColumn />)
|
.add('Custom Expand Indicator', () => <CustomExpandColumn />)
|
||||||
.add('Expand Column Position', () => <ExpandColumnPosition />)
|
.add('Expand Column Position', () => <ExpandColumnPosition />)
|
||||||
.add('Expand Hooks', () => <ExpandHooks />)
|
.add('Expand Hooks', () => <ExpandHooks />)
|
||||||
.add('Custom Parent Row ClassName', () => <ParentRowClassName />);
|
.add('Custom Parent Row ClassName', () => <ParentRowClassName />)
|
||||||
|
.add('Custom Expanding Row ClassName', () => <ExpandingRowClassName />);
|
||||||
|
|
||||||
storiesOf('Pagination', module)
|
storiesOf('Pagination', module)
|
||||||
.addDecorator(bootstrapStyle())
|
.addDecorator(bootstrapStyle())
|
||||||
@@ -443,9 +451,11 @@ storiesOf('Table Search', module)
|
|||||||
.add('Clear Search Button', () => <ClearSearchButton />)
|
.add('Clear Search Button', () => <ClearSearchButton />)
|
||||||
.add('Default Search Table', () => <DefaultSearch />)
|
.add('Default Search Table', () => <DefaultSearch />)
|
||||||
.add('Default Custom Search', () => <DefaultCustomSearch />)
|
.add('Default Custom Search', () => <DefaultCustomSearch />)
|
||||||
|
.add('Searchable Column', () => <SearchableColumn />)
|
||||||
.add('Fully Custom Search', () => <FullyCustomSearch />)
|
.add('Fully Custom Search', () => <FullyCustomSearch />)
|
||||||
.add('Search Formatted Value', () => <SearchFormattedData />)
|
.add('Search Formatted Value', () => <SearchFormattedData />)
|
||||||
.add('Custom Search Value', () => <CustomSearchValue />);
|
.add('Custom Search Value', () => <CustomSearchValue />)
|
||||||
|
.add('Custom match function', () => <CustomMatchFunction />);
|
||||||
|
|
||||||
storiesOf('Column Toggle', module)
|
storiesOf('Column Toggle', module)
|
||||||
.addDecorator(bootstrapStyle())
|
.addDecorator(bootstrapStyle())
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
.parent-expand-foo {
|
.expanding-foo, .parent-expand-foo {
|
||||||
background-color: coral;
|
background-color: coral;
|
||||||
}
|
}
|
||||||
|
|
||||||
.parent-expand-bar {
|
.expanding-bar, .parent-expand-bar {
|
||||||
background-color: aqua;
|
background-color: aqua;
|
||||||
}
|
}
|
||||||
@@ -115,7 +115,9 @@ const qualityFilter = selectFilter({
|
|||||||
// omit...
|
// omit...
|
||||||
```
|
```
|
||||||
|
|
||||||
> Note, the selectOptions can be an array also:
|
> Note, the selectOptions can be an array or a function which return an array:
|
||||||
|
|
||||||
|
### Array as options
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const selectOptions = [
|
const selectOptions = [
|
||||||
@@ -133,6 +135,24 @@ const columns = [
|
|||||||
})
|
})
|
||||||
}];
|
}];
|
||||||
```
|
```
|
||||||
|
### Function as options
|
||||||
|
|
||||||
|
```js
|
||||||
|
const selectOptions = [
|
||||||
|
{ value: 0, label: 'good' },
|
||||||
|
{ value: 1, label: 'Bad' },
|
||||||
|
{ value: 2, label: 'unknown' }
|
||||||
|
];
|
||||||
|
const columns = [
|
||||||
|
..., {
|
||||||
|
dataField: 'quality',
|
||||||
|
text: 'Product Quailty',
|
||||||
|
formatter: cell => selectOptions.find(opt => opt.value === cell).label,
|
||||||
|
filter: selectFilter({
|
||||||
|
options: () => selectOptions
|
||||||
|
})
|
||||||
|
}];
|
||||||
|
```
|
||||||
|
|
||||||
The benifit is `react-bootstrap-table2` will render the select options by the order of array.
|
The benifit is `react-bootstrap-table2` will render the select options by the order of array.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-filter",
|
"name": "react-bootstrap-table2-filter",
|
||||||
"version": "1.1.11",
|
"version": "1.2.0",
|
||||||
"description": "it's a column filter addon for react-bootstrap-table2",
|
"description": "it's a column filter addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* eslint react/require-default-props: 0 */
|
/* eslint react/require-default-props: 0 */
|
||||||
/* eslint no-return-assign: 0 */
|
/* eslint no-return-assign: 0 */
|
||||||
/* eslint react/no-unused-prop-types: 0 */
|
/* eslint react/no-unused-prop-types: 0 */
|
||||||
|
/* eslint class-methods-use-this: 0 */
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { LIKE, EQ } from '../comparison';
|
import { LIKE, EQ } from '../comparison';
|
||||||
@@ -44,7 +45,8 @@ class SelectFilter extends Component {
|
|||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.filter = this.filter.bind(this);
|
this.filter = this.filter.bind(this);
|
||||||
const isSelected = getOptionValue(props.options, this.getDefaultValue()) !== undefined;
|
this.options = this.getOptions(props);
|
||||||
|
const isSelected = getOptionValue(this.options, this.getDefaultValue()) !== undefined;
|
||||||
this.state = { isSelected };
|
this.state = { isSelected };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -69,19 +71,30 @@ class SelectFilter extends Component {
|
|||||||
|
|
||||||
componentDidUpdate(prevProps) {
|
componentDidUpdate(prevProps) {
|
||||||
let needFilter = false;
|
let needFilter = false;
|
||||||
if (this.props.defaultValue !== prevProps.defaultValue) {
|
const {
|
||||||
|
column,
|
||||||
|
onFilter,
|
||||||
|
defaultValue
|
||||||
|
} = this.props;
|
||||||
|
const nextOptions = this.getOptions(this.props);
|
||||||
|
if (defaultValue !== prevProps.defaultValue) {
|
||||||
needFilter = true;
|
needFilter = true;
|
||||||
} else if (!optionsEquals(this.props.options, prevProps.options)) {
|
} else if (!optionsEquals(nextOptions, this.options)) {
|
||||||
|
this.options = nextOptions;
|
||||||
needFilter = true;
|
needFilter = true;
|
||||||
}
|
}
|
||||||
if (needFilter) {
|
if (needFilter) {
|
||||||
const value = this.selectInput.value;
|
const value = this.selectInput.value;
|
||||||
if (value) {
|
if (value) {
|
||||||
this.props.onFilter(this.props.column, FILTER_TYPE.SELECT)(value);
|
onFilter(column, FILTER_TYPE.SELECT)(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getOptions(props) {
|
||||||
|
return typeof props.options === 'function' ? props.options(props.column) : props.options;
|
||||||
|
}
|
||||||
|
|
||||||
getDefaultValue() {
|
getDefaultValue() {
|
||||||
const { filterState, defaultValue } = this.props;
|
const { filterState, defaultValue } = this.props;
|
||||||
if (filterState && typeof filterState.filterVal !== 'undefined') {
|
if (filterState && typeof filterState.filterVal !== 'undefined') {
|
||||||
@@ -90,25 +103,6 @@ class SelectFilter extends Component {
|
|||||||
return defaultValue;
|
return defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
getOptions() {
|
|
||||||
const optionTags = [];
|
|
||||||
const { options, placeholder, column, withoutEmptyOption } = this.props;
|
|
||||||
if (!withoutEmptyOption) {
|
|
||||||
optionTags.push((
|
|
||||||
<option key="-1" value="">{ placeholder || `Select ${column.text}...` }</option>
|
|
||||||
));
|
|
||||||
}
|
|
||||||
if (Array.isArray(options)) {
|
|
||||||
options.forEach(({ value, label }) =>
|
|
||||||
optionTags.push(<option key={ value } value={ value }>{ label }</option>));
|
|
||||||
} else {
|
|
||||||
Object.keys(options).forEach(key =>
|
|
||||||
optionTags.push(<option key={ key } value={ key }>{ options[key] }</option>)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return optionTags;
|
|
||||||
}
|
|
||||||
|
|
||||||
cleanFiltered() {
|
cleanFiltered() {
|
||||||
const value = (this.props.defaultValue !== undefined) ? this.props.defaultValue : '';
|
const value = (this.props.defaultValue !== undefined) ? this.props.defaultValue : '';
|
||||||
this.setState(() => ({ isSelected: value !== '' }));
|
this.setState(() => ({ isSelected: value !== '' }));
|
||||||
@@ -128,6 +122,26 @@ class SelectFilter extends Component {
|
|||||||
this.props.onFilter(this.props.column, FILTER_TYPE.SELECT)(value);
|
this.props.onFilter(this.props.column, FILTER_TYPE.SELECT)(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderOptions() {
|
||||||
|
const optionTags = [];
|
||||||
|
const { options } = this;
|
||||||
|
const { placeholder, column, withoutEmptyOption } = this.props;
|
||||||
|
if (!withoutEmptyOption) {
|
||||||
|
optionTags.push((
|
||||||
|
<option key="-1" value="">{ placeholder || `Select ${column.text}...` }</option>
|
||||||
|
));
|
||||||
|
}
|
||||||
|
if (Array.isArray(options)) {
|
||||||
|
options.forEach(({ value, label }) =>
|
||||||
|
optionTags.push(<option key={ value } value={ value }>{ label }</option>));
|
||||||
|
} else {
|
||||||
|
Object.keys(options).forEach(key =>
|
||||||
|
optionTags.push(<option key={ key } value={ key }>{ options[key] }</option>)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return optionTags;
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
style,
|
style,
|
||||||
@@ -163,7 +177,7 @@ class SelectFilter extends Component {
|
|||||||
onClick={ e => e.stopPropagation() }
|
onClick={ e => e.stopPropagation() }
|
||||||
defaultValue={ this.getDefaultValue() || '' }
|
defaultValue={ this.getDefaultValue() || '' }
|
||||||
>
|
>
|
||||||
{ this.getOptions() }
|
{ this.renderOptions() }
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* eslint react/require-default-props: 0 */
|
/* eslint react/require-default-props: 0 */
|
||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
/* eslint no-return-assign: 0 */
|
/* eslint no-return-assign: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { PropTypes } from 'prop-types';
|
import { PropTypes } from 'prop-types';
|
||||||
|
|
||||||
@@ -41,16 +42,16 @@ class TextFilter extends Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillUnmount() {
|
||||||
|
this.cleanTimer();
|
||||||
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.defaultValue !== this.props.defaultValue) {
|
if (nextProps.defaultValue !== this.props.defaultValue) {
|
||||||
this.applyFilter(nextProps.defaultValue);
|
this.applyFilter(nextProps.defaultValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
|
||||||
this.cleanTimer();
|
|
||||||
}
|
|
||||||
|
|
||||||
filter(e) {
|
filter(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
this.cleanTimer();
|
this.cleanTimer();
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
/* eslint react/require-default-props: 0 */
|
/* eslint react/require-default-props: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
@@ -37,15 +38,6 @@ export default (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
|
||||||
// let nextData = nextProps.data;
|
|
||||||
if (!isRemoteFiltering() && !_.isEqual(nextProps.data, this.data)) {
|
|
||||||
this.doFilter(nextProps, this.isEmitDataChange);
|
|
||||||
} else {
|
|
||||||
this.data = nextProps.data;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onFilter(column, filterType, initialize = false) {
|
onFilter(column, filterType, initialize = false) {
|
||||||
return (filterVal) => {
|
return (filterVal) => {
|
||||||
// watch out here if migration to context API, #334
|
// watch out here if migration to context API, #334
|
||||||
@@ -90,6 +82,15 @@ export default (
|
|||||||
return this.data;
|
return this.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
// let nextData = nextProps.data;
|
||||||
|
if (!isRemoteFiltering() && !_.isEqual(nextProps.data, this.data)) {
|
||||||
|
this.doFilter(nextProps, this.isEmitDataChange);
|
||||||
|
} else {
|
||||||
|
this.data = nextProps.data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
doFilter(props, ignoreEmitDataChange = false) {
|
doFilter(props, ignoreEmitDataChange = false) {
|
||||||
const { dataChangeListener, data, columns } = props;
|
const { dataChangeListener, data, columns } = props;
|
||||||
const result = filters(data, columns, _)(this.currFilters);
|
const result = filters(data, columns, _)(this.currFilters);
|
||||||
|
|||||||
@@ -234,6 +234,7 @@ export const filters = (data, columns, _) => (currFilters) => {
|
|||||||
let result = data;
|
let result = data;
|
||||||
let filterFn;
|
let filterFn;
|
||||||
Object.keys(currFilters).forEach((dataField) => {
|
Object.keys(currFilters).forEach((dataField) => {
|
||||||
|
let currentResult;
|
||||||
const filterObj = currFilters[dataField];
|
const filterObj = currFilters[dataField];
|
||||||
filterFn = factory(filterObj.filterType);
|
filterFn = factory(filterObj.filterType);
|
||||||
let filterValue;
|
let filterValue;
|
||||||
@@ -248,9 +249,12 @@ export const filters = (data, columns, _) => (currFilters) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (customFilter) {
|
if (customFilter) {
|
||||||
result = customFilter(filterObj.filterVal, result);
|
currentResult = customFilter(filterObj.filterVal, result);
|
||||||
} else {
|
}
|
||||||
|
if (typeof currentResult === 'undefined') {
|
||||||
result = filterFn(result, dataField, filterObj, filterValue);
|
result = filterFn(result, dataField, filterObj, filterValue);
|
||||||
|
} else {
|
||||||
|
result = currentResult;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ describe('Text Filter', () => {
|
|||||||
<TextFilter onFilter={ onFilter } column={ column } />
|
<TextFilter onFilter={ onFilter } column={ column } />
|
||||||
);
|
);
|
||||||
instance = wrapper.instance();
|
instance = wrapper.instance();
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should setting state correctly when props.defaultValue is changed', () => {
|
it('should setting state correctly when props.defaultValue is changed', () => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-paginator",
|
"name": "react-bootstrap-table2-paginator",
|
||||||
"version": "2.0.8",
|
"version": "2.1.0",
|
||||||
"description": "it's the pagination addon for react-bootstrap-table2",
|
"description": "it's the pagination addon for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -21,8 +21,9 @@ class PaginationDataProvider extends Provider {
|
|||||||
isRemotePagination: PropTypes.func.isRequired
|
isRemotePagination: PropTypes.func.isRequired
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
// eslint-disable-next-line camelcase, react/sort-comp
|
||||||
super.componentWillReceiveProps(nextProps);
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
super.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
const { currSizePerPage } = this;
|
const { currSizePerPage } = this;
|
||||||
const { custom, onPageChange } = nextProps.pagination.options;
|
const { custom, onPageChange } = nextProps.pagination.options;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
import pageResolver from './page-resolver';
|
import pageResolver from './page-resolver';
|
||||||
@@ -12,7 +13,7 @@ export default WrappedComponent =>
|
|||||||
this.state = this.initialState();
|
this.state = this.initialState();
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
const { dataSize, currSizePerPage } = nextProps;
|
const { dataSize, currSizePerPage } = nextProps;
|
||||||
if (currSizePerPage !== this.props.currSizePerPage || dataSize !== this.props.dataSize) {
|
if (currSizePerPage !== this.props.currSizePerPage || dataSize !== this.props.dataSize) {
|
||||||
const totalPages = this.calculateTotalPage(currSizePerPage, dataSize);
|
const totalPages = this.calculateTotalPage(currSizePerPage, dataSize);
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
/* eslint react/require-default-props: 0 */
|
/* eslint react/require-default-props: 0 */
|
||||||
/* eslint no-lonely-if: 0 */
|
/* eslint no-lonely-if: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import EventEmitter from 'events';
|
import EventEmitter from 'events';
|
||||||
import Const from './const';
|
import Const from './const';
|
||||||
@@ -45,23 +46,6 @@ class StateProvider extends React.Component {
|
|||||||
this.dataChangeListener.on('filterChanged', this.handleDataSizeChange);
|
this.dataChangeListener.on('filterChanged', this.handleDataSizeChange);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
|
||||||
const { custom } = nextProps.pagination.options;
|
|
||||||
|
|
||||||
// user should align the page when the page is not fit to the data size when remote enable
|
|
||||||
if (this.isRemotePagination() || custom) {
|
|
||||||
if (typeof nextProps.pagination.options.page !== 'undefined') {
|
|
||||||
this.currPage = nextProps.pagination.options.page;
|
|
||||||
}
|
|
||||||
if (typeof nextProps.pagination.options.sizePerPage !== 'undefined') {
|
|
||||||
this.currSizePerPage = nextProps.pagination.options.sizePerPage;
|
|
||||||
}
|
|
||||||
if (typeof nextProps.pagination.options.totalSize !== 'undefined') {
|
|
||||||
this.dataSize = nextProps.pagination.options.totalSize;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getPaginationProps = () => {
|
getPaginationProps = () => {
|
||||||
const { pagination: { options }, bootstrap4 } = this.props;
|
const { pagination: { options }, bootstrap4 } = this.props;
|
||||||
const { currPage, currSizePerPage, dataSize } = this;
|
const { currPage, currSizePerPage, dataSize } = this;
|
||||||
@@ -113,6 +97,23 @@ class StateProvider extends React.Component {
|
|||||||
|
|
||||||
getPaginationRemoteEmitter = () => this.remoteEmitter || this.props.remoteEmitter;
|
getPaginationRemoteEmitter = () => this.remoteEmitter || this.props.remoteEmitter;
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
const { custom } = nextProps.pagination.options;
|
||||||
|
|
||||||
|
// user should align the page when the page is not fit to the data size when remote enable
|
||||||
|
if (this.isRemotePagination() || custom) {
|
||||||
|
if (typeof nextProps.pagination.options.page !== 'undefined') {
|
||||||
|
this.currPage = nextProps.pagination.options.page;
|
||||||
|
}
|
||||||
|
if (typeof nextProps.pagination.options.sizePerPage !== 'undefined') {
|
||||||
|
this.currSizePerPage = nextProps.pagination.options.sizePerPage;
|
||||||
|
}
|
||||||
|
if (typeof nextProps.pagination.options.totalSize !== 'undefined') {
|
||||||
|
this.dataSize = nextProps.pagination.options.totalSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
isRemotePagination = () => {
|
isRemotePagination = () => {
|
||||||
const e = {};
|
const e = {};
|
||||||
this.remoteEmitter.emit('isRemotePagination', e);
|
this.remoteEmitter.emit('isRemotePagination', e);
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ describe('PaginationDataContext', () => {
|
|||||||
data: [],
|
data: [],
|
||||||
pagination: { ...defaultPagination }
|
pagination: { ...defaultPagination }
|
||||||
};
|
};
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should reset currPage to first page', () => {
|
it('should reset currPage to first page', () => {
|
||||||
@@ -195,7 +195,7 @@ describe('PaginationDataContext', () => {
|
|||||||
data: [],
|
data: [],
|
||||||
pagination: { ...defaultPagination, options: { onPageChange } }
|
pagination: { ...defaultPagination, options: { onPageChange } }
|
||||||
};
|
};
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should call options.onPageChange correctly', () => {
|
it('should call options.onPageChange correctly', () => {
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ describe('paginationHandler', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should setting correct state.totalPages', () => {
|
it('should setting correct state.totalPages', () => {
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
expect(instance.state.totalPages).toEqual(
|
expect(instance.state.totalPages).toEqual(
|
||||||
instance.calculateTotalPage(nextProps.currSizePerPage));
|
instance.calculateTotalPage(nextProps.currSizePerPage));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should setting correct state.lastPage', () => {
|
it('should setting correct state.lastPage', () => {
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
const totalPages = instance.calculateTotalPage(nextProps.currSizePerPage);
|
const totalPages = instance.calculateTotalPage(nextProps.currSizePerPage);
|
||||||
expect(instance.state.lastPage).toEqual(
|
expect(instance.state.lastPage).toEqual(
|
||||||
instance.calculateLastPage(totalPages));
|
instance.calculateLastPage(totalPages));
|
||||||
@@ -186,13 +186,13 @@ describe('paginationHandler', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should setting correct state.totalPages', () => {
|
it('should setting correct state.totalPages', () => {
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
expect(instance.state.totalPages).toEqual(
|
expect(instance.state.totalPages).toEqual(
|
||||||
instance.calculateTotalPage(nextProps.currSizePerPage, nextProps.dataSize));
|
instance.calculateTotalPage(nextProps.currSizePerPage, nextProps.dataSize));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should setting correct state.lastPage', () => {
|
it('should setting correct state.lastPage', () => {
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
const totalPages = instance.calculateTotalPage(
|
const totalPages = instance.calculateTotalPage(
|
||||||
nextProps.currSizePerPage, nextProps.dataSize);
|
nextProps.currSizePerPage, nextProps.dataSize);
|
||||||
expect(instance.state.lastPage).toEqual(
|
expect(instance.state.lastPage).toEqual(
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ describe('PaginationStateContext', () => {
|
|||||||
data,
|
data,
|
||||||
pagination: { ...defaultPagination, options: { page: 3, sizePerPage: 5, totalSize: 50 } }
|
pagination: { ...defaultPagination, options: { page: 3, sizePerPage: 5, totalSize: 50 } }
|
||||||
};
|
};
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should always reset currPage and currSizePerPage', () => {
|
it('should always reset currPage and currSizePerPage', () => {
|
||||||
@@ -181,7 +181,7 @@ describe('PaginationStateContext', () => {
|
|||||||
options: { page: 3, sizePerPage: 5, custom: true, totalSize: 50 }
|
options: { page: 3, sizePerPage: 5, custom: true, totalSize: 50 }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
instance.componentWillReceiveProps(nextProps);
|
instance.UNSAFE_componentWillReceiveProps(nextProps);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should always reset currPage and currSizePerPage', () => {
|
it('should always reset currPage and currSizePerPage', () => {
|
||||||
|
|||||||
@@ -98,6 +98,33 @@ Accept a string that will be used for default searching when first time table re
|
|||||||
</ToolkitProvider>
|
</ToolkitProvider>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### onColumnMatch - [function]
|
||||||
|
Acccpt a function which will be called when table try to match every cells when search happening. This function accept an object like below example:
|
||||||
|
|
||||||
|
```js
|
||||||
|
function onColumnMatch({
|
||||||
|
searchText,
|
||||||
|
value,
|
||||||
|
column,
|
||||||
|
row
|
||||||
|
}) {
|
||||||
|
// implement your custom match logic on every cell value
|
||||||
|
}
|
||||||
|
|
||||||
|
<ToolkitProvider
|
||||||
|
keyField="id"
|
||||||
|
data={ products }
|
||||||
|
columns={ columns }
|
||||||
|
search={ {
|
||||||
|
onColumnMatch
|
||||||
|
} }
|
||||||
|
>
|
||||||
|
// ...
|
||||||
|
</ToolkitProvider>
|
||||||
|
```
|
||||||
|
|
||||||
|
> Notes: You have to return `true` when your match logic is positive and vice versa.
|
||||||
|
|
||||||
#### searchFormatted - [bool]
|
#### searchFormatted - [bool]
|
||||||
If you want to search on the formatted data, you are supposed to enable this props. `react-bootstrap-table2` will check if you define the `column.formatter` when doing search.
|
If you want to search on the formatted data, you are supposed to enable this props. `react-bootstrap-table2` will check if you define the `column.formatter` when doing search.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table2-toolkit",
|
"name": "react-bootstrap-table2-toolkit",
|
||||||
"version": "2.0.1",
|
"version": "2.1.0",
|
||||||
"description": "The toolkit for react-bootstrap-table2",
|
"description": "The toolkit for react-bootstrap-table2",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
/* eslint no-return-assign: 0 */
|
/* eslint no-return-assign: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
@@ -34,10 +35,6 @@ class SearchBar extends React.Component {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
|
||||||
this.setState({ value: nextProps.searchText });
|
|
||||||
}
|
|
||||||
|
|
||||||
onChangeValue = (e) => {
|
onChangeValue = (e) => {
|
||||||
this.setState({ value: e.target.value });
|
this.setState({ value: e.target.value });
|
||||||
}
|
}
|
||||||
@@ -50,6 +47,10 @@ class SearchBar extends React.Component {
|
|||||||
debounceCallback();
|
debounceCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
this.setState({ value: nextProps.searchText });
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
className,
|
className,
|
||||||
|
|||||||
@@ -3,11 +3,13 @@
|
|||||||
/* eslint no-continue: 0 */
|
/* eslint no-continue: 0 */
|
||||||
/* eslint no-lonely-if: 0 */
|
/* eslint no-lonely-if: 0 */
|
||||||
/* eslint class-methods-use-this: 0 */
|
/* eslint class-methods-use-this: 0 */
|
||||||
|
/* eslint camelcase: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
export default (options = {
|
export default (options = {
|
||||||
searchFormatted: false
|
searchFormatted: false,
|
||||||
|
onColumnMatch: null
|
||||||
}) => (
|
}) => (
|
||||||
_,
|
_,
|
||||||
isRemoteSearch,
|
isRemoteSearch,
|
||||||
@@ -35,7 +37,17 @@ export default (options = {
|
|||||||
this.state = { data: initialData };
|
this.state = { data: initialData };
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
getSearched() {
|
||||||
|
return this.state.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
triggerListener(result) {
|
||||||
|
if (this.props.dataChangeListener) {
|
||||||
|
this.props.dataChangeListener.emit('filterChanged', result.length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.searchText !== this.props.searchText) {
|
if (nextProps.searchText !== this.props.searchText) {
|
||||||
if (isRemoteSearch()) {
|
if (isRemoteSearch()) {
|
||||||
handleRemoteSearchChange(nextProps.searchText);
|
handleRemoteSearchChange(nextProps.searchText);
|
||||||
@@ -59,16 +71,6 @@ export default (options = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getSearched() {
|
|
||||||
return this.state.data;
|
|
||||||
}
|
|
||||||
|
|
||||||
triggerListener(result) {
|
|
||||||
if (this.props.dataChangeListener) {
|
|
||||||
this.props.dataChangeListener.emit('filterChanged', result.length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
search(props) {
|
search(props) {
|
||||||
const { data, columns } = props;
|
const { data, columns } = props;
|
||||||
const searchText = props.searchText.toLowerCase();
|
const searchText = props.searchText.toLowerCase();
|
||||||
@@ -82,6 +84,16 @@ export default (options = {
|
|||||||
} else if (column.filterValue) {
|
} else if (column.filterValue) {
|
||||||
targetValue = column.filterValue(targetValue, row);
|
targetValue = column.filterValue(targetValue, row);
|
||||||
}
|
}
|
||||||
|
if (options.onColumnMatch) {
|
||||||
|
if (options.onColumnMatch({
|
||||||
|
searchText,
|
||||||
|
value: targetValue,
|
||||||
|
column,
|
||||||
|
row
|
||||||
|
})) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
if (targetValue !== null && typeof targetValue !== 'undefined') {
|
if (targetValue !== null && typeof targetValue !== 'undefined') {
|
||||||
targetValue = targetValue.toString().toLowerCase();
|
targetValue = targetValue.toString().toLowerCase();
|
||||||
if (targetValue.indexOf(searchText) > -1) {
|
if (targetValue.indexOf(searchText) > -1) {
|
||||||
@@ -89,6 +101,7 @@ export default (options = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-bootstrap-table-next",
|
"name": "react-bootstrap-table-next",
|
||||||
"version": "3.1.8",
|
"version": "3.2.1",
|
||||||
"description": "Next generation of react-bootstrap-table",
|
"description": "Next generation of react-bootstrap-table",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
/* eslint arrow-body-style: 0 */
|
/* eslint arrow-body-style: 0 */
|
||||||
|
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
@@ -18,7 +19,7 @@ class BootstrapTable extends PropsBaseResolver(Component) {
|
|||||||
this.validateProps();
|
this.validateProps();
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.onDataSizeChange && !nextProps.pagination) {
|
if (nextProps.onDataSizeChange && !nextProps.pagination) {
|
||||||
if (nextProps.data.length !== this.props.data.length) {
|
if (nextProps.data.length !== this.props.data.length) {
|
||||||
nextProps.onDataSizeChange({ dataSize: nextProps.data.length });
|
nextProps.onDataSizeChange({ dataSize: nextProps.data.length });
|
||||||
@@ -191,6 +192,7 @@ BootstrapTable.propTypes = {
|
|||||||
Const.INDICATOR_POSITION_LEFT,
|
Const.INDICATOR_POSITION_LEFT,
|
||||||
Const.INDICATOR_POSITION_RIGHT
|
Const.INDICATOR_POSITION_RIGHT
|
||||||
]),
|
]),
|
||||||
|
className: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),
|
||||||
parentClassName: PropTypes.oneOfType([PropTypes.string, PropTypes.func])
|
parentClassName: PropTypes.oneOfType([PropTypes.string, PropTypes.func])
|
||||||
}),
|
}),
|
||||||
rowStyle: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
|
rowStyle: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ export default ExtendBase =>
|
|||||||
|
|
||||||
createDefaultEventHandler(cb) {
|
createDefaultEventHandler(cb) {
|
||||||
return (e) => {
|
return (e) => {
|
||||||
const { column, columnIndex } = this.props;
|
const { column, columnIndex, index } = this.props;
|
||||||
cb(e, column, columnIndex);
|
cb(e, column, typeof columnIndex !== 'undefined' ? columnIndex : index);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
1
packages/react-bootstrap-table2/src/cell.js
vendored
1
packages/react-bootstrap-table2/src/cell.js
vendored
@@ -28,6 +28,7 @@ class Cell extends eventDelegater(Component) {
|
|||||||
shouldUpdate =
|
shouldUpdate =
|
||||||
(nextProps.column.formatter ? !_.isEqual(this.props.row, nextProps.row) : false) ||
|
(nextProps.column.formatter ? !_.isEqual(this.props.row, nextProps.row) : false) ||
|
||||||
this.props.column.hidden !== nextProps.column.hidden ||
|
this.props.column.hidden !== nextProps.column.hidden ||
|
||||||
|
this.props.column.isDummyField !== nextProps.column.isDummyField ||
|
||||||
this.props.rowIndex !== nextProps.rowIndex ||
|
this.props.rowIndex !== nextProps.rowIndex ||
|
||||||
this.props.columnIndex !== nextProps.columnIndex ||
|
this.props.columnIndex !== nextProps.columnIndex ||
|
||||||
this.props.className !== nextProps.className ||
|
this.props.className !== nextProps.className ||
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
@@ -12,10 +13,6 @@ export default () => {
|
|||||||
|
|
||||||
state = { data: this.props.data };
|
state = { data: this.props.data };
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
|
||||||
this.setState(() => ({ data: nextProps.data }));
|
|
||||||
}
|
|
||||||
|
|
||||||
getData = (filterProps, searchProps, sortProps, paginationProps) => {
|
getData = (filterProps, searchProps, sortProps, paginationProps) => {
|
||||||
if (paginationProps) return paginationProps.data;
|
if (paginationProps) return paginationProps.data;
|
||||||
else if (sortProps) return sortProps.data;
|
else if (sortProps) return sortProps.data;
|
||||||
@@ -24,6 +21,10 @@ export default () => {
|
|||||||
return this.props.data;
|
return this.props.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
this.setState(() => ({ data: nextProps.data }));
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<DataContext.Provider
|
<DataContext.Provider
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
/* eslint no-return-assign: 0 */
|
/* eslint no-return-assign: 0 */
|
||||||
/* eslint no-param-reassign: 0 */
|
/* eslint no-param-reassign: 0 */
|
||||||
/* eslint class-methods-use-this: 0 */
|
/* eslint class-methods-use-this: 0 */
|
||||||
@@ -83,7 +84,7 @@ const withContext = Base =>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (!nextProps.pagination && this.props.pagination) {
|
if (!nextProps.pagination && this.props.pagination) {
|
||||||
this.PaginationContext = null;
|
this.PaginationContext = null;
|
||||||
}
|
}
|
||||||
@@ -91,6 +92,13 @@ const withContext = Base =>
|
|||||||
this.PaginationContext = nextProps.pagination.createContext(
|
this.PaginationContext = nextProps.pagination.createContext(
|
||||||
this.isRemotePagination, this.handleRemotePageChange);
|
this.isRemotePagination, this.handleRemotePageChange);
|
||||||
}
|
}
|
||||||
|
if (!nextProps.cellEdit && this.props.cellEdit) {
|
||||||
|
this.CellEditContext = null;
|
||||||
|
}
|
||||||
|
if (nextProps.cellEdit && !this.props.cellEdit) {
|
||||||
|
this.CellEditContext = nextProps.cellEdit.createContext(
|
||||||
|
_, dataOperator, this.isRemoteCellEdit, this.handleRemoteCellChange);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
renderBase() {
|
renderBase() {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
@@ -16,7 +17,11 @@ class RowExpandProvider extends React.Component {
|
|||||||
state = { expanded: this.props.expandRow.expanded || [],
|
state = { expanded: this.props.expandRow.expanded || [],
|
||||||
isClosing: this.props.expandRow.isClosing || [] };
|
isClosing: this.props.expandRow.isClosing || [] };
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
onClosed = (closedRow) => {
|
||||||
|
this.setState({ isClosing: this.state.isClosing.filter(value => value !== closedRow) });
|
||||||
|
};
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
if (nextProps.expandRow) {
|
if (nextProps.expandRow) {
|
||||||
const nextExpanded = nextProps.expandRow.expanded || this.state.expanded;
|
const nextExpanded = nextProps.expandRow.expanded || this.state.expanded;
|
||||||
const isClosing = this.state.expanded.reduce((acc, cur) => {
|
const isClosing = this.state.expanded.reduce((acc, cur) => {
|
||||||
@@ -36,10 +41,6 @@ class RowExpandProvider extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onClosed = (closedRow) => {
|
|
||||||
this.setState({ isClosing: this.state.isClosing.filter(value => value !== closedRow) });
|
|
||||||
};
|
|
||||||
|
|
||||||
handleRowExpand = (rowKey, expanded, rowIndex, e) => {
|
handleRowExpand = (rowKey, expanded, rowIndex, e) => {
|
||||||
const { data, keyField, expandRow: { onExpand, onlyOneExpanding, nonExpandable } } = this.props;
|
const { data, keyField, expandRow: { onExpand, onlyOneExpanding, nonExpandable } } = this.props;
|
||||||
if (nonExpandable && _.contains(nonExpandable, rowKey)) {
|
if (nonExpandable && _.contains(nonExpandable, rowKey)) {
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
|
/* eslint camelcase: 0 */
|
||||||
/* eslint react/prop-types: 0 */
|
/* eslint react/prop-types: 0 */
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import Const from '../const';
|
import Const from '../const';
|
||||||
|
import _ from '../utils';
|
||||||
|
|
||||||
import dataOperator from '../store/operators';
|
import dataOperator from '../store/operators';
|
||||||
import { getSelectionSummary } from '../store/selection';
|
import { getSelectionSummary } from '../store/selection';
|
||||||
@@ -19,17 +21,17 @@ class SelectionProvider extends React.Component {
|
|||||||
this.selected = props.selectRow.selected || [];
|
this.selected = props.selectRow.selected || [];
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
|
||||||
if (nextProps.selectRow) {
|
|
||||||
this.selected = nextProps.selectRow.selected || this.selected;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// exposed API
|
// exposed API
|
||||||
getSelected() {
|
getSelected() {
|
||||||
return this.selected;
|
return this.selected;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
|
if (nextProps.selectRow) {
|
||||||
|
this.selected = nextProps.selectRow.selected || this.selected;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
handleRowSelect = (rowKey, checked, rowIndex, e) => {
|
handleRowSelect = (rowKey, checked, rowIndex, e) => {
|
||||||
const { data, keyField, selectRow: { mode, onSelect } } = this.props;
|
const { data, keyField, selectRow: { mode, onSelect } } = this.props;
|
||||||
const { ROW_SELECT_SINGLE } = Const;
|
const { ROW_SELECT_SINGLE } = Const;
|
||||||
@@ -71,7 +73,7 @@ class SelectionProvider extends React.Component {
|
|||||||
if (!isUnSelect) {
|
if (!isUnSelect) {
|
||||||
currSelected = selected.concat(dataOperator.selectableKeys(data, keyField, nonSelectable));
|
currSelected = selected.concat(dataOperator.selectableKeys(data, keyField, nonSelectable));
|
||||||
} else {
|
} else {
|
||||||
currSelected = selected.filter(s => typeof data.find(d => d[keyField] === s) === 'undefined');
|
currSelected = selected.filter(s => typeof data.find(d => _.get(d, keyField) === s) === 'undefined');
|
||||||
}
|
}
|
||||||
|
|
||||||
let result;
|
let result;
|
||||||
|
|||||||
@@ -4,9 +4,11 @@ import cs from 'classnames';
|
|||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
import _ from './utils';
|
import _ from './utils';
|
||||||
|
import eventDelegater from './cell-event-delegater';
|
||||||
|
|
||||||
const FooterCell = (props) => {
|
class FooterCell extends eventDelegater(React.Component) {
|
||||||
const { index, column, columnData } = props;
|
render() {
|
||||||
|
const { index, column, columnData } = this.props;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
footer,
|
footer,
|
||||||
@@ -19,11 +21,13 @@ const FooterCell = (props) => {
|
|||||||
footerAttrs
|
footerAttrs
|
||||||
} = column;
|
} = column;
|
||||||
|
|
||||||
|
const delegateEvents = this.delegate(footerEvents);
|
||||||
const cellAttrs = {
|
const cellAttrs = {
|
||||||
...(_.isFunction(footerAttrs) ? footerAttrs(column, index) : footerAttrs),
|
...(_.isFunction(footerAttrs) ? footerAttrs(column, index) : footerAttrs),
|
||||||
...footerEvents
|
...delegateEvents
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
let text = '';
|
let text = '';
|
||||||
if (_.isString(footer)) {
|
if (_.isString(footer)) {
|
||||||
text = footer;
|
text = footer;
|
||||||
@@ -53,7 +57,8 @@ const FooterCell = (props) => {
|
|||||||
const children = footerFormatter ? footerFormatter(column, index) : text;
|
const children = footerFormatter ? footerFormatter(column, index) : text;
|
||||||
|
|
||||||
return React.createElement('th', cellAttrs, children);
|
return React.createElement('th', cellAttrs, children);
|
||||||
};
|
}
|
||||||
|
}
|
||||||
|
|
||||||
FooterCell.propTypes = {
|
FooterCell.propTypes = {
|
||||||
columnData: PropTypes.array,
|
columnData: PropTypes.array,
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ import Const from './const';
|
|||||||
import SortSymbol from './sort/symbol';
|
import SortSymbol from './sort/symbol';
|
||||||
import SortCaret from './sort/caret';
|
import SortCaret from './sort/caret';
|
||||||
import _ from './utils';
|
import _ from './utils';
|
||||||
|
import eventDelegater from './cell-event-delegater';
|
||||||
|
|
||||||
|
|
||||||
const HeaderCell = (props) => {
|
class HeaderCell extends eventDelegater(React.Component) {
|
||||||
|
render() {
|
||||||
const {
|
const {
|
||||||
column,
|
column,
|
||||||
index,
|
index,
|
||||||
@@ -20,7 +22,7 @@ const HeaderCell = (props) => {
|
|||||||
onFilter,
|
onFilter,
|
||||||
currFilters,
|
currFilters,
|
||||||
onExternalFilter
|
onExternalFilter
|
||||||
} = props;
|
} = this.props;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
text,
|
text,
|
||||||
@@ -39,10 +41,16 @@ const HeaderCell = (props) => {
|
|||||||
headerSortingStyle
|
headerSortingStyle
|
||||||
} = column;
|
} = column;
|
||||||
|
|
||||||
|
const delegateEvents = this.delegate(headerEvents);
|
||||||
|
|
||||||
|
const customAttrs = _.isFunction(headerAttrs)
|
||||||
|
? headerAttrs(column, index)
|
||||||
|
: (headerAttrs || {});
|
||||||
|
|
||||||
const cellAttrs = {
|
const cellAttrs = {
|
||||||
..._.isFunction(headerAttrs) ? headerAttrs(column, index) : headerAttrs,
|
...customAttrs,
|
||||||
...headerEvents,
|
...delegateEvents,
|
||||||
tabIndex: 0
|
tabIndex: _.isDefined(customAttrs.tabIndex) ? customAttrs.tabIndex : 0
|
||||||
};
|
};
|
||||||
|
|
||||||
let sortSymbol;
|
let sortSymbol;
|
||||||
@@ -119,7 +127,8 @@ const HeaderCell = (props) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return React.createElement('th', cellAttrs, children, sortSymbol, filterElm);
|
return React.createElement('th', cellAttrs, children, sortSymbol, filterElm);
|
||||||
};
|
}
|
||||||
|
}
|
||||||
|
|
||||||
HeaderCell.propTypes = {
|
HeaderCell.propTypes = {
|
||||||
column: PropTypes.shape({
|
column: PropTypes.shape({
|
||||||
@@ -161,7 +170,8 @@ HeaderCell.propTypes = {
|
|||||||
validator: PropTypes.func,
|
validator: PropTypes.func,
|
||||||
filter: PropTypes.object,
|
filter: PropTypes.object,
|
||||||
filterRenderer: PropTypes.func,
|
filterRenderer: PropTypes.func,
|
||||||
filterValue: PropTypes.func
|
filterValue: PropTypes.func,
|
||||||
|
searchable: PropTypes.bool
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
index: PropTypes.number.isRequired,
|
index: PropTypes.number.isRequired,
|
||||||
onSort: PropTypes.func,
|
onSort: PropTypes.func,
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
|
import cs from 'classnames';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { CSSTransition } from 'react-transition-group';
|
import { CSSTransition } from 'react-transition-group';
|
||||||
|
|
||||||
const ExpandRow = ({ children, expanded, onClosed, ...rest }) => (
|
const ExpandRow = ({ children, expanded, onClosed, className, ...rest }) => (
|
||||||
<tr>
|
<tr>
|
||||||
<td className="reset-expansion-style" { ...rest }>
|
<td className={ cs('reset-expansion-style', className) } { ...rest }>
|
||||||
<CSSTransition
|
<CSSTransition
|
||||||
appear
|
appear
|
||||||
in={ expanded }
|
in={ expanded }
|
||||||
@@ -25,13 +26,15 @@ const ExpandRow = ({ children, expanded, onClosed, ...rest }) => (
|
|||||||
ExpandRow.propTypes = {
|
ExpandRow.propTypes = {
|
||||||
children: PropTypes.node,
|
children: PropTypes.node,
|
||||||
expanded: PropTypes.bool,
|
expanded: PropTypes.bool,
|
||||||
onClosed: PropTypes.func
|
onClosed: PropTypes.func,
|
||||||
|
className: PropTypes.string
|
||||||
};
|
};
|
||||||
|
|
||||||
ExpandRow.defaultProps = {
|
ExpandRow.defaultProps = {
|
||||||
children: null,
|
children: null,
|
||||||
expanded: false,
|
expanded: false,
|
||||||
onClosed: null
|
onClosed: null,
|
||||||
|
className: ''
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ExpandRow;
|
export default ExpandRow;
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import ExpansionContext from '../contexts/row-expand-context';
|
|||||||
export default (Component) => {
|
export default (Component) => {
|
||||||
const renderWithExpansion = (props, expandRow) => {
|
const renderWithExpansion = (props, expandRow) => {
|
||||||
let parentClassName = '';
|
let parentClassName = '';
|
||||||
|
let className = '';
|
||||||
const key = props.value;
|
const key = props.value;
|
||||||
|
|
||||||
const expanded = _.contains(expandRow.expanded, key);
|
const expanded = _.contains(expandRow.expanded, key);
|
||||||
@@ -17,6 +18,10 @@ export default (Component) => {
|
|||||||
parentClassName = _.isFunction(expandRow.parentClassName) ?
|
parentClassName = _.isFunction(expandRow.parentClassName) ?
|
||||||
expandRow.parentClassName(expanded, props.row, props.rowIndex) :
|
expandRow.parentClassName(expanded, props.row, props.rowIndex) :
|
||||||
(expandRow.parentClassName || '');
|
(expandRow.parentClassName || '');
|
||||||
|
|
||||||
|
className = _.isFunction(expandRow.className) ?
|
||||||
|
expandRow.className(expanded, props.row, props.rowIndex) :
|
||||||
|
(expandRow.className || '');
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
@@ -33,6 +38,7 @@ export default (Component) => {
|
|||||||
colSpan={ props.visibleColumnSize }
|
colSpan={ props.visibleColumnSize }
|
||||||
expanded={ expanded }
|
expanded={ expanded }
|
||||||
onClosed={ () => expandRow.onClosed(key) }
|
onClosed={ () => expandRow.onClosed(key) }
|
||||||
|
className={ className }
|
||||||
>
|
>
|
||||||
{ expandRow.renderer(props.row, props.rowIndex) }
|
{ expandRow.renderer(props.row, props.rowIndex) }
|
||||||
</ExpandRow> : null
|
</ExpandRow> : null
|
||||||
|
|||||||
@@ -2,14 +2,14 @@ import _ from '../utils';
|
|||||||
import { getRowByRowId } from './rows';
|
import { getRowByRowId } from './rows';
|
||||||
|
|
||||||
export const getSelectionSummary = (
|
export const getSelectionSummary = (
|
||||||
data,
|
data = [],
|
||||||
keyField,
|
keyField,
|
||||||
selected = []
|
selected = []
|
||||||
) => {
|
) => {
|
||||||
let allRowsSelected = data.length > 0;
|
let allRowsSelected = data.length > 0;
|
||||||
let allRowsNotSelected = true;
|
let allRowsNotSelected = true;
|
||||||
|
|
||||||
const rowKeys = data.map(d => d[keyField]);
|
const rowKeys = data.map(d => _.get(d, keyField));
|
||||||
for (let i = 0; i < rowKeys.length; i += 1) {
|
for (let i = 0; i < rowKeys.length; i += 1) {
|
||||||
const curr = rowKeys[i];
|
const curr = rowKeys[i];
|
||||||
if (typeof selected.find(x => x === curr) === 'undefined') {
|
if (typeof selected.find(x => x === curr) === 'undefined') {
|
||||||
@@ -24,7 +24,7 @@ export const getSelectionSummary = (
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const selectableKeys = (data, keyField, skips = []) => {
|
export const selectableKeys = (data = [], keyField, skips = []) => {
|
||||||
if (skips.length === 0) {
|
if (skips.length === 0) {
|
||||||
return data.map(row => _.get(row, keyField));
|
return data.map(row => _.get(row, keyField));
|
||||||
}
|
}
|
||||||
@@ -40,6 +40,6 @@ export const unSelectableKeys = (selected, skips = []) => {
|
|||||||
return selected.filter(x => _.contains(skips, x));
|
return selected.filter(x => _.contains(skips, x));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getSelectedRows = (data, keyField, selected) =>
|
export const getSelectedRows = (data = [], keyField, selected) =>
|
||||||
selected.map(k => getRowByRowId(data, keyField, k)).filter(x => !!x);
|
selected.map(k => getRowByRowId(data, keyField, k)).filter(x => !!x);
|
||||||
|
|
||||||
|
|||||||
@@ -14,14 +14,19 @@ function comparator(a, b) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sort = (data, sortOrder, { dataField, sortFunc }) => {
|
export const sort = (data, sortOrder, { dataField, sortFunc, sortValue }) => {
|
||||||
const _data = [...data];
|
const _data = [...data];
|
||||||
_data.sort((a, b) => {
|
_data.sort((a, b) => {
|
||||||
let result;
|
let result;
|
||||||
let valueA = _.get(a, dataField);
|
let valueA = _.get(a, dataField);
|
||||||
let valueB = _.get(b, dataField);
|
let valueB = _.get(b, dataField);
|
||||||
|
if (sortValue) {
|
||||||
|
valueA = sortValue(valueA, a);
|
||||||
|
valueB = sortValue(valueB, b);
|
||||||
|
} else {
|
||||||
valueA = _.isDefined(valueA) ? valueA : '';
|
valueA = _.isDefined(valueA) ? valueA : '';
|
||||||
valueB = _.isDefined(valueB) ? valueB : '';
|
valueB = _.isDefined(valueB) ? valueB : '';
|
||||||
|
}
|
||||||
|
|
||||||
if (sortFunc) {
|
if (sortFunc) {
|
||||||
result = sortFunc(valueA, valueB, sortOrder, dataField, a, b);
|
result = sortFunc(valueA, valueB, sortOrder, dataField, a, b);
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ describe('DataContext', () => {
|
|||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(shallowContext());
|
wrapper = shallow(shallowContext());
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
data: newData
|
data: newData
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ describe('DataContext', () => {
|
|||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(shallowContext());
|
wrapper = shallow(shallowContext());
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
selectRow: newSelectRow
|
selectRow: newSelectRow
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -115,7 +115,7 @@ describe('DataContext', () => {
|
|||||||
...defaultSelectRow,
|
...defaultSelectRow,
|
||||||
selected: defaultSelected
|
selected: defaultSelected
|
||||||
}));
|
}));
|
||||||
wrapper.instance().componentWillReceiveProps({
|
wrapper.instance().UNSAFE_componentWillReceiveProps({
|
||||||
selectRow: defaultSelectRow
|
selectRow: defaultSelectRow
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -128,7 +128,7 @@ describe('DataContext', () => {
|
|||||||
describe('if nextProps.selectRow is not existing', () => {
|
describe('if nextProps.selectRow is not existing', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(shallowContext());
|
wrapper = shallow(shallowContext());
|
||||||
wrapper.instance().componentWillReceiveProps({});
|
wrapper.instance().UNSAFE_componentWillReceiveProps({});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not set this.selected', () => {
|
it('should not set this.selected', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user