mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-13 06:55:59 +00:00
118 lines
3.8 KiB
JavaScript
118 lines
3.8 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Link } from '@reach/router';
|
|
import { UncontrolledTooltip } from 'reactstrap';
|
|
import { siteRoot, gettext } from '../../utils/constants';
|
|
import InternalLinkDialog from '../dialog/internal-link-dialog';
|
|
import { Utils } from '../../utils/utils';
|
|
|
|
const propTypes = {
|
|
repoName: PropTypes.string.isRequired,
|
|
currentPath: PropTypes.string.isRequired,
|
|
onPathClick: PropTypes.func.isRequired,
|
|
onTabNavClick: PropTypes.func,
|
|
pathPrefix: PropTypes.array,
|
|
repoID: PropTypes.string.isRequired,
|
|
isViewFile: PropTypes.bool,
|
|
fileTags: PropTypes.array.isRequired,
|
|
};
|
|
|
|
class DirPath extends React.Component {
|
|
|
|
onPathClick = (e) => {
|
|
let path = Utils.getEventData(e, 'path');
|
|
this.props.onPathClick(path);
|
|
}
|
|
|
|
onTabNavClick = (tabName, id) => {
|
|
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;
|
|
}
|
|
if (index === (pathList.length - 1)) {
|
|
return (
|
|
<span key={index}><span className="path-split">/</span>{item}</span>
|
|
);
|
|
} else {
|
|
nodePath += '/' + item;
|
|
return (
|
|
<span key={index} >
|
|
<span className="path-split">/</span>
|
|
<a className="path-link" data-path={nodePath} onClick={this.onPathClick}>{item}</a>
|
|
</span>
|
|
);
|
|
}
|
|
});
|
|
return pathElem;
|
|
}
|
|
|
|
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 (
|
|
<div className="path-container">
|
|
{this.props.pathPrefix && this.props.pathPrefix.map((item, index) => {
|
|
return (
|
|
<Fragment key={index}>
|
|
<Link to={item.url} className="normal" onClick={() => this.onTabNavClick(item.name, item.id)}>{gettext(item.showName)}</Link>
|
|
<span className="path-split">/</span>
|
|
</Fragment>
|
|
);
|
|
})}
|
|
{this.props.pathPrefix && this.props.pathPrefix.length === 0 && (
|
|
<Fragment>
|
|
<Link to={siteRoot + 'my-libs/'} className="normal" onClick={() => this.onTabNavClick('my-libs')}>{gettext('Libraries')}</Link>
|
|
<span className="path-split">/</span>
|
|
</Fragment>
|
|
)}
|
|
{!this.props.pathPrefix && (
|
|
<Fragment>
|
|
<Link href={siteRoot + 'my-libs/'} className="normal" onClick={() => this.onTabNavClick('my-libs')}>{gettext('Libraries')}</Link>
|
|
<span className="path-split">/</span>
|
|
</Fragment>
|
|
)}
|
|
{(currentPath === '/' || currentPath === '') ?
|
|
<span>{repoName}</span>:
|
|
<a className="path-link" data-path="/" onClick={this.onPathClick}>{repoName}</a>
|
|
}
|
|
{pathElem}
|
|
{this.props.isViewFile &&
|
|
<InternalLinkDialog
|
|
repoID={this.props.repoID}
|
|
path={this.props.currentPath}
|
|
/>
|
|
}
|
|
{(this.props.isViewFile && fileTags.length !== 0) &&
|
|
<span id='column-mode-file-tags' className="tag-list tag-list-stacked align-middle ml-1">
|
|
{fileTags.map((fileTag, index) => {
|
|
return (<span className="file-tag" key={fileTag.id} style={{zIndex: index, backgroundColor: fileTag.color}}></span>);
|
|
})}
|
|
<UncontrolledTooltip target="column-mode-file-tags" placement="bottom">
|
|
{tagTitle}
|
|
</UncontrolledTooltip>
|
|
</span>
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
DirPath.propTypes = propTypes;
|
|
|
|
export default DirPath;
|