Add typescript paths to top level folders
[arvados-workbench2.git] / src / store / data-explorer / data-explorer-action.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
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";
8
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" });
21
22 export type DataExplorerAction = UnionOf<typeof dataExplorerActions>;
23
24 export const bindDataExplorerActions = (id: string) => ({
25     RESET_PAGINATION: () =>
26         dataExplorerActions.RESET_PAGINATION({ id }),
27     REQUEST_ITEMS: () =>
28         dataExplorerActions.REQUEST_ITEMS({ id }),
29     SET_COLUMNS: (payload: { columns: DataColumns<any> }) =>
30         dataExplorerActions.SET_COLUMNS({ ...payload, id }),
31     SET_FILTERS: (payload: { columnName: string, filters: DataTableFilterItem[] }) =>
32         dataExplorerActions.SET_FILTERS({ ...payload, id }),
33     SET_ITEMS: (payload: { items: any[], page: number, rowsPerPage: number, itemsAvailable: number }) =>
34         dataExplorerActions.SET_ITEMS({ ...payload, id }),
35     SET_PAGE: (payload: { page: number }) =>
36         dataExplorerActions.SET_PAGE({ ...payload, id }),
37     SET_ROWS_PER_PAGE: (payload: { rowsPerPage: number }) =>
38         dataExplorerActions.SET_ROWS_PER_PAGE({ ...payload, id }),
39     TOGGLE_COLUMN: (payload: { columnName: string }) =>
40         dataExplorerActions.TOGGLE_COLUMN({ ...payload, id }),
41     TOGGLE_SORT: (payload: { columnName: string }) =>
42         dataExplorerActions.TOGGLE_SORT({ ...payload, id }),
43     SET_SEARCH_VALUE: (payload: { searchValue: string }) =>
44         dataExplorerActions.SET_SEARCH_VALUE({ ...payload, id }),
45 });