18787: Avoids doing useless webdav PROPFIND calls with empty strings as UUIDs.
[arvados-workbench2.git] / src / components / collection-panel-files / collection-panel-files.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import React from 'react';
6 import classNames from 'classnames';
7 import { connect } from 'react-redux';
8 import { FixedSizeList } from "react-window";
9 import AutoSizer from "react-virtualized-auto-sizer";
10 import servicesProvider from 'common/service-provider';
11 import { CustomizeTableIcon, DownloadIcon } from 'components/icon/icon';
12 import { SearchInput } from 'components/search-input/search-input';
13 import { ListItemIcon, StyleRulesCallback, Theme, WithStyles, withStyles, Tooltip, IconButton, Checkbox, CircularProgress, Button } from '@material-ui/core';
14 import { FileTreeData } from '../file-tree/file-tree-data';
15 import { TreeItem, TreeItemStatus } from '../tree/tree';
16 import { RootState } from 'store/store';
17 import { WebDAV, WebDAVRequestConfig } from 'common/webdav';
18 import { AuthState } from 'store/auth/auth-reducer';
19 import { extractFilesData } from 'services/collection-service/collection-service-files-response';
20 import { DefaultIcon, DirectoryIcon, FileIcon, BackIcon, SidePanelRightArrowIcon } from 'components/icon/icon';
21 import { setCollectionFiles } from 'store/collection-panel/collection-panel-files/collection-panel-files-actions';
22 import { sortBy } from 'lodash';
23 import { formatFileSize } from 'common/formatters';
24 import { getInlineFileUrl, sanitizeToken } from 'views-components/context-menu/actions/helpers';
25
26 export interface CollectionPanelFilesProps {
27     items: any;
28     isWritable: boolean;
29     isLoading: boolean;
30     tooManyFiles: boolean;
31     onUploadDataClick: (targetLocation?: string) => void;
32     onSearchChange: (searchValue: string) => void;
33     onItemMenuOpen: (event: React.MouseEvent<HTMLElement>, item: TreeItem<FileTreeData>, isWritable: boolean) => void;
34     onOptionsMenuOpen: (event: React.MouseEvent<HTMLElement>, isWritable: boolean) => void;
35     onSelectionToggle: (event: React.MouseEvent<HTMLElement>, item: TreeItem<FileTreeData>) => void;
36     onCollapseToggle: (id: string, status: TreeItemStatus) => void;
37     onFileClick: (id: string) => void;
38     loadFilesFunc: () => void;
39     currentItemUuid: any;
40     dispatch: Function;
41     collectionPanelFiles: any;
42     collectionPanel: any;
43 }
44
45 type CssRules = "backButton" | "backButtonHidden" | "pathPanelPathWrapper" | "uploadButton" | "uploadIcon" | "loader" | "wrapper" | "dataWrapper" | "row" | "rowEmpty" | "leftPanel" | "rightPanel" | "pathPanel" | "pathPanelItem" | "rowName" | "listItemIcon" | "rowActive" | "pathPanelMenu" | "rowSelection" | "leftPanelHidden" | "leftPanelVisible" | "searchWrapper" | "searchWrapperHidden";
46
47 const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
48     wrapper: {
49         display: 'flex',
50         minHeight: '600px',
51         color: 'rgba(0, 0, 0, 0.87)',
52         fontSize: '0.875rem',
53         fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
54         fontWeight: 400,
55         lineHeight: '1.5',
56         letterSpacing: '0.01071em'
57     },
58     backButton: {
59         color: '#00bfa5',
60         cursor: 'pointer',
61         float: 'left',
62     },
63     backButtonHidden: {
64         display: 'none',
65     },
66     dataWrapper: {
67         minHeight: '500px'
68     },
69     row: {
70         display: 'flex',
71         marginTop: '0.5rem',
72         marginBottom: '0.5rem',
73         cursor: 'pointer',
74         "&:hover": {
75             backgroundColor: 'rgba(0, 0, 0, 0.08)',
76         }
77     },
78     rowEmpty: {
79         top: '40%',
80         width: '100%',
81         textAlign: 'center',
82         position: 'absolute'
83     },
84     loader: {
85         top: '50%',
86         left: '50%',
87         marginTop: '-15px',
88         marginLeft: '-15px',
89         position: 'absolute'
90     },
91     rowName: {
92         display: 'inline-flex',
93         flexDirection: 'column',
94         justifyContent: 'center'
95     },
96     searchWrapper: {
97         display: 'inline-block',
98         marginBottom: '1rem',
99         marginLeft: '1rem',
100     },
101     searchWrapperHidden: {
102         width: '0px'
103     },
104     rowSelection: {
105         padding: '0px',
106     },
107     rowActive: {
108         color: `${theme.palette.primary.main} !important`,
109     },
110     listItemIcon: {
111         display: 'inline-flex',
112         flexDirection: 'column',
113         justifyContent: 'center'
114     },
115     pathPanelMenu: {
116         float: 'right',
117         marginTop: '-15px',
118     },
119     pathPanel: {
120         padding: '1rem',
121         marginBottom: '1rem',
122         backgroundColor: '#fff',
123         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%)',
124     },
125     pathPanelPathWrapper: {
126         display: 'inline-block',
127     },
128     leftPanel: {
129         flex: 0,
130         padding: '1rem',
131         marginRight: '1rem',
132         whiteSpace: 'nowrap',
133         position: 'relative',
134         backgroundColor: '#fff',
135         boxShadow: '0px 3px 3px 0px rgb(0 0 0 / 20%), 0px 3px 1px 0px rgb(0 0 0 / 14%), 0px 3px 1px -1px rgb(0 0 0 / 12%)',
136     },
137     leftPanelVisible: {
138         opacity: 1,
139         flex: '50%',
140         animation: `animateVisible 1000ms ${theme.transitions.easing.easeOut}`
141     },
142     leftPanelHidden: {
143         opacity: 0,
144         flex: 'initial',
145         padding: '0',
146         marginRight: '0',
147     },
148     "@keyframes animateVisible": {
149         "0%": {
150             opacity: 0,
151             flex: 'initial',
152         },
153         "100%": {
154             opacity: 1,
155             flex: '50%',
156         }
157     },
158     rightPanel: {
159         flex: '50%',
160         padding: '1rem',
161         paddingTop: '2rem',
162         marginTop: '-1rem',
163         position: 'relative',
164         backgroundColor: '#fff',
165         boxShadow: '0px 3px 3px 0px rgb(0 0 0 / 20%), 0px 3px 1px 0px rgb(0 0 0 / 14%), 0px 3px 1px -1px rgb(0 0 0 / 12%)',
166     },
167     pathPanelItem: {
168         cursor: 'pointer',
169     },
170     uploadIcon: {
171         transform: 'rotate(180deg)'
172     },
173     uploadButton: {
174         float: 'right',
175     }
176 });
177
178 const pathPromise = {};
179
180 export const CollectionPanelFiles = withStyles(styles)(connect((state: RootState) => ({
181     auth: state.auth,
182     collectionPanel: state.collectionPanel,
183     collectionPanelFiles: state.collectionPanelFiles,
184 }))((props: CollectionPanelFilesProps & WithStyles<CssRules> & { auth: AuthState }) => {
185     const { classes, onItemMenuOpen, onUploadDataClick, isWritable, dispatch, collectionPanelFiles, collectionPanel } = props;
186     const { apiToken, config } = props.auth;
187
188     const webdavClient = new WebDAV();
189     webdavClient.defaults.baseURL = config.keepWebServiceUrl;
190     webdavClient.defaults.headers = {
191         Authorization: `Bearer ${apiToken}`
192     };
193
194     const webDAVRequestConfig: WebDAVRequestConfig = {
195         headers: {
196             Depth: '1',
197         },
198     };
199
200     const parentRef = React.useRef(null);
201     const [path, setPath]: any = React.useState([]);
202     const [pathData, setPathData]: any = React.useState({});
203     const [isLoading, setIsLoading] = React.useState(false);
204     const [leftSearch, setLeftSearch] = React.useState('');
205     const [rightSearch, setRightSearch] = React.useState('');
206
207     const leftKey = (path.length > 1 ? path.slice(0, path.length - 1) : path).join('/');
208     const rightKey = path.join('/');
209
210     const leftData = pathData[leftKey] || [];
211     const rightData = pathData[rightKey];
212
213     React.useEffect(() => {
214         if (props.currentItemUuid) {
215             setPathData({});
216             setPath([props.currentItemUuid]);
217         }
218     }, [props.currentItemUuid]);
219
220     const fetchData = (keys, ignoreCache = false) => {
221         console.log('---> fetchData', keys);
222         const keyArray = Array.isArray(keys) ? keys : [keys];
223
224         Promise.all(keyArray.filter(key => !!key)
225             .map((key) => {
226                 const dataExists = !!pathData[key];
227                 const runningRequest = pathPromise[key];
228
229                 if ((!dataExists || ignoreCache) && (!runningRequest || ignoreCache)) {
230                     if (!isLoading) {
231                         setIsLoading(true);
232                     }
233
234                     pathPromise[key] = true;
235
236                     console.log('>>> fetching data for key', key);
237                     return webdavClient.propfind(`c=${key}`, webDAVRequestConfig);
238                 }
239
240                 return Promise.resolve(null);
241             })
242             .filter((promise) => !!promise)
243         )
244         .then((requests) => {
245             const newState = requests.map((request, index) => {
246                 if (request && request.responseXML != null) {
247                     const key = keyArray[index];
248                     const result: any = extractFilesData(request.responseXML);
249                     const sortedResult = sortBy(result, (n) => n.name).sort((n1, n2) => {
250                         if (n1.type === 'directory' && n2.type !== 'directory') {
251                             return -1;
252                         }
253                         if (n1.type !== 'directory' && n2.type === 'directory') {
254                             return 1;
255                         }
256                         return 0;
257                     });
258
259                     return { [key]: sortedResult };
260                 }
261                 return {};
262             }).reduce((prev, next) => {
263                 return { ...next, ...prev };
264             }, {});
265
266             setPathData({ ...pathData, ...newState });
267         })
268         .finally(() => {
269             setIsLoading(false);
270             keyArray.forEach(key => delete pathPromise[key]);
271         });
272     };
273
274     React.useEffect(() => {
275         if (rightKey) {
276             fetchData(rightKey);
277             setLeftSearch('');
278             setRightSearch('');
279         }
280     }, [rightKey]); // eslint-disable-line react-hooks/exhaustive-deps
281
282     const currentPDH = (collectionPanel.item || {}).portableDataHash;
283     React.useEffect(() => {
284         if (currentPDH) {
285             fetchData([leftKey, rightKey], true);
286         }
287     }, [currentPDH]); // eslint-disable-line react-hooks/exhaustive-deps
288
289     React.useEffect(() => {
290         if (rightData) {
291             const filtered = rightData.filter(({ name }) => name.indexOf(rightSearch) > -1);
292             setCollectionFiles(filtered, false)(dispatch);
293         }
294     }, [rightData, dispatch, rightSearch]);
295
296     const handleRightClick = React.useCallback(
297         (event) => {
298             event.preventDefault();
299             let elem = event.target;
300
301             while (elem && elem.dataset && !elem.dataset.item) {
302                 elem = elem.parentNode;
303             }
304
305             if (!elem || !elem.dataset) {
306                 return;
307             }
308
309             const { id } = elem.dataset;
310
311             const item: any = {
312                 id,
313                 data: rightData.find((elem) => elem.id === id),
314             };
315
316             if (id) {
317                 onItemMenuOpen(event, item, isWritable);
318             }
319         },
320         [onItemMenuOpen, isWritable, rightData] // eslint-disable-line react-hooks/exhaustive-deps
321     );
322
323     React.useEffect(() => {
324         let node = null;
325
326         if (parentRef && parentRef.current) {
327             node = parentRef.current;
328             (node as any).addEventListener('contextmenu', handleRightClick);
329         }
330
331         return () => {
332             if (node) {
333                 (node as any).removeEventListener('contextmenu', handleRightClick);
334             }
335         };
336     }, [parentRef, handleRightClick]);
337
338     const handleClick = React.useCallback(
339         (event: any) => {
340             let isCheckbox = false;
341             let elem = event.target;
342
343             if (elem.type === 'checkbox') {
344                 isCheckbox = true;
345             }
346
347             while (elem && elem.dataset && !elem.dataset.item) {
348                 elem = elem.parentNode;
349             }
350
351             if (elem && elem.dataset && !isCheckbox) {
352                 const { parentPath, subfolderPath, breadcrumbPath, type } = elem.dataset;
353
354                 if (breadcrumbPath) {
355                     const index = path.indexOf(breadcrumbPath);
356                     setPath([...path.slice(0, index + 1)]);
357                 }
358
359                 if (parentPath && type === 'directory') {
360                     if (path.length > 1) {
361                         path.pop()
362                     }
363
364                     setPath([...path, parentPath]);
365                 }
366
367                 if (subfolderPath && type === 'directory') {
368                     setPath([...path, subfolderPath]);
369                 }
370
371                 if (elem.dataset.id && type === 'file') {
372                     const item = rightData.find(({id}) => id === elem.dataset.id) || leftData.find(({ id }) => id === elem.dataset.id);
373                     const enhancedItem = servicesProvider.getServices().collectionService.extendFileURL(item);
374                     const fileUrl = sanitizeToken(getInlineFileUrl(enhancedItem.url, config.keepWebServiceUrl, config.keepWebInlineServiceUrl), true);
375                     window.open(fileUrl, '_blank');
376                 }
377             }
378
379             if (isCheckbox) {
380                 const { id } = elem.dataset;
381                 const item = collectionPanelFiles[id];
382                 props.onSelectionToggle(event, item);
383             }
384         },
385         [path, setPath, collectionPanelFiles] // eslint-disable-line react-hooks/exhaustive-deps
386     );
387
388     const getItemIcon = React.useCallback(
389         (type: string, activeClass: string | null) => {
390             let Icon = DefaultIcon;
391
392             switch (type) {
393                 case 'directory':
394                     Icon = DirectoryIcon;
395                     break;
396                 case 'file':
397                     Icon = FileIcon;
398                     break;
399             }
400
401             return (
402                 <ListItemIcon className={classNames(classes.listItemIcon, activeClass)}>
403                     <Icon />
404                 </ListItemIcon>
405             )
406         },
407         [classes]
408     );
409
410     const getActiveClass = React.useCallback(
411         (name) => {
412             return path[path.length - 1] === name ? classes.rowActive : null;
413         },
414         [path, classes]
415     );
416
417     const onOptionsMenuOpen = React.useCallback(
418         (ev, isWritable) => {
419             props.onOptionsMenuOpen(ev, isWritable);
420         },
421         [props.onOptionsMenuOpen] // eslint-disable-line react-hooks/exhaustive-deps
422     );
423
424     return <div data-cy="collection-files-panel" onClick={handleClick} ref={parentRef}>
425         <div className={classes.pathPanel}>
426             <div className={classes.pathPanelPathWrapper}>
427                 { path.map((p: string, index: number) => <span
428                     key={`${index}-${p}`}
429                     data-item="true"
430                     className={classes.pathPanelItem}
431                     data-breadcrumb-path={p}
432                 >
433                     <span className={classes.rowActive}>{index === 0 ? 'Home' : p}</span> <b>/</b>&nbsp;
434                 </span>) }
435             </div>
436             <Tooltip className={classes.pathPanelMenu} title="More options" disableFocusListener>
437                 <IconButton
438                     data-cy='collection-files-panel-options-btn'
439                     onClick={(ev) => {
440                         onOptionsMenuOpen(ev, isWritable);
441                     }}>
442                     <CustomizeTableIcon />
443                 </IconButton>
444             </Tooltip>
445         </div>
446         <div className={classes.wrapper}>
447             <div className={classNames(classes.leftPanel, path.length > 1 ? classes.leftPanelVisible : classes.leftPanelHidden)}  data-cy="collection-files-left-panel">
448                 <Tooltip title="Go back" className={path.length > 1 ? classes.backButton : classes.backButtonHidden}>
449                     <IconButton onClick={() => setPath([...path.slice(0, path.length -1)])}>
450                         <BackIcon />
451                     </IconButton>
452                 </Tooltip>
453             </div>
454             <div className={classes.wrapper}>
455                 <div className={classNames(classes.leftPanel, path.length > 1 ? classes.leftPanelVisible : classes.leftPanelHidden)}  data-cy="collection-files-left-panel">
456                     <Tooltip title="Go back" className={path.length > 1 ? classes.backButton : classes.backButtonHidden}>
457                         <IconButton onClick={() => setPath([...path.slice(0, path.length -1)])}>
458                             <BackIcon />
459                         </IconButton>
460                     </Tooltip>
461                     <div className={path.length > 1 ? classes.searchWrapper : classes.searchWrapperHidden}>
462                         <SearchInput selfClearProp={leftKey} label="Search" value={leftSearch} onSearch={setLeftSearch} />
463                     </div>
464                     <div className={classes.dataWrapper}>
465                         {
466                             leftData ?
467                                 <AutoSizer defaultWidth={0}>
468                                     {({ height, width }) => {
469                                         const filtered = leftData.filter(({ name }) => name.indexOf(leftSearch) > -1);
470
471                                         return !!filtered.length ? <FixedSizeList
472                                             height={height}
473                                             itemCount={filtered.length}
474                                             itemSize={35}
475                                             width={width}
476                                         >
477                                             {
478                                                 ({ index, style }) => {
479                                                     const { id, type, name } = filtered[index];
480
481                                                     return <div
482                                                         data-id={id}
483                                                         style={style}
484                                                         data-item="true"
485                                                         data-type={type}
486                                                         data-parent-path={name}
487                                                         className={classNames(classes.row, getActiveClass(name))}
488                                                         key={id}>
489                                                             {getItemIcon(type, getActiveClass(name))}
490                                                             <div className={classes.rowName}>
491                                                                 {name}
492                                                             </div>
493                                                             {
494                                                                 getActiveClass(name) ? <SidePanelRightArrowIcon
495                                                                     style={{ display: 'inline', marginTop: '5px', marginLeft: '5px' }} /> : null
496                                                             }
497                                                     </div>;
498                                                 }
499                                             }
500                                         </FixedSizeList> : <div className={classes.rowEmpty}>No directories available</div>
501                                     }}
502                                 </AutoSizer> : <div className={classes.row}><CircularProgress className={classes.loader} size={30} /></div>
503                         }
504
505                     </div>
506                 </div>
507                 <div className={classes.rightPanel} data-cy="collection-files-right-panel">
508                     <div className={classes.searchWrapper}>
509                         <SearchInput selfClearProp={rightKey} label="Search" value={rightSearch} onSearch={setRightSearch} />
510                     </div>
511                     {
512                         isWritable &&
513                         <Button
514                             className={classes.uploadButton}
515                             data-cy='upload-button'
516                             onClick={() => {
517                                 onUploadDataClick(rightKey === leftKey ? undefined : rightKey);
518                             }}
519                             variant='contained'
520                             color='primary'
521                             size='small'>
522                             <DownloadIcon className={classes.uploadIcon} />
523                             Upload data
524                         </Button>
525                     }
526                     <div className={classes.dataWrapper}>
527                         {
528                             rightData && !isLoading ?
529                                 <AutoSizer defaultHeight={500}>
530                                     {({ height, width }) => {
531                                         const filtered = rightData.filter(({ name }) => name.indexOf(rightSearch) > -1);
532
533                         return !!filtered.length
534                         ? <FixedSizeList height={height} itemCount={filtered.length}
535                             itemSize={35} width={width}>{ ({ index, style }) => {
536                             console.log("Left Data ROW: ", filtered[index]);
537                             const { id, type, name } = filtered[index];
538
539                             return <div data-id={id} style={style} data-item="true"
540                                 data-type={type} data-parent-path={name} key={id}
541                                 className={classNames(classes.row, getActiveClass(name))}>
542                                     { getItemIcon(type, getActiveClass(name)) }
543                                     <div className={classes.rowName}>
544                                         {name}
545                                     </div>
546                                     { getActiveClass(name)
547                                     ? <SidePanelRightArrowIcon style={{
548                                         display: 'inline',
549                                         marginTop: '5px',
550                                         marginLeft: '5px' }} />
551                                     : null }
552                             </div>;
553                         } }</FixedSizeList>
554                         : <div className={classes.rowEmpty}>No directories available</div>
555                     } }</AutoSizer>
556                     : <div className={classes.row}>
557                         <CircularProgress className={classes.loader} size={30} />
558                     </div> }
559                 </div>
560             </div>
561             <div className={classes.rightPanel}>
562                 <div className={classes.searchWrapper}>
563                     <SearchInput selfClearProp={rightKey} label="Search" value={rightSearch} onSearch={setRightSearch} />
564                 </div>
565                 { isWritable &&
566                 <Button className={classes.uploadButton} data-cy='upload-button'
567                     onClick={() => {
568                         onUploadDataClick();
569                     }}
570                     variant='contained' color='primary' size='small'>
571                     <DownloadIcon className={classes.uploadIcon} />
572                     Upload data
573                 </Button> }
574                 <div className={classes.dataWrapper}>{ rightData && !isLoading
575                     ? <AutoSizer defaultHeight={500}>{({ height, width }) => {
576                         const filtered = rightData.filter(({ name }) => name.indexOf(rightSearch) > -1);
577
578                         return !!filtered.length
579                         ? <FixedSizeList height={height} itemCount={filtered.length}
580                             itemSize={35} width={width}>{ ({ index, style }) => {
581                                 console.log("Right Data ROW: ", filtered[index]);
582                                 const { id, type, name, size } = filtered[index];
583
584                                 return <div style={style} data-id={id} data-item="true"
585                                     data-type={type} data-subfolder-path={name}
586                                     className={classes.row} key={id}>
587                                     <Checkbox color="primary"
588                                         className={classes.rowSelection}
589                                         checked={collectionPanelFiles[id] ? collectionPanelFiles[id].value.selected : false}
590                                     />&nbsp;
591                                     {getItemIcon(type, null)}
592                                     <div className={classes.rowName}>
593                                         {name}
594                                     </div>
595                                     <span className={classes.rowName} style={{
596                                         marginLeft: 'auto', marginRight: '1rem' }}>
597                                         { formatFileSize(size) }
598                                     </span>
599                                 </div>
600                             } }</FixedSizeList>
601                         : <div className={classes.rowEmpty}>This collection is empty</div>
602                     }}</AutoSizer>
603                     : <div className={classes.row}>
604                         <CircularProgress className={classes.loader} size={30} />
605                     </div> }
606                 </div>
607             </div>
608         </div>
609     </div>}));