1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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';
26 export interface CollectionPanelFilesProps {
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;
41 collectionPanelFiles: any;
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";
47 const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
51 color: 'rgba(0, 0, 0, 0.87)',
53 fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
56 letterSpacing: '0.01071em'
72 marginBottom: '0.5rem',
75 backgroundColor: 'rgba(0, 0, 0, 0.08)',
92 display: 'inline-flex',
93 flexDirection: 'column',
94 justifyContent: 'center'
97 display: 'inline-block',
101 searchWrapperHidden: {
108 color: `${theme.palette.primary.main} !important`,
111 display: 'inline-flex',
112 flexDirection: 'column',
113 justifyContent: 'center'
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%)',
125 pathPanelPathWrapper: {
126 display: 'inline-block',
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%)',
140 animation: `animateVisible 1000ms ${theme.transitions.easing.easeOut}`
148 "@keyframes animateVisible": {
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%)',
171 transform: 'rotate(180deg)'
178 const pathPromise = {};
180 export const CollectionPanelFiles = withStyles(styles)(connect((state: RootState) => ({
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;
188 const webdavClient = new WebDAV();
189 webdavClient.defaults.baseURL = config.keepWebServiceUrl;
190 webdavClient.defaults.headers = {
191 Authorization: `Bearer ${apiToken}`
194 const webDAVRequestConfig: WebDAVRequestConfig = {
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('');
207 const leftKey = (path.length > 1 ? path.slice(0, path.length - 1) : path).join('/');
208 const rightKey = path.join('/');
210 const leftData = pathData[leftKey] || [];
211 const rightData = pathData[rightKey];
213 React.useEffect(() => {
214 if (props.currentItemUuid) {
216 setPath([props.currentItemUuid]);
218 }, [props.currentItemUuid]);
220 const fetchData = (keys, ignoreCache = false) => {
221 const keyArray = Array.isArray(keys) ? keys : [keys];
225 const dataExists = !!pathData[key];
226 const runningRequest = pathPromise[key];
228 if ((!dataExists || ignoreCache) && (!runningRequest || ignoreCache)) {
233 pathPromise[key] = true;
235 return webdavClient.propfind(`c=${key}`, webDAVRequestConfig);
238 return Promise.resolve(null);
240 .filter((promise) => !!promise)
242 .then((requests) => {
243 const newState = requests.map((request, index) => {
244 if (request && request.responseXML != null) {
245 const key = keyArray[index];
246 const result: any = extractFilesData(request.responseXML);
247 const sortedResult = sortBy(result, (n) => n.name).sort((n1, n2) => {
248 if (n1.type === 'directory' && n2.type !== 'directory') {
251 if (n1.type !== 'directory' && n2.type === 'directory') {
257 return { [key]: sortedResult };
260 }).reduce((prev, next) => {
261 return { ...next, ...prev };
264 setPathData({ ...pathData, ...newState });
268 keyArray.forEach(key => delete pathPromise[key]);
272 React.useEffect(() => {
278 }, [rightKey]); // eslint-disable-line react-hooks/exhaustive-deps
280 const currentPDH = (collectionPanel.item || {}).portableDataHash;
281 React.useEffect(() => {
283 fetchData([leftKey, rightKey], true);
285 }, [currentPDH]); // eslint-disable-line react-hooks/exhaustive-deps
287 React.useEffect(() => {
289 const filtered = rightData.filter(({ name }) => name.indexOf(rightSearch) > -1);
290 setCollectionFiles(filtered, false)(dispatch);
292 }, [rightData, dispatch, rightSearch]);
294 const handleRightClick = React.useCallback(
296 event.preventDefault();
297 let elem = event.target;
299 while (elem && elem.dataset && !elem.dataset.item) {
300 elem = elem.parentNode;
303 if (!elem || !elem.dataset) {
307 const { id } = elem.dataset;
311 data: rightData.find((elem) => elem.id === id),
315 onItemMenuOpen(event, item, isWritable);
318 [onItemMenuOpen, isWritable, rightData] // eslint-disable-line react-hooks/exhaustive-deps
321 React.useEffect(() => {
324 if (parentRef && parentRef.current) {
325 node = parentRef.current;
326 (node as any).addEventListener('contextmenu', handleRightClick);
331 (node as any).removeEventListener('contextmenu', handleRightClick);
334 }, [parentRef, handleRightClick]);
336 const handleClick = React.useCallback(
338 let isCheckbox = false;
339 let elem = event.target;
341 if (elem.type === 'checkbox') {
345 while (elem && elem.dataset && !elem.dataset.item) {
346 elem = elem.parentNode;
349 if (elem && elem.dataset && !isCheckbox) {
350 const { parentPath, subfolderPath, breadcrumbPath, type } = elem.dataset;
352 if (breadcrumbPath) {
353 const index = path.indexOf(breadcrumbPath);
354 setPath([...path.slice(0, index + 1)]);
357 if (parentPath && type === 'directory') {
358 if (path.length > 1) {
362 setPath([...path, parentPath]);
365 if (subfolderPath && type === 'directory') {
366 setPath([...path, subfolderPath]);
369 if (elem.dataset.id && type === 'file') {
370 const item = rightData.find(({id}) => id === elem.dataset.id) || leftData.find(({ id }) => id === elem.dataset.id);
371 const enhancedItem = servicesProvider.getServices().collectionService.extendFileURL(item);
372 const fileUrl = sanitizeToken(getInlineFileUrl(enhancedItem.url, config.keepWebServiceUrl, config.keepWebInlineServiceUrl), true);
373 window.open(fileUrl, '_blank');
378 const { id } = elem.dataset;
379 const item = collectionPanelFiles[id];
380 props.onSelectionToggle(event, item);
383 [path, setPath, collectionPanelFiles] // eslint-disable-line react-hooks/exhaustive-deps
386 const getItemIcon = React.useCallback(
387 (type: string, activeClass: string | null) => {
388 let Icon = DefaultIcon;
392 Icon = DirectoryIcon;
400 <ListItemIcon className={classNames(classes.listItemIcon, activeClass)}>
408 const getActiveClass = React.useCallback(
410 return path[path.length - 1] === name ? classes.rowActive : null;
415 const onOptionsMenuOpen = React.useCallback(
416 (ev, isWritable) => {
417 props.onOptionsMenuOpen(ev, isWritable);
419 [props.onOptionsMenuOpen] // eslint-disable-line react-hooks/exhaustive-deps
423 <div data-cy="collection-files-panel" onClick={handleClick} ref={parentRef}>
424 <div className={classes.pathPanel}>
425 <div className={classes.pathPanelPathWrapper}>
428 .map((p: string, index: number) => <span
429 key={`${index}-${p}`}
431 className={classes.pathPanelItem}
432 data-breadcrumb-path={p}
434 <span className={classes.rowActive}>{index === 0 ? 'Home' : p}</span> <b>/</b>
438 <Tooltip className={classes.pathPanelMenu} title="More options" disableFocusListener>
440 data-cy='collection-files-panel-options-btn'
442 onOptionsMenuOpen(ev, isWritable);
444 <CustomizeTableIcon />
448 <div className={classes.wrapper}>
449 <div className={classNames(classes.leftPanel, path.length > 1 ? classes.leftPanelVisible : classes.leftPanelHidden)} data-cy="collection-files-left-panel">
450 <Tooltip title="Go back" className={path.length > 1 ? classes.backButton : classes.backButtonHidden}>
451 <IconButton onClick={() => setPath([...path.slice(0, path.length -1)])}>
455 <div className={path.length > 1 ? classes.searchWrapper : classes.searchWrapperHidden}>
456 <SearchInput selfClearProp={leftKey} label="Search" value={leftSearch} onSearch={setLeftSearch} />
458 <div className={classes.dataWrapper}>
461 <AutoSizer defaultWidth={0}>
462 {({ height, width }) => {
463 const filtered = leftData.filter(({ name }) => name.indexOf(leftSearch) > -1);
465 return !!filtered.length ? <FixedSizeList
467 itemCount={filtered.length}
472 ({ index, style }) => {
473 const { id, type, name } = filtered[index];
480 data-parent-path={name}
481 className={classNames(classes.row, getActiveClass(name))}
483 {getItemIcon(type, getActiveClass(name))}
484 <div className={classes.rowName}>
488 getActiveClass(name) ? <SidePanelRightArrowIcon
489 style={{ display: 'inline', marginTop: '5px', marginLeft: '5px' }} /> : null
494 </FixedSizeList> : <div className={classes.rowEmpty}>No directories available</div>
496 </AutoSizer> : <div className={classes.row}><CircularProgress className={classes.loader} size={30} /></div>
501 <div className={classes.rightPanel} data-cy="collection-files-right-panel">
502 <div className={classes.searchWrapper}>
503 <SearchInput selfClearProp={rightKey} label="Search" value={rightSearch} onSearch={setRightSearch} />
508 className={classes.uploadButton}
509 data-cy='upload-button'
511 onUploadDataClick(rightKey === leftKey ? undefined : rightKey);
516 <DownloadIcon className={classes.uploadIcon} />
520 <div className={classes.dataWrapper}>
522 rightData && !isLoading ?
523 <AutoSizer defaultHeight={500}>
524 {({ height, width }) => {
525 const filtered = rightData.filter(({ name }) => name.indexOf(rightSearch) > -1);
527 return !!filtered.length ? <FixedSizeList
529 itemCount={filtered.length}
534 ({ index, style }) => {
535 const { id, type, name, size } = filtered[index];
542 data-subfolder-path={name}
543 className={classes.row} key={id}>
546 className={classes.rowSelection}
547 checked={collectionPanelFiles[id] ? collectionPanelFiles[id].value.selected : false}
549 {getItemIcon(type, null)} <div className={classes.rowName}>
552 <span className={classes.rowName} style={{ marginLeft: 'auto', marginRight: '1rem' }}>
553 {formatFileSize(size)}
558 </FixedSizeList> : <div className={classes.rowEmpty}>This collection is empty</div>
560 </AutoSizer> : <div className={classes.row}><CircularProgress className={classes.loader} size={30} /></div>