1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { collectionPanelActions, CollectionPanelAction } from "./collection-panel-action";
6 import { CollectionResource } from "models/collection";
8 export interface CollectionPanelState {
9 item: CollectionResource | null;
12 const initialState = {
16 export const collectionPanelReducer = (state: CollectionPanelState = initialState, action: CollectionPanelAction) =>
17 collectionPanelActions.match(action, {
19 SET_COLLECTION: (item) => ({