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>
113 lines
2.4 KiB
JavaScript
113 lines
2.4 KiB
JavaScript
|
|
namespace('concurrent', function () {
|
|
task('A', function () {
|
|
console.log('Started A');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Finished A');
|
|
resolve();
|
|
}, 200);
|
|
});
|
|
});
|
|
|
|
task('B', function () {
|
|
console.log('Started B');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Finished B');
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('C', function () {
|
|
console.log('Started C');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Finished C');
|
|
resolve();
|
|
}, 100);
|
|
});
|
|
});
|
|
|
|
task('D', function () {
|
|
console.log('Started D');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Finished D');
|
|
resolve();
|
|
}, 300);
|
|
});
|
|
});
|
|
|
|
task('Ba', ['A'], function () {
|
|
console.log('Started Ba');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Finished Ba');
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('Afail', function () {
|
|
console.log('Started failing task');
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
console.log('Failing B with error');
|
|
throw new Error('I failed');
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('simple1', ['A','B'], {concurrency: 2}, function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('simple2', ['C','D'], {concurrency: 2}, function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('seqconcurrent', ['simple1','simple2'], function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('concurrentconcurrent', ['simple1','simple2'], {concurrency: 2}, function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('subdep', ['A','Ba'], {concurrency: 2}, function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
task('fail', ['A', 'B', 'Afail'], {concurrency: 3}, function () {
|
|
return new Promise((resolve, reject) => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
}, 50);
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
|