0
Q:

react-select example

import React, { Component } from 'react'
import Select from 'react-select'

const options = [
  { value: 'chocolate', label: 'Chocolate' },
  { value: 'strawberry', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
  <Select options={options} />
)
0
import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import AsyncSelect from 'react-select/lib/Async'
import axios from 'axios'
import './styles.css'

const NEW_API_KEY = '?api_key=cfe422613b250f702980a3bbf9e90716'
const SEARCH_URL = 'https://api.themoviedb.org/3/search/movie'
const LANGUAGE = '&language=en-US&'
const END_OPTIONS = '&page=1&include_adult=false'
const QUERY = `query=`

export default class App extends Component {
  
  state = {
    selectedTitle: ''
  }

  searchTitles = async (movieTitle) => {
    const urlRequest = 
      `${SEARCH_URL}${NEW_API_KEY}${LANGUAGE}${QUERY}
	  ${!movieTitle && 'a'}${END_OPTIONS}`
    
    const { data } = await axios.get(urlRequest)
    
    const compare = data.results
      .filter((i) =>
        i.overview.toLowerCase().includes(movieTitle.toLowerCase())
      )
      .map((film) => ({
        label: film.title,
        value: film.id
      }))

    return compare
  }
  render() {
    return (
      <div className="App">
        <AsyncSelect
          cacheOptions
          defaultOptions
          value={this.state.selectedTitle}
          loadOptions={this.searchTitles}
          onChange={(property, value) => {
            this.setState({ selectedTitle: property })
          }}/>
      </div>
    )
  }
}

const rootElement = document.getElementById('root')
ReactDOM.render(<App />, rootElement)
0
yarn add react-select
0

New to Communities?

Join the community