Skip to content
Snippets Groups Projects
Commit 4a9afdeb authored by Tore.Brede's avatar Tore.Brede
Browse files

Merge branch 'add_missing_sorting_for_countries' into 'master'

Adding missing sorting for countries

See merge request !145
parents 7a3dba1f eb8f6402
No related branches found
No related tags found
1 merge request!145Adding missing sorting for countries
Pipeline #100440 passed
...@@ -246,12 +246,34 @@ const GuestRegisterStep = forwardRef( ...@@ -246,12 +246,34 @@ const GuestRegisterStep = forwardRef(
<MenuItem disabled value=""> <MenuItem disabled value="">
{t('input.countryCallingCode')} {t('input.countryCallingCode')}
</MenuItem> </MenuItem>
{getCountries().map((country) => ( {getCountries()
<MenuItem key={country} value={country}> .map((country: CountryCode) => {
{getName(country, i18n.language)} ( // Make a tuple including the name to avoid
{getCountryCallingCode(country)}) // having to get it again further down
</MenuItem> const countryTuple: [CountryCode, string] = [
))} country,
getName(country, i18n.language),
]
return countryTuple
})
.filter(
// A few country codes do no have a country name. Assuming
// these are not needed and filtering them out to make the
// list look nicer
(countryTuple: [CountryCode, string]) =>
countryTuple[1] !== undefined
)
.sort(
(
country1: [CountryCode, string],
country2: [CountryCode, string]
) => country1[1].localeCompare(country2[1])
)
.map((country) => (
<MenuItem key={country[0]} value={country[0]}>
{country[1]} ({getCountryCallingCode(country[0])})
</MenuItem>
))}
</Select> </Select>
<TextField <TextField
...@@ -312,14 +334,32 @@ const GuestRegisterStep = forwardRef( ...@@ -312,14 +334,32 @@ const GuestRegisterStep = forwardRef(
<MenuItem disabled value=""> <MenuItem disabled value="">
{t('input.passportNationality')} {t('input.passportNationality')}
</MenuItem> </MenuItem>
{Object.keys(getAlpha2Codes()).map((countryAlpha2Code) => ( {Object.keys(getAlpha2Codes())
<MenuItem .map((countryAlphaCode: string) => {
key={countryAlpha2Code} const countryTuple: [string, string] = [
value={countryAlpha2Code} countryAlphaCode,
> getName(countryAlphaCode, i18n.language),
{getName(countryAlpha2Code, i18n.language)} ]
</MenuItem> return countryTuple
))} })
.filter(
(countryTuple: [string, string]) =>
// All countries are expected to have a name, this filtering
// is here to make some tests run in an environment where the
// internationalization is not set up
countryTuple[1] !== undefined
)
.sort(
(
countryTuple1: [string, string],
countryTuple2: [string, string]
) => countryTuple1[1].localeCompare(countryTuple2[1])
)
.map((countryTuple) => (
<MenuItem key={countryTuple[0]} value={countryTuple[0]}>
{countryTuple[1]}
</MenuItem>
))}
</Select> </Select>
</> </>
)} )}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment