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'; const propTypes = { 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, }; class DirPath extends React.Component { 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); }; 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('File extended properties')} ); } if (index === pathList.length - 1 && pathList[pathList.length - 2] === PRIVATE_FILE_TYPE.FILE_EXTENDED_PROPERTIES) { return ( / {item} ); } 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 === '') ? {repoName} : {repoName} } {pathElem} {this.props.isViewFile && !this.isViewMetadata() && ( )} {(this.props.isViewFile && fileTags.length !== 0) && {fileTags.map((fileTag, index) => { return (); })} {tagTitle} }
); } } DirPath.propTypes = propTypes; export default DirPath;