This package take country-list as reference, and make it more friendly to react-select
Maps ISO 3166-1-alpha-2 codes to English country names and match react-select options props.
Uses data from http://data.okfn.org/data/country-list
npm install react-select-country-list --save
or
yarn add react-select-country-list
import React, { Component } from 'react';
import Select from 'react-select'
import countryList from 'react-select-country-list'
class CountrySelector extends Component {
constructor(props) {
super(props)
this.options = countryList().getData()
this.state = {
options: this.options,
value: null,
}
}
changeHandler = value => {
this.setState({ value })
}
render() {
return (
<Select
options={this.state.options}
value={this.state.value}
onChange={this.changeHandler}
/>
)
}
}
All input is case-insensitive.
Expects the English country name.
Returns the code for that country.
If not found, it returns undefined
.
Expects a two-digit country code.
Returns the name for that country.
If not found, it returns undefined
.
Returns an array of all country codes.
Returns an array of all country names.
Returns a key-value object of all countries using the code as key.
Returns a key-value object of all countries using the name as key.
Returns an array of all country information, in the same format as it gets imported.
Due to different perspectives among different regions, this method can help developers customize the label of specific country. What's more, it can be chained with another methods above.
// Make 'Viet Nam' -> 'Vietnam'
countries.setLabel('VN', 'Vietnam').getLabel('VN') // 'Vietnam'
You may want an empty value option in the list, so here's the helper function for you. Again, it can be chained with another methods above.
countries.setEmpty('Select a Country').getLabel('') // 'Select a Country'
We can even chain setLabel
and setEmpty
together to have list with an empty option and the modified label.
countries.setLabel('VN', 'Vietnam').setEmpty('Select a Country').getLabel('VN') // 'Vietnam'
You may want to display native name of countries, this is the method for you. The data source of native names can be found here
countries.native().getLabel('TW') // 臺灣
MIT