| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withUnstatedContainers } from './UnstatedUtils';
- import AppContainer from '../services/AppContainer';
- import SearchTypeahead from './SearchTypeahead';
- // SearchTypeahead wrapper
- class SearchForm extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- searchError: null,
- isShownHelp: false,
- };
- this.onSearchError = this.onSearchError.bind(this);
- this.onChange = this.onChange.bind(this);
- this.onBlur = this.onBlur.bind(this);
- this.onFocus = this.onFocus.bind(this);
- }
- componentDidMount() {
- }
- componentWillUnmount() {
- }
- onSearchError(err) {
- this.setState({
- searchError: err,
- });
- }
- onChange(selected) {
- const page = selected[0]; // should be single page selected
- // navigate to page
- if (page != null) {
- window.location = page.path;
- }
- }
- onBlur() {
- this.setState({
- isShownHelp: false,
- });
- this.getHelpElement();
- }
- onFocus() {
- this.setState({
- isShownHelp: true,
- });
- }
- getHelpElement() {
- const { t, appContainer } = this.props;
- const { isShownHelp } = this.state;
- const config = appContainer.getConfig();
- const isReachable = config.isSearchServiceReachable;
- if (!isReachable) {
- return (
- <>
- <h5 className="text-danger">Error occured on Search Service</h5>
- Try to reconnect from management page.
- </>
- );
- }
- if (!isShownHelp) {
- return <></>;
- }
- return (
- <table className="table grw-search-table search-help m-0">
- <caption className="text-left text-primary p-2">
- <h5 className="h6"><i className="icon-magnifier pr-2 mb-2" />{ t('search_help.title') }</h5>
- </caption>
- <tbody>
- <tr>
- <th className="py-2">
- <code>word1</code> <code>word2</code><br></br>
- <small>({ t('search_help.and.syntax help') })</small>
- </th>
- <td><h6 className="m-0">{ t('search_help.and.desc', { word1: 'word1', word2: 'word2' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2">
- <code>"This is GROWI"</code><br></br>
- <small>({ t('search_help.phrase.syntax help') })</small>
- </th>
- <td><h6 className="m-0">{ t('search_help.phrase.desc', { phrase: 'This is GROWI' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2"><code>-keyword</code></th>
- <td><h6 className="m-0">{ t('search_help.exclude.desc', { word: 'keyword' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2"><code>prefix:/user/</code></th>
- <td><h6 className="m-0">{ t('search_help.prefix.desc', { path: '/user/' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2"><code>-prefix:/user/</code></th>
- <td><h6 className="m-0">{ t('search_help.exclude_prefix.desc', { path: '/user/' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2"><code>tag:wiki</code></th>
- <td><h6 className="m-0">{ t('search_help.tag.desc', { tag: 'wiki' }) }</h6></td>
- </tr>
- <tr>
- <th className="py-2"><code>-tag:wiki</code></th>
- <td><h6 className="m-0">{ t('search_help.exclude_tag.desc', { tag: 'wiki' }) }</h6></td>
- </tr>
- </tbody>
- </table>
- );
- }
- render() {
- const { t, appContainer, dropup } = this.props;
- const config = appContainer.getConfig();
- const isReachable = config.isSearchServiceReachable;
- const placeholder = isReachable
- ? 'Search ...'
- : 'Error on Search Service';
- const emptyLabel = (this.state.searchError !== null)
- ? 'Error on searching.'
- : t('search.search page bodies');
- return (
- <SearchTypeahead
- dropup={dropup}
- onChange={this.onChange}
- onSubmit={this.props.onSubmit}
- onInputChange={this.props.onInputChange}
- onSearchError={this.onSearchError}
- emptyLabel={emptyLabel}
- placeholder={placeholder}
- helpElement={this.getHelpElement()}
- keywordOnInit={this.props.keyword}
- onBlur={this.onBlur}
- onFocus={this.onFocus}
- />
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const SearchFormWrapper = withUnstatedContainers(SearchForm, [AppContainer]);
- SearchForm.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- dropup: PropTypes.bool,
- keyword: PropTypes.string,
- onSubmit: PropTypes.func.isRequired,
- onInputChange: PropTypes.func,
- };
- SearchForm.defaultProps = {
- onInputChange: () => {},
- };
- export default SearchFormWrapper;
|