X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ba27bdf218da8894df4ffa6174c67c1fb3e70c81..c6314ca47008f1ffd0fe70fe025a57475b64e773:/src/store/data-explorer/data-explorer-middleware.ts diff --git a/src/store/data-explorer/data-explorer-middleware.ts b/src/store/data-explorer/data-explorer-middleware.ts index f90f9a6ce3..e377f3410f 100644 --- a/src/store/data-explorer/data-explorer-middleware.ts +++ b/src/store/data-explorer/data-explorer-middleware.ts @@ -20,24 +20,24 @@ export const dataExplorerMiddleware = (service: DataExplorerMiddlewareService): }; dataExplorerActions.match(action, { SET_PAGE: handleAction(() => { - api.dispatch(actions.REQUEST_ITEMS()); + api.dispatch(actions.REQUEST_ITEMS(false)); }), SET_ROWS_PER_PAGE: handleAction(() => { - api.dispatch(actions.REQUEST_ITEMS()); + api.dispatch(actions.REQUEST_ITEMS(true)); }), SET_FILTERS: handleAction(() => { api.dispatch(actions.RESET_PAGINATION()); - api.dispatch(actions.REQUEST_ITEMS()); + api.dispatch(actions.REQUEST_ITEMS(true)); }), TOGGLE_SORT: handleAction(() => { - api.dispatch(actions.REQUEST_ITEMS()); + api.dispatch(actions.REQUEST_ITEMS(true)); }), SET_EXPLORER_SEARCH_VALUE: handleAction(() => { api.dispatch(actions.RESET_PAGINATION()); - api.dispatch(actions.REQUEST_ITEMS()); + api.dispatch(actions.REQUEST_ITEMS(true)); }), - REQUEST_ITEMS: handleAction(() => { - service.requestItems(api); + REQUEST_ITEMS: handleAction(({ criteriaChanged }) => { + service.requestItems(api, criteriaChanged); }), default: () => next(action) });