react select options code example
Example 1: react select, option
class FlavorForm extends React.Component {
constructor(props) {
super(props);
this.state = {value: 'coconut'};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleChange(event) { this.setState({value: event.target.value}); }
handleSubmit(event) {
alert('Your favorite flavor is: ' + this.state.value);
event.preventDefault();
}
render() {
return (
);
}
}
Example 2: react select options
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 = () => (
)
Example 3: react select options
yarn add react-select
Example 4: react-select example
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 (
{
this.setState({ selectedTitle: property })
}}/>
)
}
}
const rootElement = document.getElementById('root')
ReactDOM.render(, rootElement)