1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-28 09:33:27 +02:00

fix(web): Sort timezones in assets settings by offset (#10697)

* fixed timezones on web are sorted alphabetically

* swaped order of operations in order to use DataTime.offset property for sorting

* optimization
This commit is contained in:
daniel bogachevsky 2024-07-01 06:41:47 +03:00 committed by GitHub
parent d00d33d8a5
commit 1d282851e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@
/**
* Timezone name
*
* e.g. Europe/Berlin
* e.g. Asia/Jerusalem (+03:00)
*/
label: string;
@ -24,10 +24,22 @@
value: string;
};
const timezones: ZoneOption[] = Intl.supportedValuesOf('timeZone').map((zone: string) => ({
label: zone + ` (${DateTime.local({ zone }).toFormat('ZZ')})`,
value: 'UTC' + DateTime.local({ zone }).toFormat('ZZ'),
}));
const timezones: ZoneOption[] = Intl.supportedValuesOf('timeZone')
.map((zone) => DateTime.local({ zone }))
.sort((zoneA, zoneB) => {
let numericallyCorrect = zoneA.offset - zoneB.offset;
if (numericallyCorrect != 0) {
return numericallyCorrect;
}
return zoneA.zoneName.localeCompare(zoneB.zoneName, undefined, { sensitivity: 'base' });
})
.map((zone) => {
const offset = zone.toFormat('ZZ');
return {
label: `${zone.zoneName} (${offset})`,
value: 'UTC' + offset,
};
});
const initialOption = timezones.find((item) => item.value === 'UTC' + initialDate.toFormat('ZZ'));