f6038b80103d9e8b96bf5c63cd0a572298303492
[arvados-workbench2.git] / src / views-components / context-menu / actions / collection-copy-to-clipboard-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 { getNodeValue } from "~/models/tree";
8 import { ContextMenuKind } from '~/views-components/context-menu/context-menu';
9 import { CopyToClipboardAction } from "./copy-to-clipboard-action";
10
11 const mapStateToProps = (state: RootState) => {
12     const { resource } = state.contextMenu;
13     const currentCollectionUuid = state.collectionPanel.item ? state.collectionPanel.item.uuid : '';
14     const { keepWebServiceUrl } = state.auth.config;
15     if (resource && resource.menuKind === ContextMenuKind.COLLECTION_FILES_ITEM) {
16         const file = getNodeValue(resource.uuid)(state.collectionPanelFiles);
17         if (file) {
18             return {
19                 href: file.url.replace(keepWebServiceUrl, ''),
20                 kind: 'file',
21                 currentCollectionUuid
22             };
23         }
24     } else {
25         return ;
26     }
27     return ;
28 };
29
30 export const CollectionCopyToClipboardAction = connect(mapStateToProps)(CopyToClipboardAction);