X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/eb7235a7a2cf4c6b6f52b42ac8313de388235aa9..23064a8e0ced7fb43269434e73d553c0338fd6b8:/src/views-components/collection-panel-files/collection-panel-files.ts diff --git a/src/views-components/collection-panel-files/collection-panel-files.ts b/src/views-components/collection-panel-files/collection-panel-files.ts index 91420edb..a26b9fe3 100644 --- a/src/views-components/collection-panel-files/collection-panel-files.ts +++ b/src/views-components/collection-panel-files/collection-panel-files.ts @@ -6,47 +6,23 @@ import { connect } from "react-redux"; import { CollectionPanelFiles as Component, CollectionPanelFilesProps -} from "~/components/collection-panel-files/collection-panel-files"; -import { RootState } from "~/store/store"; -import { TreeItemStatus } from "~/components/tree/tree"; -import { VirtualTreeItem as TreeItem } from "~/components/tree/virtual-tree"; -import { - CollectionPanelDirectory, - CollectionPanelFile, - CollectionPanelFilesState -} from "~/store/collection-panel/collection-panel-files/collection-panel-files-state"; -import { FileTreeData } from "~/components/file-tree/file-tree-data"; +} from "components/collection-panel-files/collection-panel-files"; +import { RootState } from "store/store"; import { Dispatch } from "redux"; -import { collectionPanelFilesAction } from "~/store/collection-panel/collection-panel-files/collection-panel-files-actions"; +import { collectionPanelFilesAction } from "store/collection-panel/collection-panel-files/collection-panel-files-actions"; import { ContextMenuKind } from "../context-menu/context-menu"; -import { getNode, getNodeChildrenIds, Tree, TreeNode, initTreeNode } from "~/models/tree"; -import { CollectionFileType, createCollectionDirectory } from "~/models/collection-file"; -import { openContextMenu, openCollectionFilesContextMenu } from '~/store/context-menu/context-menu-actions'; -import { openUploadCollectionFilesDialog } from '~/store/collections/collection-upload-actions'; -import { ResourceKind } from "~/models/resource"; -import { openDetailsPanel } from '~/store/details-panel/details-panel-action'; - -const memoizedMapStateToProps = () => { - let prevState: CollectionPanelFilesState; - let prevTree: Array>; +import { openContextMenu, openCollectionFilesContextMenu } from 'store/context-menu/context-menu-actions'; +import { openUploadCollectionFilesDialog } from 'store/collections/collection-upload-actions'; +import { ResourceKind } from "models/resource"; +import { openDetailsPanel } from 'store/details-panel/details-panel-action'; - return (state: RootState): Pick => { - if (prevState !== state.collectionPanelFiles) { - prevState = state.collectionPanelFiles; - prevTree = [].concat.apply( - [], getNodeChildrenIds('')(state.collectionPanelFiles) - .map(collectionItemToList(0)(state.collectionPanelFiles))); - } - return { - items: prevTree, - currentItemUuid: state.detailsPanel.resourceUuid - }; - }; -}; +const mapStateToProps = (state: RootState): Pick => ({ + currentItemUuid: state.detailsPanel.resourceUuid +}); const mapDispatchToProps = (dispatch: Dispatch): Pick => ({ - onUploadDataClick: () => { - dispatch(openUploadCollectionFilesDialog()); + onUploadDataClick: (targetLocation?: string) => { + dispatch(openUploadCollectionFilesDialog(targetLocation)); }, onCollapseToggle: (id) => { dispatch(collectionPanelFilesAction.TOGGLE_COLLECTION_FILE_COLLAPSE({ id })); @@ -55,12 +31,17 @@ const mapDispatchToProps = (dispatch: Dispatch): Pick { + const isDirectory = item.data.type === 'directory'; dispatch(openContextMenu( event, { menuKind: isWritable - ? ContextMenuKind.COLLECTION_FILES_ITEM - : ContextMenuKind.READONLY_COLLECTION_FILES_ITEM, + ? isDirectory + ? ContextMenuKind.COLLECTION_DIRECTORY_ITEM + : ContextMenuKind.COLLECTION_FILE_ITEM + : isDirectory + ? ContextMenuKind.READONLY_COLLECTION_DIRECTORY_ITEM + : ContextMenuKind.READONLY_COLLECTION_FILE_ITEM, kind: ResourceKind.COLLECTION, name: item.data.name, uuid: item.id, @@ -79,43 +60,4 @@ const mapDispatchToProps = (dispatch: Dispatch): Pick (tree: Tree) => - (id: string): TreeItem[] => { - const node: TreeNode = getNode(id)(tree) || initTreeNode({ - id: '', - parent: '', - value: { - ...createCollectionDirectory({ name: 'Invalid file' }), - selected: false, - collapsed: true - } - }); - - const treeItem = { - active: false, - data: { - name: node.value.name, - size: node.value.type === CollectionFileType.FILE ? node.value.size : undefined, - type: node.value.type, - url: node.value.url, - }, - id: node.id, - items: [], // Not used in this case as we're converting a tree to a list. - itemCount: node.children.length, - open: node.value.type === CollectionFileType.DIRECTORY ? !node.value.collapsed : false, - selected: node.value.selected, - status: TreeItemStatus.LOADED, - level, - }; - - const treeItemChilds = treeItem.open - ? [].concat.apply([], node.children.map(collectionItemToList(level+1)(tree))) - : []; - - return [ - treeItem, - ...treeItemChilds, - ]; - }; +export const CollectionPanelFiles = connect(mapStateToProps, mapDispatchToProps)(Component);