私がどのように見えるHome
と呼ばれるコンポーネントいる:私のSearchInput
がどのように見えるReactとReduxで検索オートコンプリートを実行するにはどうすればよいですか?
render() {
const clips = ObjectPath.get(this.props, 'search.data.clips.results', [])
return (
<div className='search__container right-content-wrapper'>
<SearchInput
value={this.props.autocomplete.query.q}
placeholder='Search all the Vidys'
status={this.props.autocomplete.status}
hints={this.props.autocomplete.data}
onType={this.props.onAutocomplete}
onSubmit={this.props.onSearch}
/>
<SearchResults
results={clips}
location={this.props.location}
status={this.props.search.status}
/>
</div>
)
}
を:
render() {
const { value, hints, status } = this.props
const hasResults = hints.length
const areResultsVisible = hasResults && !this.state.hideAutocompleteResults && this.state.hasFocus
return (
<div className= {`search-input__component ${status}`}>
{this.props.showLogo && (
<a href="javascript:void(0);" className="logo-on-search"></a>
)}
<div className='input'>
<input
type='text'
className='input-field'
value={value}
placeholder={this.state.placeholder}
onFocus={::this.onFocus}
onBlur={::this.onBlur}
onKeyUp={::this.onKeyUp}
onKeyDown={::this.hanleArrowKeys}
onChange={::this.onChange}
/>
</div>
<button className="btn emoji"></button>
<button className='btn submit' onClick={() => this.onSubmit()}></button>
{(() => {
if (!areResultsVisible && false) return
const springConfig = {
stiffness: 600,
damping: 30
}
return <StaggeredMotion
defaultStyles={hints.map((item) => ({ x: -10, o: 0, z: 1.1 }))}
styles={(prevInterpolatedStyles) => prevInterpolatedStyles.map((_, i) => (
i === 0
? {
o: spring(1, springConfig),
x: spring(1, springConfig),
z: spring(1, springConfig)
}
: {
o: spring(prevInterpolatedStyles[i - 1].o, springConfig),
x: spring(prevInterpolatedStyles[i - 1].x, springConfig),
z: spring(prevInterpolatedStyles[i - 1].z, springConfig)
}
))}
>
{(styles) => (
<div className='hints'>
{styles.map((style, i) => (
<div
key={i}
className={`hint${i === this.state.hintSelection ? ' selected' : ''} ${hints[i].type}`}
onClick={() => this.onHintClick(hints[i])}
onMouseEnter={() => this.setState({ hintSelection: i })}
style={{
transform: `translateX(${style.x}px)`,
opacity: style.o
}}
>
<div className='hint-content'>
<div className='hint-title'>{this.highlightMatch(hints[i])}</div>
{(() => hints[i].type !== 'phrase' && <div className='hint-type'>{hints[i].type}</div>)()}
</div>
</div>
))}
</div>
)}
</StaggeredMotion>
})()}
</div>
)
}
だから私は、私はもののトンを再構築する必要があることを認識し、私は探しています具体的な助けよりも一般的な指導。私は、Reactと、redux
には比較的新しいので、すべて理解できないかもしれません。私は何とかconnect
をSearchInput
に設定して実際の検索とオートコンプリートを行う必要があるように感じます。何か案は?