1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { default as unionize, ofType, UnionOf } from "unionize";
6 import { DataTableFilterItem } from "../../components/data-table-filters/data-table-filters";
7 import { DataColumns } from "../../components/data-table/data-table";
9 export const dataExplorerActions = unionize({
10 RESET_PAGINATION: ofType<{ id: string }>(),
11 REQUEST_ITEMS: ofType<{ id: string }>(),
12 SET_COLUMNS: ofType<{ id: string, columns: DataColumns<any> }>(),
13 SET_FILTERS: ofType<{ id: string, columnName: string, filters: DataTableFilterItem[] }>(),
14 SET_ITEMS: ofType<{ id: string, items: any[], page: number, rowsPerPage: number, itemsAvailable: number }>(),
15 SET_PAGE: ofType<{ id: string, page: number }>(),
16 SET_ROWS_PER_PAGE: ofType<{ id: string, rowsPerPage: number }>(),
17 TOGGLE_COLUMN: ofType<{ id: string, columnName: string }>(),
18 TOGGLE_SORT: ofType<{ id: string, columnName: string }>(),
19 SET_SEARCH_VALUE: ofType<{ id: string, searchValue: string }>(),
20 }, { tag: "type", value: "payload" });
22 export type DataExplorerAction = UnionOf<typeof dataExplorerActions>;
24 export const bindDataExplorerActions = (id: string) => ({
25 ...dataExplorerActions,
26 RESET_PAGINATION: () =>
27 dataExplorerActions.RESET_PAGINATION({ id }),
29 dataExplorerActions.REQUEST_ITEMS({ id }),
30 SET_COLUMNS: (payload: { columns: DataColumns<any> }) =>
31 dataExplorerActions.SET_COLUMNS({ ...payload, id }),
32 SET_FILTERS: (payload: { columnName: string, filters: DataTableFilterItem[] }) =>
33 dataExplorerActions.SET_FILTERS({ ...payload, id }),
34 SET_ITEMS: (payload: { items: any[], page: number, rowsPerPage: number, itemsAvailable: number }) =>
35 dataExplorerActions.SET_ITEMS({ ...payload, id }),
36 SET_PAGE: (payload: { page: number }) =>
37 dataExplorerActions.SET_PAGE({ ...payload, id }),
38 SET_ROWS_PER_PAGE: (payload: { rowsPerPage: number }) =>
39 dataExplorerActions.SET_ROWS_PER_PAGE({ ...payload, id }),
40 TOGGLE_COLUMN: (payload: { columnName: string }) =>
41 dataExplorerActions.TOGGLE_COLUMN({ ...payload, id }),
42 TOGGLE_SORT: (payload: { columnName: string }) =>
43 dataExplorerActions.TOGGLE_SORT({ ...payload, id }),
44 SET_SEARCH_VALUE: (payload: { searchValue: string }) =>
45 dataExplorerActions.SET_SEARCH_VALUE({ ...payload, id }),