772d89dfed334651b7ab5fa2101092dab526c6eb
[arvados-workbench2.git] / src / store / tree-picker / tree-picker-actions.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 { TreeNode } from "../../models/tree";
7 import { TreePickerNode } from "./tree-picker";
8
9 export const treePickerActions = unionize({
10     LOAD_TREE_PICKER_NODE: ofType<{ id: string }>(),
11     LOAD_TREE_PICKER_NODE_SUCCESS: ofType<{ id: string, nodes: Array<TreePickerNode> }>(),
12     TOGGLE_TREE_PICKER_NODE_COLLAPSE: ofType<{ id: string }>(),
13     TOGGLE_TREE_PICKER_NODE_SELECT: ofType<{ id: string }>()
14 }, {
15         tag: 'type',
16         value: 'payload'
17     });
18
19 export type TreePickerAction = UnionOf<typeof treePickerActions>;