mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-17 08:41:40 +00:00
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import ModalPortal from './modal-portal';
|
|
import ListTaggedFilesDialog from './dialog/list-taggedfiles-dialog';
|
|
|
|
import '../css/repo-info-bar.css';
|
|
|
|
const propTypes = {
|
|
repoID: PropTypes.string.isRequired,
|
|
usedRepoTags: PropTypes.array.isRequired,
|
|
updateUsedRepoTags: PropTypes.func,
|
|
onFileTagChanged: PropTypes.func,
|
|
className: PropTypes.string,
|
|
shareLinkToken: PropTypes.string,
|
|
enableFileDownload: PropTypes.bool
|
|
};
|
|
|
|
class RepoInfoBar extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
currentTag: null,
|
|
isListTaggedFileShow: false,
|
|
};
|
|
}
|
|
|
|
onListTaggedFiles = (currentTag) => {
|
|
this.setState({
|
|
currentTag: currentTag,
|
|
isListTaggedFileShow: !this.state.isListTaggedFileShow
|
|
});
|
|
};
|
|
|
|
onCloseDialog = () => {
|
|
this.setState({
|
|
isListTaggedFileShow: false
|
|
});
|
|
};
|
|
|
|
render() {
|
|
let { repoID, usedRepoTags, className } = this.props;
|
|
|
|
return (
|
|
<div className={`repo-info-bar ${className ? className : ''}`}>
|
|
{usedRepoTags.length > 0 && (
|
|
<ul className="used-tag-list">
|
|
{usedRepoTags.map((usedRepoTag) => {
|
|
return (
|
|
<li key={usedRepoTag.id} className="used-tag-item">
|
|
<span className="used-tag" style={{ backgroundColor: usedRepoTag.color }}></span>
|
|
<span className="used-tag-name" title={usedRepoTag.name}>{usedRepoTag.name}</span>
|
|
<button type="button" className="used-tag-files border-0 bg-transparent" onClick={this.onListTaggedFiles.bind(this, usedRepoTag)}>
|
|
{usedRepoTag.fileCount > 1 ? usedRepoTag.fileCount + ' files' : usedRepoTag.fileCount + ' file'}
|
|
</button>
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
)}
|
|
{this.state.isListTaggedFileShow && (
|
|
<ModalPortal>
|
|
<ListTaggedFilesDialog
|
|
repoID={repoID}
|
|
currentTag={this.state.currentTag}
|
|
onClose={this.onCloseDialog}
|
|
toggleCancel={this.onListTaggedFiles}
|
|
updateUsedRepoTags={this.props.updateUsedRepoTags}
|
|
onFileTagChanged={this.props.onFileTagChanged}
|
|
shareLinkToken={this.props.shareLinkToken}
|
|
enableFileDownload={this.props.enableFileDownload}
|
|
/>
|
|
</ModalPortal>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
RepoInfoBar.propTypes = propTypes;
|
|
|
|
export default RepoInfoBar;
|