fix: controlled pagination.current should not respond user interaction

ref #1311
This commit is contained in:
afc163 2016-04-01 00:57:03 +08:00
parent 6e3532c9fb
commit 29ceb8862d
2 changed files with 15 additions and 3 deletions

View File

@ -35,7 +35,6 @@ for (let i = 0; i < 46; i++) {
const pagination = {
total: data.length,
current: 1,
showSizeChanger: true,
onShowSizeChange(current, pageSize) {
console.log('Current: ', current, '; PageSize: ', pageSize);

View File

@ -264,6 +264,7 @@ let AntTable = React.createClass({
},
handlePageChange(current) {
const props = this.props;
let pagination = objectAssign({}, this.state.pagination);
if (current) {
pagination.current = current;
@ -274,10 +275,22 @@ let AntTable = React.createClass({
const newState = {
selectionDirty: false,
pagination
pagination,
};
// Controlled current prop will not respond user interaction
if (props.pagination && 'current' in props.pagination) {
newState.pagination = {
...pagination,
current: this.state.pagination.current,
};
}
this.setState(newState);
this.props.onChange(...this.prepareParamsArguments({ ...this.state, ...newState }));
this.props.onChange(...this.prepareParamsArguments({
...this.state,
selectionDirty: false,
pagination,
}));
},
onRadioChange(ev) {