import React, { Fragment } from 'react';
import PropTypes from 'prop-types';
import { Input } from 'reactstrap';
import { seafileAPI } from '../../utils/seafile-api';
import { gettext, isPro } from '../../utils/constants';
import { Utils } from '../../utils/utils';
import RepoInfo from '../../models/repo-info';
import RepoListView from './repo-list-view';
import Loading from '../loading';
import SearchedListView from './searched-list-view';
import '../../css/file-chooser.css';
const propTypes = {
isShowFile: PropTypes.bool,
repoID: PropTypes.string,
onDirentItemClick: PropTypes.func,
onRepoItemClick: PropTypes.func,
mode: PropTypes.oneOf(['current_repo_and_other_repos', 'only_all_repos', 'only_current_library']),
};
class FileChooser extends React.Component {
constructor(props) {
super(props);
this.state = {
hasRequest: false,
isCurrentRepoShow: true,
isOtherRepoShow: false,
repoList: [],
currentRepoInfo: null,
selectedRepo: null,
selectedPath: '',
isSearching: false,
isResultGot: false,
searchInfo: '',
searchResults: [],
};
this.inputValue = '';
this.timer = null;
this.source = null;
}
componentDidMount() {
if (this.props.repoID) { // current_repo_and_other_repos, only_current_library
let repoID = this.props.repoID;
seafileAPI.getRepoInfo(repoID).then(res => {
// need to optimized
let repoInfo = new RepoInfo(res.data);
this.setState({
currentRepoInfo: repoInfo,
selectedRepo: repoInfo
});
this.props.onRepoItemClick(repoInfo);
});
} else { // only_all_repos
seafileAPI.listRepos().then(res => {
let repos = res.data.repos;
let repoList = [];
let repoIdList = [];
for(let i = 0; i < repos.length; i++) {
if (repos[i].permission !== 'rw') {
continue;
}
if (repoIdList.indexOf(repos[i].repo_id) > -1) {
continue;
}
repoList.push(repos[i]);
repoIdList.push(repos[i].repo_id);
}
repoList = Utils.sortRepos(repoList, 'name', 'asc');
this.setState({repoList: repoList});
});
}
}
onOtherRepoToggle = () => {
if (!this.state.hasRequest) {
let that = this;
seafileAPI.listRepos().then(res => {
// todo optimized code
let repos = res.data.repos;
let repoList = [];
let repoIdList = [];
for(let i = 0; i < repos.length; i++) {
if (repos[i].permission !== 'rw') {
continue;
}
if (that.props.repoID && (repos[i].repo_name === that.state.currentRepoInfo.repo_name)) {
continue;
}
if (repoIdList.indexOf(repos[i].repo_id) > -1) {
continue;
}
repoList.push(repos[i]);
repoIdList.push(repos[i].repo_id);
}
repoList = Utils.sortRepos(repoList, 'name', 'asc');
this.setState({
repoList: repoList,
isOtherRepoShow: !this.state.isOtherRepoShow,
});
});
}
else {
this.setState({isOtherRepoShow: !this.state.isOtherRepoShow});
}
}
onCurrentRepoToggle = () => [
this.setState({isCurrentRepoShow: !this.state.isCurrentRepoShow})
]
onDirentItemClick = (repo, filePath, dirent) => {
this.props.onDirentItemClick(repo, filePath, dirent);
this.setState({
selectedRepo: repo,
selectedPath: filePath
});
}
onRepoItemClick = (repo) => {
if (this.props.onRepoItemClick) {
this.props.onRepoItemClick(repo);
}
this.setState({
selectedRepo: repo,
selectedPath: '',
});
}
onCloseSearching = () => {
this.setState({
isSearching: false,
isResultGot: false,
searchInfo: '',
searchResults: [],
});
this.inputValue = '';
this.timer = null;
this.source = null;
}
onSearchInfoChanged = (event) => {
let searchInfo = event.target.value.trim();
this.setState({searchInfo: searchInfo});
if (this.inputValue === searchInfo) {
return false;
}
this.inputValue = searchInfo;
if (searchInfo.length === 0) {
this.setState({
isSearching: false,
searchResults: [],
});
return false;
}
if (!this.state.searchResults.length && searchInfo.length > 0) {
this.setState({
isSearching: true,
isResultGot: false,
});
}
if (this.inputValue === '' || this.getValueLength(this.inputValue) < 3) {
this.setState({isResultGot: false});
return false;
}
let repoID = this.props.repoID;
let isShowFile = this.props.isShowFile;
let mode = this.props.mode;
let searchRepo = mode === 'only_current_library' ? repoID : 'all';
let queryData = {
q: searchInfo,
search_repo: searchRepo,
search_ftypes: 'all',
obj_type: isShowFile ? 'file' : 'dir',
};
if (this.timer) {
clearTimeout(this.timer);
}
this.timer = setTimeout(this.getSearchResult(queryData), 500);
}
getSearchResult = (queryData) => {
if (this.source) {
this.cancelRequest();
}
this.setState({isResultGot: false});
this.source = seafileAPI.getSource();
this.sendRequest(queryData, this.source.token);
}
sendRequest = (queryData, cancelToken) => {
seafileAPI.searchFiles(queryData, cancelToken).then(res => {
if (!res.data.total) {
this.setState({
searchResults: [],
isResultGot: true
});
this.source = null;
return;
}
let items = this.formatResultItems(res.data.results);
this.setState({
searchResults: items,
isResultGot: true
});
this.source = null;
}).catch(res => {
/* eslint-disable */
console.log(res);
/* eslint-enable */
});
}
cancelRequest = () => {
this.source.cancel('prev request is cancelled');
}
getValueLength = (str) => {
var i = 0, code, len = 0;
for (; i < str.length; i++) {
code = str.charCodeAt(i);
if (code == 10) { //solve enter problem
len += 2;
} else if (code < 0x007f) {
len += 1;
} else if (code >= 0x0080 && code <= 0x07ff) {
len += 2;
} else if (code >= 0x0800 && code <= 0xffff) {
len += 3;
}
}
return len;
}
formatResultItems = (data) => {
let items = [];
let length = data.length > 10 ? 10 : data.length;
for (let i = 0; i < length; i++) {
items[i] = {};
items[i]['index'] = [i];
items[i]['name'] = data[i].name;
items[i]['path'] = data[i].fullpath;
items[i]['repo_id'] = data[i].repo_id;
items[i]['repo_name'] = data[i].repo_name;
items[i]['is_dir'] = data[i].is_dir;
items[i]['link_content'] = decodeURI(data[i].fullpath).substring(1);
items[i]['content'] = data[i].content_highlight;
}
return items;
}
onSearchedItemClick = (item) => {
item['type'] = item.is_dir ? 'dir' : 'file';
let repo = new RepoInfo(item);
this.props.onDirentItemClick(repo, item.path, item);
}
renderSearchedView = () => {
if (!this.state.isResultGot || this.getValueLength(this.inputValue) < 3) {
return (