Created
April 2, 2019 09:15
-
-
Save barryblando/ff834951145f488583ae81fac0dcfb26 to your computer and use it in GitHub Desktop.
Rxjs + Downshift Autocomplete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Downshift from 'downshift'; | |
import Rx from 'rxjs'; | |
import { ajax } from 'rxjs/observable/dom/ajax'; | |
const makeUrl = search => | |
`https://en.wikipedia.org/w/api.php?action=query&format=json&list=search&utf8=1&srsearch=${encodeURIComponent(str)}`; | |
const input$ = new Rx.Subject(); | |
const search$ = input$ | |
.debounceTime(400) | |
.distinctUntilChanged() | |
.filter(input => input.length > 1) | |
.switchMap(input => | |
ajax({ url: makeUrl(input), method: 'GET', crossDomain: true }) | |
.filter(results => !!results) | |
.map(({ response }) => response.query.search || []) | |
); | |
export default class extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { results: [] }; | |
} | |
componentDidMount() { | |
this.unsubscribe = search$.subscribe( | |
results => { this.setState({ results }); }, | |
console.log, | |
); | |
} | |
componentWillUnMount() { | |
this.unsubscribe(); | |
} | |
handleChange = e => { | |
input$.next(e.target.value); | |
}; | |
render() { | |
return ( | |
<Downshift | |
itemToString={(i) => i.title} | |
onChange={this.props.onChange} | |
render={({ | |
getInputProps, | |
getItemProps, | |
getLabelProps, | |
isOpen, | |
inputValue, | |
highlightedIndex, | |
selectedItem, | |
}) => ( | |
<div className="autocomplete-container"> | |
<label {...getLabelProps()}>Search: </label> | |
<input {...getInputProps({ onChange: this.handleChange })} /> | |
{isOpen ? ( | |
<div> | |
{this.state.results | |
.map((item, index) => ( | |
<div | |
{...getItemProps({ | |
key: item.pageid, | |
index, | |
item, | |
style: { | |
backgroundColor: | |
highlightedIndex === index ? 'lightgray' : 'white', | |
fontWeight: selectedItem === item ? 'bold' : 'normal', | |
}, | |
})} | |
> | |
{item.title} | |
</div> | |
))} | |
</div> | |
) : null} | |
</div> | |
)} | |
/> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment