1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 01:12:03 +00:00
Files
seahub/frontend/src/components/file-chooser/repo-list-view.js
2019-04-23 22:59:55 +08:00

51 lines
1.4 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,
};
class RepoListView extends React.Component {
render() {
let { currentRepoInfo, 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}
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}
/>
);
})}
</ul>
);
}
}
RepoListView.propTypes = propTypes;
export default RepoListView;