fix: fix the filtered data is inconsistent with the refreshed data

When using the front end to filter the data, when the data is refreshed, the filter param is also passed to the API, remove the filter params to fix the situation

Change-Id: I60fc2a6ea3d6c345f0fdb2254c2018c2a07f56c5
This commit is contained in:
Jingwei.Zhang 2022-07-29 15:26:43 +08:00
parent dc71a4a56a
commit 88e4ca036c

View File

@ -945,9 +945,32 @@ export default class BaseList extends React.Component {
}
};
getPureParamsByFrontend = (params) => {
const { page, limit, sortKey, sortOrder, ...rest } = params;
const pureParams = { page, limit };
if (this.isSortByBackend) {
pureParams.sortKey = sortKey;
pureParams.sortOrder = sortOrder;
}
if (!this.searchFilters.length) {
const { keywords, ...others } = rest;
return {
...pureParams,
...others,
};
}
Object.keys(rest).forEach((key) => {
const item = this.searchFilters.find((it) => it.name === key);
if (!item) {
pureParams[key] = rest[key];
}
});
return pureParams;
};
handleFetch = (params, refresh) => {
if (refresh && !this.isFilterByBackend) {
this.getDataWithPolicy(params);
this.getDataWithPolicy(this.getPureParamsByFrontend(params));
return;
}
// eslint-disable-next-line no-unused-vars