-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
72 lines (66 loc) · 2.48 KB
/
sw.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
// Name the cache container that will hold the cached elements
var FILES_CACHE = 'offlineBunnies';
// You can specify elements to be precached. They can be cached when installing the SW
var urlsToCache = [ 'index.html',
'.',
'img/bunny1.jpg',
'img/bunny2.jpg',
'img/bunny3.jpg' ];
// Capture SW installation event to complete process prior to page reload
self.addEventListener( 'install', function(){
return self.skipWaiting( );
});
// Capture SW activation event so that elements can be precached
self.addEventListener( 'activate', function( event ){
// BEGIN OPTION 1
// Pages and elements are only cached when accessed by the user while online
//return self.clients.claim( );
// END OPTION 1
// BEGIN OPTION 2
// Required logic if you want to precache elements,
// so user can navigate offline even before visiting certain elements
event.waitUntil(
caches.open( FILES_CACHE )
.then( function( cache ) {
console.log( 'caching 1 ' );
return cache.addAll( urlsToCache );
})
.then( function( ){
console.log( 'caching 2' );
return self.clients.claim( );
})
.catch( function( e ){
console.log("Error handling cache", e);
})
);
// END OPTION 2
});
self.addEventListener( 'fetch', function( event ) {
console.log( 'SW - fetch listener: ', event.request.url );
event.respondWith(
caches.match( event.request )
.then(function( response ) {
console.log( "caching match: ", response );
// Cache hit - return response
if ( response ) {
return response;
}
console.log( "SW - no cache match - calling network: ", event.request.url );
return fetch( event.request )
// BEGIN OPTION - cache additional resources not included within the pre caching process
// .then( function( resp ){
// console.log( 'SW - static resource non previously cached', resp.url );
// return caches.open( FILES_CACHE )
// .then( function( cache ) {
// console.log( 'SW - static resource non previously cached (now added to cache)', resp.url );
// cache.put( event.request, resp.clone( ));
// return resp;
// });
// });
// END OPTION
})
.catch( function( e ) {
console.log( 'SW - Error fetching static resource from cache: ', e.message );
})
);
});