X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/71b7de8657caf1776c082a350e1a55cbe01bf21d..c26c98ff85da6a9ed2b946eae1d3484a3056bd10:/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 80a6d17e..f90f9a6c 100644 --- a/src/store/data-explorer/data-explorer-middleware.ts +++ b/src/store/data-explorer/data-explorer-middleware.ts @@ -3,38 +3,38 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Middleware } from "../../../node_modules/redux"; -import { dataExplorerActions } from "./data-explorer-action"; +import { Middleware } from "redux"; +import { dataExplorerActions, bindDataExplorerActions } from "./data-explorer-action"; import { DataExplorerMiddlewareService } from "./data-explorer-middleware-service"; export const dataExplorerMiddleware = (service: DataExplorerMiddlewareService): Middleware => api => next => { - service.Api = api; - next(dataExplorerActions.SET_COLUMNS({ id: service.Id, columns: service.Columns })); + const actions = bindDataExplorerActions(service.getId()); + return action => { const handleAction = (handler: (data: T) => void) => (data: T) => { next(action); - if (data.id === service.Id) { + if (data.id === service.getId()) { handler(data); } }; dataExplorerActions.match(action, { SET_PAGE: handleAction(() => { - api.dispatch(dataExplorerActions.REQUEST_ITEMS({ id: service.Id })); + api.dispatch(actions.REQUEST_ITEMS()); }), SET_ROWS_PER_PAGE: handleAction(() => { - api.dispatch(dataExplorerActions.REQUEST_ITEMS({ id: service.Id })); + api.dispatch(actions.REQUEST_ITEMS()); }), SET_FILTERS: handleAction(() => { - api.dispatch(dataExplorerActions.RESET_PAGINATION({ id: service.Id })); - api.dispatch(dataExplorerActions.REQUEST_ITEMS({ id: service.Id })); + api.dispatch(actions.RESET_PAGINATION()); + api.dispatch(actions.REQUEST_ITEMS()); }), TOGGLE_SORT: handleAction(() => { - api.dispatch(dataExplorerActions.REQUEST_ITEMS({ id: service.Id })); + api.dispatch(actions.REQUEST_ITEMS()); }), - SET_SEARCH_VALUE: handleAction(() => { - api.dispatch(dataExplorerActions.RESET_PAGINATION({ id: service.Id })); - api.dispatch(dataExplorerActions.REQUEST_ITEMS({ id: service.Id })); + SET_EXPLORER_SEARCH_VALUE: handleAction(() => { + api.dispatch(actions.RESET_PAGINATION()); + api.dispatch(actions.REQUEST_ITEMS()); }), REQUEST_ITEMS: handleAction(() => { service.requestItems(api);