mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
145 lines
3.8 KiB
JavaScript
145 lines
3.8 KiB
JavaScript
/* eslint no-param-reassign: 0 */
|
|
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import statelessDecorator from './statelessOp';
|
|
|
|
import createSearchContext from './src/search/context';
|
|
|
|
const ToolkitContext = React.createContext();
|
|
|
|
class ToolkitProvider extends statelessDecorator(React.Component) {
|
|
static propTypes = {
|
|
keyField: PropTypes.string.isRequired,
|
|
data: PropTypes.array.isRequired,
|
|
columns: PropTypes.array.isRequired,
|
|
children: PropTypes.node.isRequired,
|
|
bootstrap4: PropTypes.bool,
|
|
search: PropTypes.oneOfType([
|
|
PropTypes.bool,
|
|
PropTypes.shape({
|
|
defaultSearch: PropTypes.string,
|
|
searchFormatted: PropTypes.bool
|
|
})
|
|
]),
|
|
exportCSV: PropTypes.oneOfType([
|
|
PropTypes.bool,
|
|
PropTypes.shape({
|
|
fileName: PropTypes.string,
|
|
separator: PropTypes.string,
|
|
ignoreHeader: PropTypes.bool,
|
|
ignoreFooter: PropTypes.bool,
|
|
noAutoBOM: PropTypes.bool,
|
|
blobType: PropTypes.string,
|
|
exportAll: PropTypes.bool,
|
|
onlyExportFiltered: PropTypes.bool,
|
|
onlyExportSelection: PropTypes.bool
|
|
})
|
|
])
|
|
}
|
|
|
|
static defaultProps = {
|
|
search: false,
|
|
exportCSV: false,
|
|
bootstrap4: false
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
const state = {};
|
|
this._ = null;
|
|
this.onClear = this.onClear.bind(this);
|
|
this.onSearch = this.onSearch.bind(this);
|
|
this.onColumnToggle = this.onColumnToggle.bind(this);
|
|
this.setDependencyModules = this.setDependencyModules.bind(this);
|
|
|
|
if (props.columnToggle) {
|
|
state.columnToggle = props.columns
|
|
.reduce((obj, column) => {
|
|
obj[column.dataField] = !column.hidden;
|
|
return obj;
|
|
}, {});
|
|
}
|
|
state.searchText = typeof props.search === 'object' ? (props.search.defaultSearch || '') : '';
|
|
this.state = state;
|
|
}
|
|
|
|
onSearch(searchText) {
|
|
if (searchText !== this.state.searchText) {
|
|
this.setState({ searchText });
|
|
}
|
|
}
|
|
|
|
onClear() {
|
|
this.setState({ searchText: '' });
|
|
}
|
|
|
|
onColumnToggle(dataField) {
|
|
const { columnToggle } = this.state;
|
|
columnToggle[dataField] = !columnToggle[dataField];
|
|
this.setState(({
|
|
...this.state,
|
|
columnToggle
|
|
}));
|
|
}
|
|
/**
|
|
*
|
|
* @param {*} _
|
|
* this function will be called only one time when table render
|
|
* react-bootstrap-table-next/src/context/index.js will call this cb for passing the _ module
|
|
* Please consider to extract a common module to handle _ module.
|
|
* this is just a quick fix
|
|
*/
|
|
setDependencyModules(_) {
|
|
this._ = _;
|
|
}
|
|
|
|
render() {
|
|
const baseProps = {
|
|
keyField: this.props.keyField,
|
|
columns: this.props.columns,
|
|
data: this.props.data,
|
|
bootstrap4: this.props.bootstrap4,
|
|
setDependencyModules: this.setDependencyModules,
|
|
registerExposedAPI: this.registerExposedAPI
|
|
};
|
|
if (this.props.search) {
|
|
baseProps.search = {
|
|
searchContext: createSearchContext(this.props.search),
|
|
searchText: this.state.searchText
|
|
};
|
|
}
|
|
if (this.props.columnToggle) {
|
|
baseProps.columnToggle = {
|
|
toggles: this.state.columnToggle
|
|
};
|
|
}
|
|
return (
|
|
<ToolkitContext.Provider value={ {
|
|
searchProps: {
|
|
searchText: this.state.searchText,
|
|
onSearch: this.onSearch,
|
|
onClear: this.onClear
|
|
},
|
|
csvProps: {
|
|
onExport: this.handleExportCSV
|
|
},
|
|
columnToggleProps: {
|
|
columns: this.props.columns,
|
|
toggles: this.state.columnToggle,
|
|
onColumnToggle: this.onColumnToggle
|
|
},
|
|
baseProps
|
|
} }
|
|
>
|
|
{ this.props.children }
|
|
</ToolkitContext.Provider>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default {
|
|
Provider: ToolkitProvider,
|
|
Consumer: ToolkitContext.Consumer
|
|
};
|