-
Notifications
You must be signed in to change notification settings - Fork 2
/
webAppServiceWorker.js
102 lines (95 loc) · 5.2 KB
/
webAppServiceWorker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//
// file "webAppServiceWorker.js"
//
const cacheName = "FrACT10·2024-11-08";
// Fetching content using Service Worker, this is called on reload. If cache name has changed, `install` is next
self.addEventListener('fetch', (event) => {
//console.info("webAppServiceWorker responding to fetch event…");
event.respondWith((async () => {
const response1 = await caches.match(event.request);
if (response1) return response1;
const response2 = await fetch(event.request);
const cache = await caches.open(cacheName);
// console.info(`webAppServiceWorker Caching new resource: ${event.request.url}`);
cache.put(event.request, response2.clone());
return response2;
})());
});
// Installing Service Worker, this is called first, before "AppController>init"
self.addEventListener('install', (event) => {
//console.info("webAppServiceWorker responding to install event…");
event.waitUntil(
caches.open(cacheName).then((cache) => {
return cache.addAll([ // Cache all these files
'./',
'./Browser.environment/dataURLs.txt',
'./Browser.environment/MHTMLData.txt',
'./Browser.environment/MHTMLPaths.txt',
'./Browser.environment/MHTMLTest.txt',
'./Browser.environment/FrACT.sj',
'./index.html',
'./Info.plist',
'./Resources/allRewardSprites.png',
'./Resources/plasticCard4calibration.png',
'./Resources/MainMenu.cib',
'./Resources/buttons/buttonContrastC.png',
'./Resources/buttons/buttonContrastE.png',
'./Resources/buttons/buttonContrastLett.png',
'./Resources/buttons/buttonGrating.png',
'./Resources/buttons/buttonAcuityC.png',
'./Resources/buttons/buttonAcuityE.png',
'./Resources/buttons/buttonAcuityLett.png',
'./Resources/buttons/buttonAcuityLineByLine.png',
'./Resources/buttons/buttonAcuityTAO.png',
'./Resources/buttons/buttonAcuityVernier.png',
'./Resources/buttons/iconAbout.png',
'./Resources/buttons/iconFullscreen.png',
'./Resources/buttons/iconHelp.png',
'./Resources/buttons/iconSettings.png',
'./Resources/icons/FrACT_icon-128.png',
'./Resources/icons/FrACT_icon-390.png',
'./Resources/icons/FrACT_icon-512.png',
'./Resources/icons/FrACT3icon.ico',
'./Resources/icons/icon.png',
'./Resources/keyMaps/keyMap4.png',
'./Resources/keyMaps/keyMap4keysOnly.png',
'./Resources/keyMaps/keyMap8.png',
'./Resources/keyMaps/keyMapUpDownOnly.png',
'./Resources/optotypeEs/optotypeE000.png',
'./Resources/optotypeEs/optotypeE090.png',
'./Resources/optotypeEs/optotypeE180.png',
'./Resources/optotypeEs/optotypeE270.png',
'./Resources/sounds/runEnd/cuteLevelUp.mp3',
'./Resources/sounds/runEnd/gong.mp3',
'./Resources/sounds/trialNo/error2.mp3',
'./Resources/sounds/trialNo/whistle.mp3',
'./Resources/sounds/trialYes/miniPop.mp3',
'./Resources/sounds/trialYes/tink.mp3',
'./Resources/TAOs/butterfly.png',
'./Resources/TAOs/car.png',
'./Resources/TAOs/duck.png',
'./Resources/TAOs/flower.png',
'./Resources/TAOs/heart.png',
'./Resources/TAOs/house.png',
'./Resources/TAOs/moon.png',
'./Resources/TAOs/rabbit.png',
'./Resources/TAOs/rocket.png',
'./Resources/TAOs/tree.png',
]);
})
);
});
// Activate Service Worker, this is called after the `install` event
self.addEventListener('activate', function(event) {
//console.info("webAppServiceWorker responding to activate event…");
const cacheWhitelist = [cacheName];
event.waitUntil(
caches.keys().then(function(keyList) {
return Promise.all(keyList.map(function(key) {
if (cacheWhitelist.indexOf(key) === -1) {
return caches.delete(key);
}
}));
})
)
});