mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-05 08:53:14 +00:00
* custom share permission * remove path field * add permission manager ui * optimize custom permission manager style * add permission setting * add normalize_custom_permission_name * optimize repo custom permission * delete useless code * optimize code * optimize code * optimize markdown file page * fix a few bugs * add permission control * repair modify permission * optimize style * optimize copyright * add try-except * optimize code * move file&folder * batch operation item * repair batch move item * update copyright * optimize move permission control * optimize code * optimize code * optimize code & fix code wranning * optimize code * delete unsupport permission * optimize code * repair code bug * add pro limit * optimize code * add permission handle for permission editor * repair new file&folder bug * optimize file uploader code * custom permission user can not visit custom permission module * optimize code * forbid comment&detail module * optimize code * optimize modify/preview permission * optimize custom permission share perm * optimize view file module: file-toolbar * optimize custom drag move operation * repair column view bug * optimize drag operation code * repair code bug * optimize code Co-authored-by: shanshuirenjia <978987373@qq.com>
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Utils } from '../../utils/utils';
|
|
import SortOptionsDialog from '../../components/dialog/sort-options';
|
|
import DirPath from './dir-path';
|
|
import DirTool from './dir-tool';
|
|
|
|
const propTypes = {
|
|
repoID: PropTypes.string.isRequired,
|
|
repoName: PropTypes.string.isRequired,
|
|
userPerm: PropTypes.string,
|
|
currentPath: PropTypes.string.isRequired,
|
|
onPathClick: PropTypes.func.isRequired,
|
|
onTabNavClick: PropTypes.func,
|
|
pathPrefix: PropTypes.array,
|
|
isViewFile: PropTypes.bool,
|
|
updateUsedRepoTags: PropTypes.func.isRequired,
|
|
fileTags: PropTypes.array.isRequired,
|
|
onDeleteRepoTag: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class CurDirPath extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
isSortOptionsDialogOpen: false
|
|
};
|
|
}
|
|
|
|
toggleSortOptionsDialog = () => {
|
|
this.setState({
|
|
isSortOptionsDialogOpen: !this.state.isSortOptionsDialogOpen
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const isDesktop = Utils.isDesktop();
|
|
return (
|
|
<Fragment>
|
|
<DirPath
|
|
repoName={this.props.repoName}
|
|
pathPrefix={this.props.pathPrefix}
|
|
currentPath={this.props.currentPath}
|
|
onPathClick={this.props.onPathClick}
|
|
onTabNavClick={this.props.onTabNavClick}
|
|
repoID={this.props.repoID}
|
|
isViewFile={this.props.isViewFile}
|
|
fileTags={this.props.fileTags}
|
|
/>
|
|
{isDesktop &&
|
|
<DirTool
|
|
repoID={this.props.repoID}
|
|
repoName={this.props.repoName}
|
|
userPerm={this.props.userPerm}
|
|
currentPath={this.props.currentPath}
|
|
updateUsedRepoTags={this.props.updateUsedRepoTags}
|
|
onDeleteRepoTag={this.props.onDeleteRepoTag}
|
|
/>}
|
|
{!isDesktop && this.props.direntList.length > 0 &&
|
|
<span className="sf3-font sf3-font-sort action-icon" onClick={this.toggleSortOptionsDialog}></span>}
|
|
{this.state.isSortOptionsDialogOpen &&
|
|
<SortOptionsDialog
|
|
toggleDialog={this.toggleSortOptionsDialog}
|
|
sortBy={this.props.sortBy}
|
|
sortOrder={this.props.sortOrder}
|
|
sortItems={this.props.sortItems}
|
|
/>
|
|
}
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
CurDirPath.propTypes = propTypes;
|
|
|
|
export default CurDirPath;
|