39 lines
No EOL
1.1 KiB
JavaScript
39 lines
No EOL
1.1 KiB
JavaScript
import slugify from 'slugify'
|
|
|
|
export const shuffleArray = array => {
|
|
for (let i = array.length - 1; i > 0; i--) {
|
|
let j = Math.floor(Math.random() * (i + 1));
|
|
let temp = array[i];
|
|
array[i] = array[j];
|
|
array[j] = temp;
|
|
}
|
|
return array
|
|
}
|
|
|
|
export const sanitizeMediaString = (str) => {
|
|
if (!str) return null
|
|
const sanitizedString = str.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '')
|
|
|
|
return slugify(sanitizedString, {
|
|
replacement: '-',
|
|
remove: /[#,&,+()$~%.'":*?<>{}]/g,
|
|
lower: true,
|
|
})
|
|
}
|
|
|
|
export const regionNames = new Intl.DisplayNames(['en'], { type: 'region' })
|
|
|
|
export const getCountryName = (countryCode) => regionNames.of(countryCode.trim()) || countryCode.trim()
|
|
|
|
export const parseCountryField = (countryField) => {
|
|
if (!countryField) return null
|
|
|
|
const delimiters = [',', '/', '&', 'and']
|
|
let countries = [countryField]
|
|
|
|
delimiters.forEach(delimiter => {
|
|
countries = countries.flatMap(country => country.split(delimiter))
|
|
})
|
|
|
|
return countries.map(getCountryName).join(', ')
|
|
} |