// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { connect } from "react-redux"; import { RootState } from "../../../store/store"; import { FileViewerAction } from '~/views-components/context-menu/actions/file-viewer-action'; import { getNodeValue } from "~/models/tree"; import { ContextMenuKind } from '~/views-components/context-menu/context-menu'; const mapStateToProps = (state: RootState) => { const { resource } = state.contextMenu; const currentCollectionUuid = state.collectionPanel.item ? state.collectionPanel.item.uuid : ''; if (resource && resource.menuKind === ContextMenuKind.COLLECTION_FILES_ITEM) { const file = getNodeValue(resource.uuid)(state.collectionPanelFiles); if (file) { return { href: file.url.replace(state.auth.config.keepWebServiceUrl, state.auth.config.keepWebInlineServiceUrl), kind: 'file', currentCollectionUuid }; } } else { return; } return; }; export const CollectionFileViewerAction = connect(mapStateToProps)(FileViewerAction);