-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserviceWorker.js
92 lines (85 loc) · 2.32 KB
/
serviceWorker.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
const cacheName = 'vanillaOrgChart_v4';
const assets = [
"index.html",
"data.js",
"photos/_default_.webp",
"https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap",
"https://fonts.googleapis.com/css2?family=Manrope:wght@300;800&display=swap"
];
async function cacheFirst( request, fallbackUrl )
{
let fastestResponse;
const responseFromCache = await caches.match( request );
if ( responseFromCache )
{
fastestResponse = responseFromCache;
await everythingElseNext( request, fallbackUrl ); // do this behind the scenes;
} else
{
fastestResponse = await everythingElseNext( request, fallbackUrl );
}
return fastestResponse;
async function everythingElseNext( request, fallbackUrl )
{
let fastestResponse;
try
{
const responseFromNetwork = await fetch( request );
if ( responseFromNetwork.status === 200 )
{
await putInCache( request, responseFromNetwork.clone() ); // do NOT make the user 'await'... just put it in there for later... so why did I put await at the front just now?
fastestResponse = responseFromNetwork;
} else
{
//const fallbackResponse = await caches.match( fallbackUrl );
fastestResponse = await failLast( request, fallbackUrl )
}
}
catch ( error )
{
fastestResponse = await failLast( request, fallbackUrl )
}
async function failLast( request, fallbackUrl, error )
{
const fallbackResponse = await caches.match( fallbackUrl );
if( error )
{
console.log( "An error occurred: ", error );
}
if ( fallbackResponse )
{
fastestResponse = fallbackResponse;
} else
{
fastestResponse = new Response(
'Network error happened', {
status: 408,
headers: { 'Content-Type': 'text/plain' }
} );
}
return fastestResponse;
}
return fastestResponse;
async function putInCache( request, response )
{
if ( response.status === 200 )
{
const cache = await caches.open( cacheName );
await cache.put( request, response );
}
}
}
}
self.addEventListener( 'install', function ()
{
self.skipWaiting(); // this newly installed service worker progresses into the activating state, _regardless_ of whether there is already an active service worker.
} );
self.addEventListener( 'fetch', ( event ) =>
{
event.respondWith(
cacheFirst(
event.request,
"photos/_default_.webp"
)
);
} );