$ npm i react-material-select --save
http://react-material-select.netlify.com/
<ReactMaterialSelect ...>
parameter | description | is required |
---|---|---|
onChange | callback function (function) | no |
defaultValue | start value. One of dataValue keys. Default: null (string) | no |
label | label for select. Default: null (string) | no |
resetLabel | label for reset select value. Default: 'No value' (string) it also can be boolean value "false" | no |
<option ...>
parameter | description | is required |
---|---|---|
dataValue | selected value (string) | yes |
It should looks like below:
import React, {Component} from 'react'
import ReactMaterialSelect from 'react-material-select'
import 'react-material-select/lib/css/reactMaterialSelect.css'
class Example extends Component {
render() {
return (
<ReactMaterialSelect>
<option dataValue="Star Wars">Darth Vader</option>
...
</ReactMaterialSelect>
)
}
}
import React, {Component} from 'react'
import ReactMaterialSelect from 'react-material-select'
import 'react-material-select/lib/css/reactMaterialSelect.css'
getValue() {
this.setState({
selected1: {
value: this.refs.firstselect.getValue(),
label: this.refs.firstselect.getLabel(),
},
})
}
class Example extends Component {
render() {
return (
<ReactMaterialSelect ref="firstselect">
<option dataValue="Star Wars">Darth Vader</option>
...
</ReactMaterialSelect>
<button onClick={this.getValue.bind(this)}>Get value and label from select</button>
)
}
}
import React, {Component} from 'react'
import ReactMaterialSelect from 'react-material-select'
import 'react-material-select/lib/css/reactMaterialSelect.css'
constructor() {
super()
this.state = {
object: {},
}
this.callbackFunction = this.callbackFunction.bind(this)
}
callbackFunction(selected) {
this.setState({object: selected})
}
class Example extends Component {
render() {
return (
<ReactMaterialSelect label="Choose favourite film character" defaultValue="The Godfather" resetLabel="None of them" onChange={this.callbackFunction}>
<option dataValue="The Godfather">Vito Corleone</option>
...
</ReactMaterialSelect>
)
}
}
To remember how to do it ;)
- change version of the package
npm run compile
npm run build
- git commit
npm publish