1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 00:43:53 +00:00

search file by name (#4713)

* search file by name

* [for non-pro] redesigned 'search files in a library'

* improvement

Co-authored-by: lian <lian@seafile.com>
Co-authored-by: llj <lingjun.li1@gmail.com>
This commit is contained in:
lian
2020-11-16 10:45:19 +08:00
committed by GitHub
parent 1efd1fe4fe
commit 5ec3928d90
7 changed files with 287 additions and 3 deletions

View File

@@ -0,0 +1,143 @@
import React from 'react';
import PropTypes from 'prop-types';
import moment from 'moment';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter, Alert } from 'reactstrap';
import { Utils } from '../../utils/utils';
import { seafileAPI } from '../../utils/seafile-api.js';
import { gettext, siteRoot } from '../../utils/constants';
const propTypes = {
repoID: PropTypes.string.isRequired,
repoName: PropTypes.string.isRequired,
toggleDialog: PropTypes.func.isRequired
};
class SearchFileDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
isSubmitDisabled: true,
q: '',
errMessage: '',
fileList: []
};
}
searchFile = () => {
const { q } = this.state;
if (!q.trim()) {
return false;
}
seafileAPI.searchFileInRepo(this.props.repoID, q).then((res) => {
this.setState({
fileList: res.data.data,
errMessage: ''
});
}).catch(error => {
let errMessage = Utils.getErrorMsg(error);
this.setState({
errMessage: errMessage
});
});
}
handleKeyDown = (e) => {
if (e.key == 'Enter') {
e.preventDefault();
this.searchFile();
}
}
toggle = () => {
this.props.toggleDialog();
}
handleInputChange = (e) => {
const q = e.target.value;
this.setState({
q: q,
isSubmitDisabled: !q.trim()
});
}
render() {
const { q, errMessage, fileList, isSubmitDisabled } = this.state;
return (
<Modal isOpen={true} toggle={this.toggle}>
<ModalHeader toggle={this.toggle}>{gettext('Search')}</ModalHeader>
<ModalBody style={{height: '250px'}} className="o-auto">
<div className="d-flex">
<input className="form-control mr-2" type="text" placeholder={gettext('Search files in this library')} value={q} onChange={this.handleInputChange} onKeyDown={this.handleKeyDown} />
<button type="submit" className="btn btn-primary flex-shrink-0" onClick={this.searchFile} disabled={isSubmitDisabled}>{gettext('Search')}</button>
</div>
{errMessage && <Alert color="danger" className="mt-2">{errMessage}</Alert>}
<div className="mt-2">
{fileList.length > 0 &&
<table className="table-hover">
<thead>
<tr>
<th width="8%"></th>
<th width="42%">{gettext('Name')}</th>
<th width="25%">{gettext('Size')}</th>
<th width="25%">{gettext('Last Update')}</th>
</tr>
</thead>
<tbody>
{fileList.map((item, index) => {
return (
<FileItem
key={index}
item={item}
repoID={this.props.repoID}
repoName={this.props.repoName}
/>
);
})
}
</tbody>
</table>}
</div>
</ModalBody>
<ModalFooter>
<Button color="secondary" onClick={this.toggle}>{gettext('Close')}</Button>
</ModalFooter>
</Modal>
);
}
}
SearchFileDialog.propTypes = propTypes;
const FileItemPropTypes = {
repoID: PropTypes.string.isRequired,
repoName: PropTypes.string.isRequired,
item: PropTypes.object.isRequired
};
class FileItem extends React.PureComponent {
render() {
const { item, repoID, repoName } = this.props;
const name = item.path.substr(item.path.lastIndexOf('/') + 1);
const url = item.type == 'file' ?
`${siteRoot}lib/${repoID}/file${Utils.encodePath(item.path)}` :
`${siteRoot}library/${repoID}/${Utils.encodePath(repoName + item.path)}`;
return(
<tr>
<td className="text-center"><img src={item.type == 'file' ? Utils.getFileIconUrl(item.path) : Utils.getFolderIconUrl()} alt="" width="24" /></td>
<td>
<a href={url}>{name}</a>
</td>
<td>{item.type == 'file' ? Utils.bytesToSize(item.size) : ''}</td>
<td>{moment(item.mtime).fromNow()}</td>
</tr>
);
}
}
FileItem.propTypes = FileItemPropTypes;
export default SearchFileDialog;

