mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-05 00:43:53 +00:00
* update move dialog and search input * update move dialog ui * clean up code * update code --------- Co-authored-by: renjie-run <rj.aiyayao@gmail.com>
76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import RepoListItem from './repo-list-item';
|
|
|
|
const propTypes = {
|
|
currentRepoInfo: PropTypes.object,
|
|
isShowFile: PropTypes.bool,
|
|
repo: PropTypes.object,
|
|
repoList: PropTypes.array,
|
|
selectedRepo: PropTypes.object,
|
|
initToShowChildren: PropTypes.bool.isRequired,
|
|
selectedPath: PropTypes.string,
|
|
onDirentItemClick: PropTypes.func.isRequired,
|
|
onRepoItemClick: PropTypes.func.isRequired,
|
|
fileSuffixes: PropTypes.array,
|
|
selectedItemInfo: PropTypes.object,
|
|
currentPath: PropTypes.string,
|
|
isBrowsing: PropTypes.bool,
|
|
browsingPath: PropTypes.string,
|
|
};
|
|
|
|
const defaultProps = {
|
|
currentRepoInfo: null,
|
|
isShowFile: false,
|
|
repo: null,
|
|
repoList: [],
|
|
selectedRepo: null,
|
|
selectedPath: '',
|
|
fileSuffixes: [],
|
|
selectedItemInfo: null,
|
|
currentPath: '',
|
|
isBrowsing: false,
|
|
browsingPath: '',
|
|
};
|
|
|
|
class RepoListView extends React.Component {
|
|
|
|
render() {
|
|
let { currentRepoInfo, currentPath, repoList } = this.props;
|
|
if (currentRepoInfo) {
|
|
repoList = [];
|
|
repoList.push(currentRepoInfo);
|
|
}
|
|
|
|
return (
|
|
<ul className="list-view-content file-chooser-item" >
|
|
{repoList.length > 0 && repoList.map((repoItem, index) => {
|
|
return (
|
|
<RepoListItem
|
|
key={index}
|
|
isCurrentRepo={currentRepoInfo ? true : false}
|
|
currentPath={currentPath}
|
|
repo={repoItem}
|
|
initToShowChildren={this.props.initToShowChildren}
|
|
selectedRepo={this.props.selectedRepo}
|
|
selectedPath={this.props.selectedPath}
|
|
onRepoItemClick={this.props.onRepoItemClick}
|
|
onDirentItemClick={this.props.onDirentItemClick}
|
|
isShowFile={this.props.isShowFile}
|
|
fileSuffixes={this.props.fileSuffixes}
|
|
selectedItemInfo={this.props.selectedItemInfo}
|
|
isBrowsing={this.props.isBrowsing}
|
|
browsingPath={this.props.browsingPath}
|
|
/>
|
|
);
|
|
})}
|
|
</ul>
|
|
);
|
|
}
|
|
}
|
|
|
|
RepoListView.propTypes = propTypes;
|
|
RepoListView.defaultProps = defaultProps;
|
|
|
|
export default RepoListView;
|