1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 10:58:33 +00:00

change search UI (#5676)

* change search UI

* change className
This commit is contained in:
Michael An
2023-10-09 17:32:13 +08:00
committed by GitHub
parent f62cb2753e
commit ec74ae86ab
6 changed files with 35 additions and 22 deletions

View File

@@ -6,6 +6,7 @@ import { seafileAPI } from '../../utils/seafile-api';
import { gettext, siteRoot, username } from '../../utils/constants';
import SearchResultItem from './search-result-item';
import { Utils } from '../../utils/utils';
import { isMac } from '../../utils/extra-attributes';
import toaster from '../toast';
const propTypes = {
@@ -16,6 +17,7 @@ const propTypes = {
};
const PER_PAGE = 10;
const controlKey = isMac() ? '⌘' : 'Ctrl';
class Search extends Component {
@@ -294,20 +296,21 @@ class Search extends Component {
render() {
let width = this.state.width !== 'default' ? this.state.width : '';
let style = {'width': width};
const { searchPageUrl } = this.state;
const { searchPageUrl, isMaskShow } = this.state;
const placeholder = `${this.props.placeholder}${isMaskShow ? '' : ` (${controlKey} + f )`}`;
return (
<Fragment>
<MediaQuery query="(min-width: 768px)">
<div className="search">
<div className={`search-mask ${this.state.isMaskShow ? 'show' : 'hide'}`} onClick={this.onCloseHandler}></div>
<div className={`search-container ${this.state.isMaskShow ? 'show' : ''}`}>
<div className="input-icon">
<div className={`search-mask ${isMaskShow ? 'show' : 'hide'}`} onClick={this.onCloseHandler}></div>
<div className={`search-container ${isMaskShow ? 'show' : ''}`}>
<div className={`input-icon ${isMaskShow ? 'mb-1' : ''}`}>
<i className="search-icon-left input-icon-addon fas fa-search"></i>
<input
type="text"
className="form-control search-input"
name="query"
placeholder={this.props.placeholder}
placeholder={placeholder}
style={style}
value={this.state.value}
onFocus={this.onFocusHandler}
@@ -334,7 +337,7 @@ class Search extends Component {
</div>
{this.state.isSearchInputShow &&
<div className="search">
<div className={`search-mask ${this.state.isMaskShow ? '' : 'hide'}`} onClick={this.onCloseHandler}></div>
<div className={`search-mask ${isMaskShow ? '' : 'hide'}`} onClick={this.onCloseHandler}></div>
<div className="search-container">
<div className="input-icon">
<i className="search-icon-left input-icon-addon fas fa-search"></i>
@@ -342,7 +345,7 @@ class Search extends Component {
type="text"
className="form-control search-input"
name="query"
placeholder={this.props.placeholder}
placeholder={placeholder}
style={style}
value={this.state.value}
onFocus={this.onFocusHandler}

View File

@@ -18,20 +18,20 @@ const propTypes = {
class CommonToolbar extends React.Component {
render() {
let searchPlaceholder = this.props.searchPlaceholder || gettext('Search Files');
const { repoID, repoName } = this.props;
return (
<div className="common-toolbar">
{isPro && (
<Search
repoID={this.props.repoID}
placeholder={searchPlaceholder}
repoID={repoID}
placeholder={this.props.searchPlaceholder || gettext('Search files')}
onSearchedClick={this.props.onSearchedClick}
/>
)}
{this.props.isLibView && !isPro &&
<SearchByName
repoID={this.props.repoID}
repoName={this.props.repoName}
repoID={repoID}
repoName={repoName}
/>
}
<Notification />