|
|
import page from '@automattic/calypso-router'; |
|
|
import { map } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { stringify } from 'qs'; |
|
|
import { Component } from 'react'; |
|
|
import EmptyContent from 'calypso/components/empty-content'; |
|
|
import SearchCard from 'calypso/components/search-card'; |
|
|
import { addQueryArgs } from 'calypso/lib/url'; |
|
|
import DocsSelectorsResult from './result'; |
|
|
|
|
|
export default class DocsSelectorsSearch extends Component { |
|
|
static propTypes = { |
|
|
search: PropTypes.string, |
|
|
}; |
|
|
|
|
|
state = {}; |
|
|
|
|
|
componentDidMount() { |
|
|
this.request( this.props.search ); |
|
|
} |
|
|
|
|
|
componentDidUpdate( prevProps ) { |
|
|
if ( prevProps.search !== this.props.search ) { |
|
|
this.request( this.props.search ); |
|
|
} |
|
|
} |
|
|
|
|
|
request = async ( search ) => { |
|
|
const query = stringify( { search } ); |
|
|
|
|
|
try { |
|
|
const res = await fetch( `/devdocs/service/selectors?${ query }` ); |
|
|
if ( res.ok ) { |
|
|
const results = await res.json(); |
|
|
this.setState( { results } ); |
|
|
} |
|
|
} catch ( error ) { |
|
|
|
|
|
} |
|
|
}; |
|
|
|
|
|
onSearch( search ) { |
|
|
page( addQueryArgs( { search }, '/devdocs/selectors' ) ); |
|
|
} |
|
|
|
|
|
render() { |
|
|
const { search } = this.props; |
|
|
const { results } = this.state; |
|
|
|
|
|
return ( |
|
|
<div> |
|
|
<SearchCard |
|
|
// eslint-disable-next-line jsx-a11y/no-autofocus |
|
|
autoFocus |
|
|
placeholder="Search selectors…" |
|
|
analyticsGroup="Docs" |
|
|
initialValue={ search } |
|
|
delaySearch |
|
|
onSearch={ this.onSearch } |
|
|
/> |
|
|
{ results && ! results.length && ( |
|
|
<EmptyContent title="No selectors found" line="Try another search query" /> |
|
|
) } |
|
|
<ul className="docs-selectors__results"> |
|
|
{ map( results, ( { item: { name, description, tags } } ) => ( |
|
|
<li key={ name }> |
|
|
<DocsSelectorsResult |
|
|
{ ...{ name, description, tags } } |
|
|
url={ addQueryArgs( { search }, `/devdocs/selectors/${ name }` ) } |
|
|
/> |
|
|
</li> |
|
|
) ) } |
|
|
</ul> |
|
|
</div> |
|
|
); |
|
|
} |
|
|
} |
|
|
|