15610: Avoids loading the file list on big collections, offers manual loading.
[arvados-workbench2.git] / src / store / collection-panel / collection-panel-reducer.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { collectionPanelActions, CollectionPanelAction } from "./collection-panel-action";
6 import { CollectionResource } from "~/models/collection";
7
8 export interface CollectionPanelState {
9     item: CollectionResource | null;
10     loadBigCollections: boolean;
11 }
12
13 const initialState = {
14     item: null,
15     loadBigCollections: false,
16 };
17
18 export const collectionPanelReducer = (state: CollectionPanelState = initialState, action: CollectionPanelAction) =>
19     collectionPanelActions.match(action, {
20         default: () => state,
21         SET_COLLECTION: (item) => ({
22              ...state,
23              item,
24              loadBigCollections: false,
25         }),
26         LOAD_COLLECTION_SUCCESS: ({ item }) => ({ ...state, item }),
27         LOAD_BIG_COLLECTIONS: (loadBigCollections) => ({ ...state, loadBigCollections}),
28     });