17585: First initial impl
[arvados-workbench2.git] / src / components / collection-panel-files / collection-panel-files.tsx
index afe9e8517cc4027d5e90a4fca4d6007a560ea5d1..a6bce0f23e724be018dc0f87a3ef11f6d3b0ab8b 100644 (file)
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import * as React from 'react';
-import { TreeItem, TreeItemStatus } from '../tree/tree';
+import React from 'react';
+import classNames from 'classnames';
+import { connect } from 'react-redux';
+import { CustomizeTableIcon } from 'components/icon/icon';
+import { ListItemIcon, StyleRulesCallback, Theme, WithStyles, withStyles, Tooltip, IconButton, Checkbox } from '@material-ui/core';
 import { FileTreeData } from '../file-tree/file-tree-data';
-import { FileTree } from '../file-tree/file-tree';
-import { IconButton, Grid, Typography, StyleRulesCallback, withStyles, WithStyles, CardHeader, CardContent, Card, Button } from '@material-ui/core';
-import { CustomizeTableIcon } from '../icon/icon';
-import { connect, DispatchProp } from "react-redux";
-import { Dispatch } from "redux";
-import { RootState } from "../../store/store";
-import { ServiceRepository } from "../../services/services";
+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;
     onUploadDataClick: () => void;
-    onItemMenuOpen: (event: React.MouseEvent<HTMLElement>, item: TreeItem<FileTreeData>) => void;
-    onOptionsMenuOpen: (event: React.MouseEvent<HTMLElement>) => 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: any;
+    dispatch: Function;
+    collectionPanelFiles: any;
+    collectionPanel: any;
 }
 
-type CssRules = 'root' | 'cardSubheader' | 'nameHeader' | 'fileSizeHeader';
+type CssRules = "wrapper" | "row" | "leftPanel" | "rightPanel" | "pathPanel" | "pathPanelItem" | "rowName" | "listItemIcon" | "rowActive" | "pathPanelMenu" | "rowSelection";
 
-const styles: StyleRulesCallback<CssRules> = theme => ({
-    root: {
-        paddingBottom: theme.spacing.unit
+const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
+    wrapper: {
+        display: 'flex',
+    },
+    row: {
+        display: 'flex',
+        margin: '0.5rem',
+        cursor: 'pointer',
+        "&:hover": {
+            backgroundColor: 'rgba(0, 0, 0, 0.08)',
+        }
+    },
+    rowName: {
+        paddingTop: '6px',
+        paddingBottom: '6px',
+    },
+    rowSelection: {
+        padding: '0px',
+    },
+    rowActive: {
+        color: `${theme.palette.primary.main} !important`,
     },
-    cardSubheader: {
-        paddingTop: 0,
-        paddingBottom: 0
+    listItemIcon: {
+        marginTop: '2px',
     },
-    nameHeader: {
-        marginLeft: '75px'
+    pathPanelMenu: {
+        float: 'right',
+        marginTop: '-15px',
     },
-    fileSizeHeader: {
-        marginRight: '65px'
+    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%)',
+    },
+    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',
     }
+
 });
 
-const renameFile = () => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
-  services.collectionFilesService.renameTest();
-};
-
-
-export const CollectionPanelFiles =
-    connect()(
-    withStyles(styles)(
-    ({ onItemMenuOpen, onOptionsMenuOpen, classes, dispatch, ...treeProps }: CollectionPanelFilesProps & DispatchProp & WithStyles<CssRules>) =>
-        <Card className={classes.root}>
-            <CardHeader
-                title="Files"
-                action={
-                    <Button onClick={
-                        () => {
-                            dispatch<any>(renameFile());
-                        }}
-                        variant='raised'
-                        color='primary'
-                        size='small'>
-                        Upload data
-                    </Button>
-                } />
-            <CardHeader
-                className={classes.cardSubheader}
-                action={
-                    <IconButton onClick={onOptionsMenuOpen}>
+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;
+            }
+
+            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);
+        }
+
+        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>
-                } />
-            <Grid container justify="space-between">
-                <Typography variant="caption" className={classes.nameHeader}>
-                    Name
-                    </Typography>
-                <Typography variant="caption" className={classes.fileSizeHeader}>
-                    File size
-                    </Typography>
-            </Grid>
-            <FileTree onMenuOpen={onItemMenuOpen} {...treeProps} />
-        </Card>)
-);
+                </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>
+    );
+}));