|
@@ -25,6 +25,7 @@ export default class AdminUsersContainer extends Container {
|
|
|
activePage: 1,
|
|
activePage: 1,
|
|
|
pagingLimit: Infinity,
|
|
pagingLimit: Infinity,
|
|
|
selectedStatusList: new Set(),
|
|
selectedStatusList: new Set(),
|
|
|
|
|
+ searchText: '',
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
this.showPasswordResetModal = this.showPasswordResetModal.bind(this);
|
|
this.showPasswordResetModal = this.showPasswordResetModal.bind(this);
|
|
@@ -64,6 +65,14 @@ export default class AdminUsersContainer extends Container {
|
|
|
this.setState({ selectedStatusList });
|
|
this.setState({ selectedStatusList });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ getSearchText() {
|
|
|
|
|
+ return this.state.searchText;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ handleChange(searchText) {
|
|
|
|
|
+ this.setState({ searchText });
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* syncUsers of selectedPage
|
|
* syncUsers of selectedPage
|
|
|
* @memberOf AdminUsersContainer
|
|
* @memberOf AdminUsersContainer
|