Autocomplete Thailand address input component for React.js
npm install react-thailand-address-autocomplete
yarn add react-thailand-address-autocomplete
`
npm
`
npm install --save react-thailand-address-autocomplete
`
Basic Usage
`js
import InputAddress from 'react-thailand-address-autocomplete'
`
`js
onChange(e) {
this.setState({
[e.target.name]: e.target.value
})
} onSelect(fullAddress) {
const { subdistrict, district, province, zipcode } = fullAddress
this.setState({
subdistrict,
district,
province,
zipcode
})
}
render() {
return (
แขวง / ตำบล
address="subdistrict"
value={this.state.subdistrict}
onChange={this.onChange}
onSelect={this.onSelect}
/>
เขต / อำเภอ
address="district"
value={this.state.district}
onChange={this.onChange}
onSelect={this.onSelect}
/>
);
}
`Props
address: String- Type of input address, including
subdistrict, district, province, and zipcode.- Default value:
subdistrictvalue: String
- The input content value.
onChange: Function(event)
- The callback function that is triggered when the input content is changed.
onSelect: Function(fullAddress)
- The callback function that is triggered when an autocomplete suggestion item is selected.
-
fullAddress is an object of full address.filter: Function(items)
- The callback function that is triggered before suggestion items rendered.
-
items is an array of suggestion items.
`js
address="province"
value={this.state.province}
onChange={this.onChange}
onSelect={this.onSelect}
filter={(items) => items.filter(item => item.province !== 'กรุงเทพมหานคร')}
/>
`delimiter: String
- The delimiter in autocomplete suggestion items that separate each part of address.
- Default value:
, placeholder: String
- Placeholder of the input.
highlight: String
- Highlight color of an autocomplete suggestion item when a cursor on.
- Default value:
#eeeunhighlight: String
- Color of an autocomplete suggestion item when no cursor on.
- Default value:
white`style: Object
- Inline style to apply to the input.
renderStyle: Object
- Inline style to apply to the box of autocomplete suggestion items.