import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import { Link } from '@gatsbyjs/reach-router'; import { UncontrolledTooltip } from 'reactstrap'; import { siteRoot, gettext } from '../../utils/constants'; import { Utils } from '../../utils/utils'; import { InternalLinkOperation } from '../operations'; import DirOperationToolBar from '../../components/toolbar/dir-operation-toolbar'; import ViewFileToolbar from '../../components/toolbar/view-file-toolbar'; import { PRIVATE_FILE_TYPE } from '../../constants'; import MetadataViewId2Name from '../../metadata/metadata-view-id-2-name'; const propTypes = { currentRepoInfo: PropTypes.object.isRequired, repoID: PropTypes.string.isRequired, repoName: PropTypes.string.isRequired, currentPath: PropTypes.string.isRequired, onPathClick: PropTypes.func.isRequired, onTabNavClick: PropTypes.func, pathPrefix: PropTypes.array, isViewFile: PropTypes.bool, fileTags: PropTypes.array.isRequired, toggleTreePanel: PropTypes.func.isRequired, repoEncrypted: PropTypes.bool.isRequired, enableDirPrivateShare: PropTypes.bool.isRequired, userPerm: PropTypes.string.isRequired, isGroupOwnedRepo: PropTypes.bool.isRequired, showShareBtn: PropTypes.bool.isRequired, onAddFile: PropTypes.func.isRequired, onAddFolder: PropTypes.func.isRequired, onUploadFile: PropTypes.func.isRequired, onUploadFolder: PropTypes.func.isRequired, direntList: PropTypes.array.isRequired, repoTags: PropTypes.array.isRequired, filePermission: PropTypes.string, onFileTagChanged: PropTypes.func.isRequired, onItemMove: PropTypes.func.isRequired, }; class DirPath extends React.Component { constructor(props) { super(props); this.state = { dropTargetPath: '', }; } onPathClick = (e) => { let path = Utils.getEventData(e, 'path'); this.props.onPathClick(path); }; onTabNavClick = (e, tabName, id) => { if (window.uploader && window.uploader.isUploadProgressDialogShow && window.uploader.totalProgress !== 100) { if (!window.confirm(gettext('A file is being uploaded. Are you sure you want to leave this page?'))) { e.preventDefault(); return false; } window.uploader.isUploadProgressDialogShow = false; } this.props.onTabNavClick(tabName, id); }; onDragEnter = (e) => { e.preventDefault(); if (Utils.isIEBrowser()) { return false; } this.setState({ dropTargetPath: e.target.dataset.path, }); }; onDragLeave = (e) => { e.preventDefault(); if (Utils.isIEBrowser()) { return false; } this.setState({ dropTargetPath: '', }); }; onDragOver = (e) => { if (Utils.isIEBrowser()) { return false; } e.preventDefault(); e.dataTransfer.dropEffect = 'move'; }; onDrop = (e) => { if (Utils.isIEBrowser()) { return false; } if (e.dataTransfer.files.length) { return; } let selectedPath = Utils.getEventData(e, 'path'); let dragStartItemsData = e.dataTransfer.getData('application/drag-item-info'); dragStartItemsData = JSON.parse(dragStartItemsData); if (Array.isArray(dragStartItemsData)) { this.props.onItemsMove(this.props.currentRepoInfo, selectedPath); } else { let { nodeDirent, nodeParentPath } = dragStartItemsData; this.props.onItemMove(this.props.currentRepoInfo, nodeDirent, selectedPath, nodeParentPath); } this.setState({ dropTargetPath: '', }); }; turnPathToLink = (path) => { path = path[path.length - 1] === '/' ? path.slice(0, path.length - 1) : path; let pathList = path.split('/'); let nodePath = ''; let pathElem = pathList.map((item, index) => { if (item === '') { return null; } if (index === pathList.length - 2 && item === PRIVATE_FILE_TYPE.FILE_EXTENDED_PROPERTIES) { return ( / {gettext('Views')} ); } if (index === pathList.length - 1 && pathList[pathList.length - 2] === PRIVATE_FILE_TYPE.FILE_EXTENDED_PROPERTIES) { return ( / ); } if (index === (pathList.length - 1)) { return ( / {this.props.isViewFile ? {item} : {item} } ); } else { nodePath += '/' + item; return ( / {item} ); } }); return pathElem; }; isViewMetadata = () => { const { currentPath } = this.props; const path = currentPath[currentPath.length - 1] === '/' ? currentPath.slice(0, currentPath.length - 1) : currentPath; const pathList = path.split('/'); return pathList[pathList.length - 2] === PRIVATE_FILE_TYPE.FILE_EXTENDED_PROPERTIES; }; render() { let { currentPath, repoName, fileTags } = this.props; let pathElem = this.turnPathToLink(currentPath); let tagTitle = ''; if (fileTags.length > 0) { fileTags.forEach(item => { tagTitle += item.name + ' '; }); } return (
{this.props.pathPrefix && this.props.pathPrefix.map((item, index) => { return ( this.onTabNavClick(e, item.name, item.id)}>{gettext(item.showName)} / ); })} {this.props.pathPrefix && this.props.pathPrefix.length === 0 && ( this.onTabNavClick(e, 'libraries')}>{gettext('Files')} / )} {!this.props.pathPrefix && ( this.onTabNavClick(e, 'libraries')}>{gettext('Files')} / )} {(currentPath === '/' || currentPath === '' || Utils.isMarkdownFile(this.props.currentPath)) ? {repoName} : {repoName} } {Utils.isMarkdownFile(this.props.currentPath) ? null : pathElem} {this.props.isViewFile && !Utils.isMarkdownFile(this.props.currentPath) && !this.isViewMetadata() && ( )} {(this.props.isViewFile && fileTags.length !== 0) && {fileTags.map((fileTag, index) => { return (); })} {tagTitle} }
); } } DirPath.propTypes = propTypes; export default DirPath;