View File

@@ -0,0 +1,51 @@
import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
import { gettext } from '../../utils/constants';
import SearchFileDialog from '../dialog/search-file-dialog.js';
import '../../css/top-search-by-name.css';
const propTypes = {
repoID: PropTypes.string.isRequired,
repoName: PropTypes.string.isRequired
};
class SearchByName extends Component {
constructor(props) {
super(props);
this.state = {
isDialogOpen: false
};
}
toggleDialog = () => {
this.setState({
isDialogOpen: !this.state.isDialogOpen
});
}
render() {
const { repoID, repoName } = this.props;
return (
<Fragment>
<i
className="fas fa-search top-search-file-icon"
onClick={this.toggleDialog}
title={gettext('Search files in this library')}
></i>
{this.state.isDialogOpen &&
<SearchFileDialog
repoID={repoID}
repoName={repoName}
toggleDialog={this.toggleDialog}
/>
}
</Fragment>
);
}
}
SearchByName.propTypes = propTypes;
export default SearchByName;

View File

@@ -2,17 +2,21 @@ import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { isPro, gettext, showLogoutIcon } from '../../utils/constants'; import { isPro, gettext, showLogoutIcon } from '../../utils/constants';
import Search from '../search/search'; import Search from '../search/search';
import SearchByName from '../search/search-by-name';
import Notification from '../common/notification'; import Notification from '../common/notification';
import Account from '../common/account'; import Account from '../common/account';
import Logout from '../common/logout'; import Logout from '../common/logout';
const propTypes = { const propTypes = {
repoID: PropTypes.string, repoID: PropTypes.string,
repoName: PropTypes.string,
isLibView: PropTypes.bool,
onSearchedClick: PropTypes.func.isRequired, onSearchedClick: PropTypes.func.isRequired,
searchPlaceholder: PropTypes.string searchPlaceholder: PropTypes.string
}; };
class CommonToolbar extends React.Component { class CommonToolbar extends React.Component {
render() { render() {
let searchPlaceholder = this.props.searchPlaceholder || gettext('Search Files'); let searchPlaceholder = this.props.searchPlaceholder || gettext('Search Files');
return ( return (
@@ -24,6 +28,12 @@ class CommonToolbar extends React.Component {
onSearchedClick={this.props.onSearchedClick} onSearchedClick={this.props.onSearchedClick}
/> />
)} )}
{this.props.isLibView && !isPro &&
<SearchByName
repoID={this.props.repoID}
repoName={this.props.repoName}
/>
}
<Notification /> <Notification />
<Account /> <Account />
{showLogoutIcon && (<Logout />)} {showLogoutIcon && (<Logout />)}

View File

@@ -0,0 +1,7 @@
.top-search-file-icon {
color: #999;
font-size: 20px;
align-self: center;
font-weight: 800;
cursor: pointer;
}

View File

@@ -82,7 +82,7 @@ class LibContentToolbar extends React.Component {
/> />
<ViewModeToolbar currentMode={this.props.currentMode} switchViewMode={this.props.switchViewMode}/> <ViewModeToolbar currentMode={this.props.currentMode} switchViewMode={this.props.switchViewMode}/>
</div> </div>
<CommonToolbar repoID={this.props.repoID} onSearchedClick={this.props.onSearchedClick} searchPlaceholder={gettext('Search files in this library')}/> <CommonToolbar isLibView={true} repoID={this.props.repoID} repoName={this.props.repoName} onSearchedClick={this.props.onSearchedClick} searchPlaceholder={gettext('Search files in this library')}/>
</Fragment> </Fragment>
); );
} }
@@ -135,7 +135,7 @@ class LibContentToolbar extends React.Component {
/> />
} }
</div> </div>
<CommonToolbar repoID={this.props.repoID} onSearchedClick={this.props.onSearchedClick} searchPlaceholder={gettext('Search files in this library')}/> <CommonToolbar isLibView={true} repoID={this.props.repoID} repoName={this.props.repoName} onSearchedClick={this.props.onSearchedClick} searchPlaceholder={gettext('Search files in this library')}/>
</Fragment> </Fragment>
); );
} }

View File

@@ -0,0 +1,68 @@
# Copyright (c) 2012-2016 Seafile Ltd.
from rest_framework.authentication import SessionAuthentication
from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
from rest_framework.views import APIView
from rest_framework import status
from seaserv import seafile_api
from seahub.api2.authentication import TokenAuthentication
from seahub.api2.throttling import UserRateThrottle
from seahub.api2.utils import api_error
from seahub.views import check_folder_permission
from seahub.utils.timeutils import timestamp_to_isoformat_timestr
try:
from seahub.settings import CLOUD_MODE
except ImportError:
CLOUD_MODE = False
class SearchFile(APIView):
authentication_classes = (TokenAuthentication, SessionAuthentication)
permission_classes = (IsAuthenticated,)
throttle_classes = (UserRateThrottle,)
def get(self, request, format=None):
""" Search file by name.
"""
# argument check
repo_id = request.GET.get('repo_id', None)
if not repo_id:
error_msg = 'repo_id invalid.'
return api_error(status.HTTP_400_BAD_REQUEST, error_msg)
q = request.GET.get('q', None)
if not q:
error_msg = 'q invalid.'
return api_error(status.HTTP_400_BAD_REQUEST, error_msg)
# resource check
if not seafile_api.get_repo(repo_id):
error_msg = 'Library %s not found.' % repo_id
return api_error(status.HTTP_404_NOT_FOUND, error_msg)
# permission check
if not check_folder_permission(request, repo_id, '/'):
error_msg = 'Permission denied.'
return api_error(status.HTTP_403_FORBIDDEN, error_msg)
result = []
searched_files = seafile_api.search_files(repo_id, q)
for searched_file in searched_files:
# {'path': '/123.docx', 'size': 19446, 'mtime': 1604130882, 'is_dir': False}
file_info = {}
file_info['path'] = searched_file.path
file_info['size'] = searched_file.size
file_info['mtime'] = timestamp_to_isoformat_timestr(searched_file.mtime)
file_info['type'] = 'folder' if searched_file.is_dir else 'file'
result.append(file_info)
return Response({'data': result})

View File

@@ -20,6 +20,8 @@ from seahub.views.repo import repo_history_view, repo_snapshot, view_shared_dir,
from seahub.dingtalk.views import dingtalk_login, dingtalk_callback, \ from seahub.dingtalk.views import dingtalk_login, dingtalk_callback, \
dingtalk_connect, dingtalk_connect_callback, dingtalk_disconnect dingtalk_connect, dingtalk_connect_callback, dingtalk_disconnect
from seahub.api2.endpoints.search_file import SearchFile
from seahub.api2.endpoints.smart_link import SmartLink, SmartLinkToken from seahub.api2.endpoints.smart_link import SmartLink, SmartLinkToken
from seahub.api2.endpoints.groups import Groups, Group from seahub.api2.endpoints.groups import Groups, Group
from seahub.api2.endpoints.all_groups import AllGroups from seahub.api2.endpoints.all_groups import AllGroups
@@ -286,6 +288,9 @@ urlpatterns = [
url(r'^api/v2.1/smart-link/$', SmartLink.as_view(), name="api-v2.1-smart-link"), url(r'^api/v2.1/smart-link/$', SmartLink.as_view(), name="api-v2.1-smart-link"),
url(r'^api/v2.1/smart-links/(?P<token>[-0-9a-f]{36})/$', SmartLinkToken.as_view(), name="api-v2.1-smart-links-token"), url(r'^api/v2.1/smart-links/(?P<token>[-0-9a-f]{36})/$', SmartLinkToken.as_view(), name="api-v2.1-smart-links-token"),
# search file by name
url(r'^api/v2.1/search-file/$', SearchFile.as_view(), name='api-v2.1-search-file'),
# departments # departments
url(r'api/v2.1/departments/$', Departments.as_view(), name='api-v2.1-all-departments'), url(r'api/v2.1/departments/$', Departments.as_view(), name='api-v2.1-all-departments'),