mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
renamed lookupCountryInfo and lookupCountryName functions
This commit is contained in:
parent
665eeff75a
commit
d388eef59f
3 changed files with 17 additions and 8 deletions
|
@ -456,7 +456,7 @@ class DemographicsStep extends React.Component {
|
||||||
// look up country name using user's country code selection ('us' -> 'United States')
|
// look up country name using user's country code selection ('us' -> 'United States')
|
||||||
getCountryName (values) {
|
getCountryName (values) {
|
||||||
if (values.countryCode) {
|
if (values.countryCode) {
|
||||||
const countryInfo = countryData.lookupCountryInfo(values.countryCode);
|
const countryInfo = countryData.lookupCountryByCode(values.countryCode);
|
||||||
if (countryInfo) {
|
if (countryInfo) {
|
||||||
return countryInfo.name;
|
return countryInfo.name;
|
||||||
}
|
}
|
||||||
|
@ -466,7 +466,7 @@ class DemographicsStep extends React.Component {
|
||||||
// look up country code from country label ('United States' -> 'us')
|
// look up country code from country label ('United States' -> 'us')
|
||||||
// if `countryName` is not found, including if it's null or undefined, then this function will return undefined.
|
// if `countryName` is not found, including if it's null or undefined, then this function will return undefined.
|
||||||
getCountryCode (countryName) {
|
getCountryCode (countryName) {
|
||||||
const country = countryData.lookupCountryName(countryName);
|
const country = countryData.lookupCountryByName(countryName);
|
||||||
return country && country.code;
|
return country && country.code;
|
||||||
}
|
}
|
||||||
handleValidSubmit (formData) {
|
handleValidSubmit (formData) {
|
||||||
|
|
|
@ -1036,11 +1036,11 @@ const countryOptions = module.exports.countryOptions = (startingCountryInfo, val
|
||||||
))
|
))
|
||||||
);
|
);
|
||||||
|
|
||||||
module.exports.lookupCountryInfo = countryCode => (
|
module.exports.lookupCountryByCode = countryCode => (
|
||||||
countryInfo.find(country => country.code === countryCode)
|
countryInfo.find(country => country.code === countryCode)
|
||||||
);
|
);
|
||||||
|
|
||||||
module.exports.lookupCountryName = countryName => (
|
module.exports.lookupCountryByName = countryName => (
|
||||||
countryInfo.find(country => country.name === countryName)
|
countryInfo.find(country => country.name === countryName)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
const {
|
const {
|
||||||
countryInfo,
|
countryInfo,
|
||||||
countryOptions,
|
countryOptions,
|
||||||
lookupCountryInfo,
|
lookupCountryByCode,
|
||||||
|
lookupCountryByName,
|
||||||
dupeCommonCountries,
|
dupeCommonCountries,
|
||||||
registrationCountryCodeOptions,
|
registrationCountryCodeOptions,
|
||||||
registrationCountryNameOptions,
|
registrationCountryNameOptions,
|
||||||
|
@ -45,9 +46,17 @@ describe('unit test lib/country-data.js', () => {
|
||||||
expect(szInfo.label).toEqual('Eswatini');
|
expect(szInfo.label).toEqual('Eswatini');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('lookupCountryInfo() will find country info', () => {
|
test('lookupCountryByCode() will find country info', () => {
|
||||||
expect(typeof lookupCountryInfo).toBe('function');
|
expect(typeof lookupCountryByCode).toBe('function');
|
||||||
const eswatiniInfo = lookupCountryInfo('sz');
|
const eswatiniInfo = lookupCountryByCode('sz');
|
||||||
|
expect(eswatiniInfo.name).toEqual('Swaziland');
|
||||||
|
expect(eswatiniInfo.display).toEqual('Eswatini');
|
||||||
|
expect(eswatiniInfo.code).toEqual('sz');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('lookupCountryByName() will find country info', () => {
|
||||||
|
expect(typeof lookupCountryByName).toBe('function');
|
||||||
|
const eswatiniInfo = lookupCountryByName('Swaziland');
|
||||||
expect(eswatiniInfo.name).toEqual('Swaziland');
|
expect(eswatiniInfo.name).toEqual('Swaziland');
|
||||||
expect(eswatiniInfo.display).toEqual('Eswatini');
|
expect(eswatiniInfo.display).toEqual('Eswatini');
|
||||||
expect(eswatiniInfo.code).toEqual('sz');
|
expect(eswatiniInfo.code).toEqual('sz');
|
||||||
|
|
Loading…
Reference in a new issue