X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ada23a4054724d0d6be4ee88efb22daecd86001f..5fa710bf0218bd474233fd5867b15cc6622e6b31:/src/store/collection-panel/collection-panel-reducer.ts diff --git a/src/store/collection-panel/collection-panel-reducer.ts b/src/store/collection-panel/collection-panel-reducer.ts index 4207a393..6afba66c 100644 --- a/src/store/collection-panel/collection-panel-reducer.ts +++ b/src/store/collection-panel/collection-panel-reducer.ts @@ -3,22 +3,21 @@ // SPDX-License-Identifier: AGPL-3.0 import { collectionPanelActions, CollectionPanelAction } from "./collection-panel-action"; -import { CollectionResource } from "~/models/collection"; +import { CollectionResource } from "models/collection"; export interface CollectionPanelState { item: CollectionResource | null; - numberOfCollectionsWithSamePDH: number; } const initialState = { item: null, - numberOfCollectionsWithSamePDH: 0 }; export const collectionPanelReducer = (state: CollectionPanelState = initialState, action: CollectionPanelAction) => collectionPanelActions.match(action, { default: () => state, - SET_COLLECTION: (item) => ({ ...state, item }), - LOAD_COLLECTION_SUCCESS: ({ item }) => ({ ...state, item }), - SET_NUMBER_OF_COLLECTIONS_WITH_SAME_PDH: (num) => ({ ...state, numberOfCollectionsWithSamePDH: num }), + SET_COLLECTION: (item) => ({ + ...state, + item, + }), });