17018: Fixes the bug adding checks for readonly context menu type.
[arvados-workbench2.git] / src / views-components / context-menu / actions / download-collection-file-action.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { connect } from "react-redux";
6 import { RootState } from "../../../store/store";
7 import { DownloadAction } from "./download-action";
8 import { getNodeValue } from "../../../models/tree";
9 import { ContextMenuKind } from '../context-menu';
10 import { filterCollectionFilesBySelection } from "~/store/collection-panel/collection-panel-files/collection-panel-files-state";
11 import { sanitizeToken } from "./helpers";
12
13 const mapStateToProps = (state: RootState) => {
14     const { resource } = state.contextMenu;
15     const currentCollectionUuid = state.collectionPanel.item ? state.collectionPanel.item.uuid : '';
16     if (resource && (
17         resource.menuKind === ContextMenuKind.COLLECTION_FILES_ITEM ||
18         resource.menuKind === ContextMenuKind.READONLY_COLLECTION_FILES_ITEM)) {
19         const file = getNodeValue(resource.uuid)(state.collectionPanelFiles);
20         if (file) {
21             return {
22                 href: sanitizeToken(file.url, true),
23                 kind: 'file',
24                 currentCollectionUuid
25             };
26         }
27     } else {
28         const files = filterCollectionFilesBySelection(state.collectionPanelFiles, true);
29         return {
30             href: files.map(file => file.url),
31             kind: 'files',
32             currentCollectionUuid
33         };
34     }
35     return {};
36 };
37
38 export const DownloadCollectionFileAction = connect(mapStateToProps)(DownloadAction);