17585: First initial impl
authorDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Fri, 20 Aug 2021 19:59:00 +0000 (21:59 +0200)
committerDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Fri, 20 Aug 2021 20:00:32 +0000 (22:00 +0200)
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla@contractors.roche.com>

.gitignore
src/common/service-provider.ts [new file with mode: 0644]
src/components/collection-panel-files/collection-panel-files.tsx
src/components/collection-panel-files/collection-panel-files2.tsx [new file with mode: 0644]
src/index.tsx
src/models/collection-file.ts
src/store/collection-panel/collection-panel-action.ts
src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts

index 8273cc9ff63fcd5a971535902e4923b5f795b44c..8ce5c38061530d0cae00cd9ad5567e2851933f18 100644 (file)
@@ -14,6 +14,7 @@
 /coverage
 /cypress/videos
 /cypress/screenshots
+/cypress/downloads
 
 # production
 /build
diff --git a/src/common/service-provider.ts b/src/common/service-provider.ts
new file mode 100644 (file)
index 0000000..1362de9
--- /dev/null
@@ -0,0 +1,35 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
+class ServicesProvider {
+
+    private static instance: ServicesProvider;
+
+    private services;
+
+    private constructor() {}
+
+    public static getInstance(): ServicesProvider {
+        if (!ServicesProvider.instance) {
+            ServicesProvider.instance = new ServicesProvider();
+        }
+
+        return ServicesProvider.instance;
+    }
+
+    public setServices(newServices): void {
+        if (!this.services) {
+            this.services = newServices;
+        }
+    }
+
+    public getServices() {
+        if (!this.services) {
+            throw "Please check if services have been set in the index.ts before the app is initiated";
+        }
+        return this.services;
+    }
+}
+
+export default ServicesProvider.getInstance();
index 4118248283ae7deed8fb2b416a28ed09d764382c..a6bce0f23e724be018dc0f87a3ef11f6d3b0ab8b 100644 (file)
@@ -3,16 +3,21 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import React from 'react';
-import { TreeItem, TreeItemStatus } from 'components/tree/tree';
-import { FileTreeData } from 'components/file-tree/file-tree-data';
-import { FileTree } from 'components/file-tree/file-tree';
-import { IconButton, Grid, Typography, StyleRulesCallback, withStyles, WithStyles, CardHeader, Card, Button, Tooltip, CircularProgress } from '@material-ui/core';
+import classNames from 'classnames';
+import { connect } from 'react-redux';
 import { CustomizeTableIcon } from 'components/icon/icon';
