Vite + TypeScript PWA that mirrors the Android app's core features: - Pre-processed shelter data (build-time UTM33N→WGS84 conversion) - Leaflet map with shelter markers, user location, and offline tiles - Canvas compass arrow (ported from DirectionArrowView.kt) - IndexedDB shelter cache with 7-day staleness check - Service worker with CacheFirst tiles and precached app shell - i18n for en, nb, nn (ported from Android strings.xml) - iOS/Android compass handling with low-pass filter - Respects user map interaction (no auto-snap on pan/zoom) - Build revision cache-breaker for reliable SW updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
var hasPropertyDescriptors = require('has-property-descriptors');
|
|
|
|
var $defineProperty = require('es-define-property');
|
|
|
|
var hasArrayLengthDefineBug = hasPropertyDescriptors.hasArrayLengthDefineBug();
|
|
|
|
// eslint-disable-next-line global-require
|
|
var isArray = hasArrayLengthDefineBug && require('../helpers/IsArray');
|
|
|
|
var callBound = require('call-bound');
|
|
|
|
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
|
|
|
|
// eslint-disable-next-line max-params
|
|
module.exports = function DefineOwnProperty(IsDataDescriptor, SameValue, FromPropertyDescriptor, O, P, desc) {
|
|
if (!$defineProperty) {
|
|
if (!IsDataDescriptor(desc)) {
|
|
// ES3 does not support getters/setters
|
|
return false;
|
|
}
|
|
if (!desc['[[Configurable]]'] || !desc['[[Writable]]']) {
|
|
return false;
|
|
}
|
|
|
|
// fallback for ES3
|
|
if (P in O && $isEnumerable(O, P) !== !!desc['[[Enumerable]]']) {
|
|
// a non-enumerable existing property
|
|
return false;
|
|
}
|
|
|
|
// property does not exist at all, or exists but is enumerable
|
|
var V = desc['[[Value]]'];
|
|
// eslint-disable-next-line no-param-reassign
|
|
O[P] = V; // will use [[Define]]
|
|
return SameValue(O[P], V);
|
|
}
|
|
if (
|
|
hasArrayLengthDefineBug
|
|
&& P === 'length'
|
|
&& '[[Value]]' in desc
|
|
&& isArray(O)
|
|
&& O.length !== desc['[[Value]]']
|
|
) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
O.length = desc['[[Value]]'];
|
|
return O.length === desc['[[Value]]'];
|
|
}
|
|
|
|
$defineProperty(O, P, FromPropertyDescriptor(desc));
|
|
return true;
|
|
};
|