| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withUnstatedContainers } from '../UnstatedUtils';
- import AppContainer from '~/client/services/AppContainer';
- import SearchForm from '../SearchForm';
- import loggerFactory from '~/utils/logger';
- const logger = loggerFactory('growi:searchPageForm');
- // Search.SearchForm
- class SearchPageForm extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- keyword: this.props.keyword,
- searchedKeyword: this.props.keyword,
- };
- this.search = this.search.bind(this);
- this.onInputChange = this.onInputChange.bind(this);
- }
- search() {
- if (this.props.onSearchFormChanged != null) {
- const keyword = this.state.keyword;
- this.props.onSearchFormChanged({ keyword });
- this.setState({ searchedKeyword: keyword });
- }
- else {
- throw new Error('onSearchFormChanged method is null');
- }
- }
- onInputChange(input) { // for only submitting with button
- this.setState({ keyword: input });
- }
- render() {
- return (
- // TODO: modify design after other component is created
- <div className="grw-search-form-in-search-result-page d-flex align-items-center">
- <div className="input-group flex-nowrap">
- <SearchForm
- onSubmit={this.search}
- keyword={this.state.searchedKeyword}
- onInputChange={this.onInputChange}
- />
- <div className="btn-group-submit-search">
- <span
- role="button"
- className="text-decoration-none"
- onClick={() => {
- try {
- this.search();
- }
- catch (error) {
- logger.error(error);
- }
- }}
- >
- <i className="icon-magnifier"></i>
- </span>
- </div>
- </div>
- </div>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const SearchPageFormWrapper = withUnstatedContainers(SearchPageForm, [AppContainer]);
- SearchPageForm.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- keyword: PropTypes.string,
- onSearchFormChanged: PropTypes.func,
- };
- SearchPageForm.defaultProps = {
- };
- export default SearchPageFormWrapper;
|