mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
wip: sort themes in GeoDataMine importer
This commit is contained in:
parent
d928195a5b
commit
e90ad4b9cd
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
import { DomUtil, DomEvent } from '../../../vendors/leaflet/leaflet-src.esm.js'
|
import { DomUtil, DomEvent } from '../../../vendors/leaflet/leaflet-src.esm.js'
|
||||||
import { BaseAjax, SingleMixin } from '../autocomplete.js'
|
import { BaseAjax, SingleMixin } from '../autocomplete.js'
|
||||||
import { translate } from '../i18n.js'
|
import { translate } from '../i18n.js'
|
||||||
|
import * as Utils from '../utils.js'
|
||||||
|
|
||||||
const BOUNDARY_TYPES = {
|
const BOUNDARY_TYPES = {
|
||||||
admin_6: 'département',
|
admin_6: 'département',
|
||||||
|
@ -52,6 +53,7 @@ export class Importer {
|
||||||
const select = container.querySelector('select')
|
const select = container.querySelector('select')
|
||||||
if (response && response.ok) {
|
if (response && response.ok) {
|
||||||
const { themes } = await response.json()
|
const { themes } = await response.json()
|
||||||
|
themes.sort((a, b) => Utils.naturalSort(a['name:fr'], b ['name:fr']))
|
||||||
for (const theme of themes) {
|
for (const theme of themes) {
|
||||||
DomUtil.element({
|
DomUtil.element({
|
||||||
tagName: 'option',
|
tagName: 'option',
|
||||||
|
|
Loading…
Reference in a new issue