X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/da83b00c6627076d927ac9983bfa35808e9c5f43..20f7af812af9bd7094ae71d5a7571cfe556eb968:/src/store/data-explorer/data-explorer-action.ts diff --git a/src/store/data-explorer/data-explorer-action.ts b/src/store/data-explorer/data-explorer-action.ts index a2e229de..e637043d 100644 --- a/src/store/data-explorer/data-explorer-action.ts +++ b/src/store/data-explorer/data-explorer-action.ts @@ -2,9 +2,9 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { default as unionize, ofType, UnionOf } from "unionize"; -import { DataTableFilterItem } from "../../components/data-table-filters/data-table-filters"; -import { DataColumns } from "../../components/data-table/data-table"; +import { unionize, ofType, UnionOf } from "~/common/unionize"; +import { DataTableFilterItem } from "~/components/data-table-filters/data-table-filters"; +import { DataColumns } from "~/components/data-table/data-table"; export const dataExplorerActions = unionize({ RESET_PAGINATION: ofType<{ id: string }>(), @@ -17,12 +17,11 @@ export const dataExplorerActions = unionize({ TOGGLE_COLUMN: ofType<{ id: string, columnName: string }>(), TOGGLE_SORT: ofType<{ id: string, columnName: string }>(), SET_SEARCH_VALUE: ofType<{ id: string, searchValue: string }>(), -}, { tag: "type", value: "payload" }); +}); export type DataExplorerAction = UnionOf; export const bindDataExplorerActions = (id: string) => ({ - ...dataExplorerActions, RESET_PAGINATION: () => dataExplorerActions.RESET_PAGINATION({ id }), REQUEST_ITEMS: () =>