-import { DownloadIcon } from 'components/icon/icon';
-import { SearchInput } from '../search-input/search-input';
+import { ListItemIcon, StyleRulesCallback, Theme, WithStyles, withStyles, Tooltip, IconButton, Checkbox } from '@material-ui/core';
+import { FileTreeData } from '../file-tree/file-tree-data';
+import { TreeItem, TreeItemStatus } from '../tree/tree';
+import { RootState } from 'store/store';
+import { WebDAV, WebDAVRequestConfig } from 'common/webdav';
+import { AuthState } from 'store/auth/auth-reducer';
+import { extractFilesData } from 'services/collection-service/collection-service-files-response';
+import { DefaultIcon, DirectoryIcon, FileIcon } from 'components/icon/icon';
+import { setCollectionFiles } from 'store/collection-panel/collection-panel-files/collection-panel-files-actions';
 
 export interface CollectionPanelFilesProps {
-    items: Array<TreeItem<FileTreeData>>;
+    items: any;
     isWritable: boolean;
     isLoading: boolean;
     tooManyFiles: boolean;
@@ -24,115 +29,315 @@ export interface CollectionPanelFilesProps {
     onCollapseToggle: (id: string, status: TreeItemStatus) => void;
     onFileClick: (id: string) => void;
     loadFilesFunc: () => void;
-    currentItemUuid?: string;
+    currentItemUuid: any;
+    dispatch: Function;
+    collectionPanelFiles: any;
+    collectionPanel: any;
 }
 
-export type CssRules = 'root' | 'cardSubheader' | 'nameHeader' | 'fileSizeHeader' | 'uploadIcon' | 'button' | 'centeredLabel' | 'cardHeaderContent' | 'cardHeaderContentTitle';
+type CssRules = "wrapper" | "row" | "leftPanel" | "rightPanel" | "pathPanel" | "pathPanelItem" | "rowName" | "listItemIcon" | "rowActive" | "pathPanelMenu" | "rowSelection";
 
-const styles: StyleRulesCallback<CssRules> = theme => ({
-    root: {
-        paddingBottom: theme.spacing.unit,
-        height: '100%'
-    },
-    cardSubheader: {
-        paddingTop: 0,
-        paddingBottom: 0,
-        minHeight: 8 * theme.spacing.unit,
+const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
+    wrapper: {
+        display: 'flex',
     },
-    cardHeaderContent: {
+    row: {
         display: 'flex',
-        paddingRight: 2 * theme.spacing.unit,
-        justifyContent: 'space-between',
+        margin: '0.5rem',
+        cursor: 'pointer',
+        "&:hover": {
+            backgroundColor: 'rgba(0, 0, 0, 0.08)',
+        }
+    },
+    rowName: {
+        paddingTop: '6px',
+        paddingBottom: '6px',
     },
-    cardHeaderContentTitle: {
-        paddingLeft: theme.spacing.unit,
-        paddingTop: 2 * theme.spacing.unit,
-        paddingRight: 2 * theme.spacing.unit,
+    rowSelection: {
+        padding: '0px',
     },
-    nameHeader: {
-        marginLeft: '75px'
+    rowActive: {
+        color: `${theme.palette.primary.main} !important`,
     },
-    fileSizeHeader: {
-        marginRight: '65px'
+    listItemIcon: {
+        marginTop: '2px',
     },
-    uploadIcon: {
-        transform: 'rotate(180deg)'
+    pathPanelMenu: {
+        float: 'right',
+        marginTop: '-15px',
     },
-    button: {
-        marginRight: -theme.spacing.unit,
-        marginTop: '8px'
+    pathPanel: {
+        padding: '1rem',
+        marginBottom: '1rem',
+        boxShadow: '0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 2px 1px -1px rgb(0 0 0 / 12%)',
     },
-    centeredLabel: {
-        fontSize: '0.875rem',
-        textAlign: 'center'
+    leftPanel: {
+        flex: '30%',
+        padding: '1rem',
+        marginRight: '1rem',
+        boxShadow: '0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 2px 1px -1px rgb(0 0 0 / 12%)',
     },
+    rightPanel: {
+        flex: '70%',
+        padding: '1rem',
+        boxShadow: '0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 2px 1px -1px rgb(0 0 0 / 12%)',
+    },
+    pathPanelItem: {
+        cursor: 'pointer',
+    }
+
 });
 
-export const CollectionPanelFilesComponent = ({ onItemMenuOpen, onSearchChange, onOptionsMenuOpen, onUploadDataClick, classes,
-    isWritable, isLoading, tooManyFiles, loadFilesFunc, ...treeProps }: CollectionPanelFilesProps & WithStyles<CssRules>) => {
-    const { useState, useEffect } = React;
-    const [searchValue, setSearchValue] = useState('');
-
-    useEffect(() => {
-        onSearchChange(searchValue);
-    }, [onSearchChange, searchValue]);
-
-    return (<Card data-cy='collection-files-panel' className={classes.root}>
-        <CardHeader
-            title={
-                <div className={classes.cardHeaderContent}>
-                    <span className={classes.cardHeaderContentTitle}>Files</span>
-                    <SearchInput
-                        value={searchValue}
-                        label='Search files'
-                        onSearch={setSearchValue} />
-                </div>
+export const CollectionPanelFiles = withStyles(styles)(connect((state: RootState) => ({ 
+    auth: state.auth,
+    collectionPanel: state.collectionPanel,
+    collectionPanelFiles: state.collectionPanelFiles,
+ }))((props: CollectionPanelFilesProps & WithStyles<CssRules> & { auth: AuthState }) => {
+    const { classes, onItemMenuOpen, isWritable, dispatch, collectionPanelFiles, collectionPanel } = props;
+    const { apiToken, config } = props.auth;
+
+    const webdavClient = new WebDAV();
+    webdavClient.defaults.baseURL = config.keepWebServiceUrl;
+    webdavClient.defaults.headers = {
+        Authorization: `Bearer ${apiToken}`
+    };
+
+    const webDAVRequestConfig: WebDAVRequestConfig = {
+        headers: {
+            Depth: '1',
+        },
+    };
+
+    const parentRef = React.useRef(null);
+    const [path, setPath]: any = React.useState([]);
+    const [pathData, setPathData]: any = React.useState({});
+    const [isLoading, setIsLoading] = React.useState(false);
+
+    const leftKey = (path.length > 1 ? path.slice(0, path.length - 1) : path).join('/');
+    const rightKey = path.join('/');
+
+    React.useEffect(() => {
+        if (props.currentItemUuid) {
+            setPathData({});
+            setPath([props.currentItemUuid]);
+        }
+    }, [props.currentItemUuid]);
+
+    React.useEffect(() => {
+        if (rightKey && !pathData[rightKey] && !isLoading) {
+            webdavClient.propfind(`c=${rightKey}`, webDAVRequestConfig)
+                .then((request) => {
+                    if (request.responseXML != null) {
+                        const result: any = extractFilesData(request.responseXML);
+                        const sortedResult = result.sort((n1: any, n2: any) => n1.name > n2.name ? 1 : -1);
+                        const newPathData = { ...pathData, [rightKey]: sortedResult };
+                        setPathData(newPathData);
+                        setIsLoading(false);
+                    }
+                });
+        } else {
+            setTimeout(() => setIsLoading(false), 100);
+        }
+    }, [path, pathData, webdavClient, webDAVRequestConfig, rightKey, isLoading, collectionPanelFiles]);
+
+    const leftData = pathData[leftKey];
+    const rightData = pathData[rightKey];
+
+    React.useEffect(() => {
+        webdavClient.propfind(`c=${rightKey}`, webDAVRequestConfig)
+            .then((request) => {
+                if (request.responseXML != null) {
+                    const result: any = extractFilesData(request.responseXML);
+                    const sortedResult = result.sort((n1: any, n2: any) => n1.name > n2.name ? 1 : -1);
+                    const newPathData = { ...pathData, [rightKey]: sortedResult };
+                    setPathData(newPathData);
+                    setIsLoading(false);
+                }
+            });
+    }, [collectionPanel.item]);
+
+    React.useEffect(() => {
+        if (rightData) {
+            setCollectionFiles(rightData, false)(dispatch);
+        }
+    }, [rightData, dispatch]);
+
+    const handleRightClick = React.useCallback(
+        (event) => {
+            event.preventDefault();
+
+            let elem = event.target;
+
+            while (elem && elem.dataset && !elem.dataset.item) {
+                elem = elem.parentNode;
             }
-            className={classes.cardSubheader}
-            classes={{ action: classes.button }}
-            action={<>
-                {isWritable &&
-                    <Button
-                        data-cy='upload-button'
-                        onClick={onUploadDataClick}
-                        variant='contained'
-                        color='primary'
-                        size='small'>
-                        <DownloadIcon className={classes.uploadIcon} />
-                    Upload data
-                </Button>}
-                {!tooManyFiles &&
-                    <Tooltip title="More options" disableFocusListener>
-                        <IconButton
-                            data-cy='collection-files-panel-options-btn'
-                            onClick={(ev) => onOptionsMenuOpen(ev, isWritable)}>
-                            <CustomizeTableIcon />
-                        </IconButton>
-                    </Tooltip>}
-            </>
-            } />
-        {tooManyFiles
-            ? <div className={classes.centeredLabel}>
-                File listing may take some time, please click to browse: <Button onClick={loadFilesFunc}><DownloadIcon />Show files</Button>
-            </div>
-            : <>
-                <Grid container justify="space-between">
-                    <Typography variant="caption" className={classes.nameHeader}>
-                        Name
-                    </Typography>
-                    <Typography variant="caption" className={classes.fileSizeHeader}>
-                        File size
-                    </Typography>
-                </Grid>
-                {isLoading
-                    ? <div className={classes.centeredLabel}><CircularProgress /></div>
-                    : <div style={{ height: 'calc(100% - 60px)' }}>
-                        <FileTree
-                            onMenuOpen={(ev, item) => onItemMenuOpen(ev, item, isWritable)}
-                            {...treeProps} /></div>}
-            </>
+
+            if (!elem) {
+                return;
+            }
+
+            const { id } = elem.dataset;
+            const item: any = { id, data: rightData.find((elem) => elem.id === id) };
+
+            if (id) {
+                onItemMenuOpen(event, item, isWritable);
+            }
+        },
+        [onItemMenuOpen, isWritable, rightData]
+    );
+
+    React.useEffect(() => {
+        let node = null;
+
+        if (parentRef && parentRef.current) {
+            node = parentRef.current;
+            (node as any).addEventListener('contextmenu', handleRightClick);
         }
-    </Card>);
-};
 
-export const CollectionPanelFiles = withStyles(styles)(CollectionPanelFilesComponent);
+        return () => {
+            if (node) {
+                (node as any).removeEventListener('contextmenu', handleRightClick);
+            }
+        };
+    }, [parentRef, handleRightClick]);
+
+    const handleClick = React.useCallback(
+        (event: any) => {
+            let isCheckbox = false;
+            let elem = event.target;
+
+            if (elem.type === 'checkbox') {
+                isCheckbox = true;
+            }
+
+            while (elem && elem.dataset && !elem.dataset.item) {
+                elem = elem.parentNode;
+            }
+
+            if (elem && elem.dataset && !isCheckbox) {
+                const { parentPath, subfolderPath, breadcrumbPath, type } = elem.dataset;
+
+                setIsLoading(true);
+
+                if (breadcrumbPath) {
+                    const index = path.indexOf(breadcrumbPath);
+                    setPath([...path.slice(0, index + 1)]);
+                }
+
+                if (parentPath) {
+                    if (path.length > 1) {
+                        path.pop()
+                    }
+
+                    setPath([...path, parentPath]);
+                }
+
+                if (subfolderPath && type === 'directory') {
+                    setPath([...path, subfolderPath]);
+                }
+            }
+
+            if (isCheckbox) {
+                const { id } = elem.dataset;
+                const item = collectionPanelFiles[id];
+                props.onSelectionToggle(event, item);
+            }
+        },
+        [path, setPath, collectionPanelFiles]
+    );
+
+    const getItemIcon = React.useCallback(
+        (type: string, activeClass: string | null) => {
+            let Icon = DefaultIcon;
+
+            switch (type) {
+                case 'directory':
+                    Icon = DirectoryIcon;
+                    break;
+                case 'file':
+                    Icon = FileIcon;
+                    break;
+            }
+
+            return (
+                <ListItemIcon className={classNames(classes.listItemIcon, activeClass)}>
+                    <Icon />
+                </ListItemIcon>
+            )
+        },
+        [classes]
+    );
+
+    const getActiveClass = React.useCallback(
+        (name) => {
+            const index = path.indexOf(name);
+
+            return index === (path.length - 1) ? classes.rowActive : null
+        },
+        [path, classes]
+    );
+
+    const onOptionsMenuOpen = React.useCallback(
+        (ev, isWritable) => {
+            props.onOptionsMenuOpen(ev, isWritable);
+        },
+        [props.onOptionsMenuOpen]
+    );
+
+    return (
+        <div onClick={handleClick} ref={parentRef}>
+            <div className={classes.pathPanel}>
+                {
+                    path.map((p: string, index: number) => <span
+                        key={`${index}-${p}`}
+                        data-item="true"
+                        className={classes.pathPanelItem}
+                        data-breadcrumb-path={p}
+                    >
+                        {index === 0 ? 'Home' : p} /&nbsp;
+                    </span>)
+                }
+                <Tooltip  className={classes.pathPanelMenu} title="More options" disableFocusListener>
+                    <IconButton
+                        data-cy='collection-files-panel-options-btn'
+                        onClick={(ev) => onOptionsMenuOpen(ev, isWritable)}>
+                        <CustomizeTableIcon />
+                    </IconButton>
+                </Tooltip>
+            </div>
+            <div className={classes.wrapper}>
+                <div className={classes.leftPanel}>
+                    {
+                        leftData && !!leftData.length ?
+                            leftData.filter(({ type }) => type === 'directory').map(({ name, id, type }: any) => <div
+                                data-item="true"
+                                data-parent-path={name}
+                                className={classNames(classes.row, getActiveClass(name))}
+                                key={id}>{getItemIcon(type, getActiveClass(name))} <div className={classes.rowName}>{name}</div>
+                            </div>) : <div className={classes.row}>Loading...</div>
+                    }
+                </div>
+                <div className={classes.rightPanel}>
+                    {
+                        rightData && !isLoading ?
+                            rightData.map(({ name, id, type }: any) => <div
+                                data-id={id}
+                                data-item="true"
+                                data-type={type}
+                                data-subfolder-path={name}
+                                className={classes.row} key={id}>
+                                    <Checkbox
+                                        color="primary"
+                                        className={classes.rowSelection}
+                                        checked={collectionPanelFiles[id] ? collectionPanelFiles[id].value.selected : false}
+                                    />&nbsp;
+                                    {getItemIcon(type, null)} <div className={classes.rowName}>
+                                    {name}
+                                </div>
+                            </div>) : <div className={classes.row}>Loading...</div>
+                    }
+                </div>
+            </div>
+        </div>
+    );
+}));
diff --git a/src/components/collection-panel-files/collection-panel-files2.tsx b/src/components/collection-panel-files/collection-panel-files2.tsx
new file mode 100644 (file)
index 0000000..4118248
--- /dev/null
@@ -0,0 +1,138 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
+import React from 'react';
+import { TreeItem, TreeItemStatus } from 'components/tree/tree';
+import { FileTreeData } from 'components/file-tree/file-tree-data';
+import { FileTree } from 'components/file-tree/file-tree';
+import { IconButton, Grid, Typography, StyleRulesCallback, withStyles, WithStyles, CardHeader, Card, Button, Tooltip, CircularProgress } from '@material-ui/core';
+import { CustomizeTableIcon } from 'components/icon/icon';
+import { DownloadIcon } from 'components/icon/icon';
+import { SearchInput } from '../search-input/search-input';
+
+export interface CollectionPanelFilesProps {
+    items: Array<TreeItem<FileTreeData>>;
+    isWritable: boolean;
+    isLoading: boolean;
+    tooManyFiles: boolean;
+    onUploadDataClick: () => void;
+    onSearchChange: (searchValue: string) => void;
+    onItemMenuOpen: (event: React.MouseEvent<HTMLElement>, item: TreeItem<FileTreeData>, isWritable: boolean) => void;
+    onOptionsMenuOpen: (event: React.MouseEvent<HTMLElement>, isWritable: boolean) => void;
+    onSelectionToggle: (event: React.MouseEvent<HTMLElement>, item: TreeItem<FileTreeData>) => void;
+    onCollapseToggle: (id: string, status: TreeItemStatus) => void;
+    onFileClick: (id: string) => void;
+    loadFilesFunc: () => void;
+    currentItemUuid?: string;
+}
+
+export type CssRules = 'root' | 'cardSubheader' | 'nameHeader' | 'fileSizeHeader' | 'uploadIcon' | 'button' | 'centeredLabel' | 'cardHeaderContent' | 'cardHeaderContentTitle';
+
+const styles: StyleRulesCallback<CssRules> = theme => ({
+    root: {
+        paddingBottom: theme.spacing.unit,
+        height: '100%'
+    },
+    cardSubheader: {
+        paddingTop: 0,
+        paddingBottom: 0,
+        minHeight: 8 * theme.spacing.unit,
+    },
+    cardHeaderContent: {
+        display: 'flex',
+        paddingRight: 2 * theme.spacing.unit,
+        justifyContent: 'space-between',
+    },
+    cardHeaderContentTitle: {
+        paddingLeft: theme.spacing.unit,
+        paddingTop: 2 * theme.spacing.unit,
+        paddingRight: 2 * theme.spacing.unit,
+    },
+    nameHeader: {
+        marginLeft: '75px'
+    },
+    fileSizeHeader: {
+        marginRight: '65px'
+    },
+    uploadIcon: {
+        transform: 'rotate(180deg)'
+    },
+    button: {
+        marginRight: -theme.spacing.unit,
+        marginTop: '8px'
+    },
+    centeredLabel: {
+        fontSize: '0.875rem',
+        textAlign: 'center'
+    },
+});
+
+export const CollectionPanelFilesComponent = ({ onItemMenuOpen, onSearchChange, onOptionsMenuOpen, onUploadDataClick, classes,
+    isWritable, isLoading, tooManyFiles, loadFilesFunc, ...treeProps }: CollectionPanelFilesProps & WithStyles<CssRules>) => {
+    const { useState, useEffect } = React;
+    const [searchValue, setSearchValue] = useState('');
+
+    useEffect(() => {
+        onSearchChange(searchValue);
+    }, [onSearchChange, searchValue]);
+
+    return (<Card data-cy='collection-files-panel' className={classes.root}>
+        <CardHeader
+            title={
+                <div className={classes.cardHeaderContent}>
+                    <span className={classes.cardHeaderContentTitle}>Files</span>
+                    <SearchInput
+                        value={searchValue}
+                        label='Search files'
+                        onSearch={setSearchValue} />
+                </div>
+            }
+            className={classes.cardSubheader}
+            classes={{ action: classes.button }}
+            action={<>
+                {isWritable &&
+                    <Button
+                        data-cy='upload-button'
+                        onClick={onUploadDataClick}
+                        variant='contained'
+                        color='primary'
+                        size='small'>
+                        <DownloadIcon className={classes.uploadIcon} />
+                    Upload data
+                </Button>}
+                {!tooManyFiles &&
+                    <Tooltip title="More options" disableFocusListener>
+                        <IconButton
+                            data-cy='collection-files-panel-options-btn'
+                            onClick={(ev) => onOptionsMenuOpen(ev, isWritable)}>
+                            <CustomizeTableIcon />
+                        </IconButton>
+                    </Tooltip>}
+            </>
+            } />
+        {tooManyFiles
+            ? <div className={classes.centeredLabel}>
+                File listing may take some time, please click to browse: <Button onClick={loadFilesFunc}><DownloadIcon />Show files</Button>
+            </div>
+            : <>
+                <Grid container justify="space-between">
+                    <Typography variant="caption" className={classes.nameHeader}>
+                        Name
+                    </Typography>
+                    <Typography variant="caption" className={classes.fileSizeHeader}>
+                        File size
+                    </Typography>
+                </Grid>
+                {isLoading
+                    ? <div className={classes.centeredLabel}><CircularProgress /></div>
+                    : <div style={{ height: 'calc(100% - 60px)' }}>
+                        <FileTree
+                            onMenuOpen={(ev, item) => onItemMenuOpen(ev, item, isWritable)}
+                            {...treeProps} /></div>}
+            </>
+        }
+    </Card>);
+};
+
+export const CollectionPanelFiles = withStyles(styles)(CollectionPanelFilesComponent);
index 2d62194bd3f7ab8e91466d066b66fcc100e02191..6ad22a551633a71d577ebe74e35f632d894f05ba 100644 (file)
@@ -19,6 +19,7 @@ import { createServices } from "services/services";
 import { MuiThemeProvider } from '@material-ui/core/styles';
 import { CustomTheme } from 'common/custom-theme';
 import { fetchConfig } from 'common/config';
+import servicesProvider from 'common/service-provider';
 import { addMenuActionSet, ContextMenuKind } from 'views-components/context-menu/context-menu';
 import { rootProjectActionSet } from "views-components/context-menu/action-sets/root-project-action-set";
 import { filterGroupActionSet, projectActionSet, readOnlyProjectActionSet } from "views-components/context-menu/action-sets/project-action-set";
@@ -136,6 +137,10 @@ fetchConfig()
                 }
             }
         });
+
+        // be sure this is initiated before the app starts
+        servicesProvider.setServices(services);
+
         const store = configureStore(history, services, config);
 
         store.subscribe(initListener(history, store, services, config));
index 3951d272ee8f3d046c96036be440fef8187f9e91..91008d1fdaf15d33f824ae40c2a694dbb38f5efd 100644 (file)
@@ -52,7 +52,7 @@ export const createCollectionFile = (data: Partial<CollectionFile>): CollectionF
     ...data
 });
 
-export const createCollectionFilesTree = (data: Array<CollectionDirectory | CollectionFile>) => {
+export const createCollectionFilesTree = (data: Array<CollectionDirectory | CollectionFile>, joinParents: Boolean = true) => {
     const directories = data.filter(item => item.type === CollectionFileType.DIRECTORY);
     directories.sort((a, b) => a.path.localeCompare(b.path));
     const files = data.filter(item => item.type === CollectionFileType.FILE);
@@ -60,7 +60,7 @@ export const createCollectionFilesTree = (data: Array<CollectionDirectory | Coll
         .reduce((tree, item) => setNode({
             children: [],
             id: item.id,
-            parent: getParentId(item),
+            parent: joinParents ? getParentId(item) : '',
             value: item,
             active: false,
             selected: false,
index 813fe4461367ad66071195d0b6c5a206b278b90f..7401c64ae3a5c79e1279a5459adee66e0fd08606 100644 (file)
@@ -40,7 +40,7 @@ export const loadCollectionPanel = (uuid: string, forceReload = false) =>
         dispatch(resourcesActions.SET_RESOURCES([collection]));
         if (collection.fileCount <= COLLECTION_PANEL_LOAD_FILES_THRESHOLD &&
             !getState().collectionPanel.loadBigCollections) {
-            dispatch<any>(loadCollectionFiles(collection.uuid));
+            // dispatch<any>(loadCollectionFiles(collection.uuid));
         }
         return collection;
     };
index 3217d01439e084bd96aca8230cd96e74fc11bcac..71e1f6e8eed4b02343552843a746c29d10494a1b 100644 (file)
@@ -4,6 +4,7 @@
 
 import { unionize, ofType, UnionOf } from "common/unionize";
 import { Dispatch } from "redux";
+import servicesProvider from 'common/service-provider';
 import { CollectionFilesTree, CollectionFileType, createCollectionFilesTree } from "models/collection-file";
 import { ServiceRepository } from "services/services";
 import { RootState } from "../../store";
@@ -31,6 +32,13 @@ export type CollectionPanelFilesAction = UnionOf<typeof collectionPanelFilesActi
 export const COLLECTION_PANEL_LOAD_FILES = 'collectionPanelLoadFiles';
 export const COLLECTION_PANEL_LOAD_FILES_THRESHOLD = 40000;
 
+export const setCollectionFiles = (files, joinParents = true) => (dispatch: any) => {
+    const tree = createCollectionFilesTree(files, joinParents);
+    const sorted = sortFilesTree(tree);
+    const mapped = mapTreeValues(servicesProvider.getServices().collectionService.extendFileURL)(sorted);
+    dispatch(collectionPanelFilesAction.SET_COLLECTION_FILES(mapped));
+};
+
 export const loadCollectionFiles = (uuid: string) =>
     (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
         dispatch(progressIndicatorActions.START_WORKING(COLLECTION_PANEL_LOAD_FILES));