aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2018-11-13 07:30:55 -0800
committerChristine Dodrill <me@christine.website>2018-11-13 07:30:55 -0800
commite245d89daa6dffc441be07dcb81b985397446378 (patch)
tree0d399b0de689f43fbbfaa979d939dca8aa03e716 /static
parentbc8b7e5471e7f4984ee69af07d8e9632df01b85b (diff)
parent8fe5504c3a5e9cd8409d5296d128603a231567ac (diff)
downloadxesite-e245d89daa6dffc441be07dcb81b985397446378.tar.xz
xesite-e245d89daa6dffc441be07dcb81b985397446378.zip
Merge branch 'master' of git@github.com:Xe/site.git
Diffstat (limited to 'static')
-rwxr-xr-xstatic/js/sw.js55
-rw-r--r--static/manifest.json17
2 files changed, 72 insertions, 0 deletions
diff --git a/static/js/sw.js b/static/js/sw.js
new file mode 100755
index 0000000..4b3b1e2
--- /dev/null
+++ b/static/js/sw.js
@@ -0,0 +1,55 @@
+//This is the service worker with the combined offline experience (Offline page + Offline copy of pages)
+
+//Install stage sets up the offline page in the cache and opens a new cache
+self.addEventListener('install', function(event) {
+ event.waitUntil(preLoad());
+});
+
+var preLoad = function(){
+ console.log('[PWA Builder] Install Event processing');
+ return caches.open('pwabuilder-offline').then(function(cache) {
+ console.log('[PWA Builder] Cached index and offline page during Install');
+ return cache.addAll(['/offline.html', '/index.html']);
+ });
+}
+
+self.addEventListener('fetch', function(event) {
+ console.log('[PWA Builder] The service worker is serving the asset.');
+ event.respondWith(checkResponse(event.request).catch(function() {
+ return returnFromCache(event.request)}
+ ));
+ event.waitUntil(addToCache(event.request));
+});
+
+var checkResponse = function(request){
+ return new Promise(function(fulfill, reject) {
+ fetch(request).then(function(response){
+ if(response.status !== 404) {
+ fulfill(response)
+ } else {
+ reject()
+ }
+ }, reject)
+ });
+};
+
+var addToCache = function(request){
+ return caches.open('pwabuilder-offline').then(function (cache) {
+ return fetch(request).then(function (response) {
+ console.log('[PWA Builder] add page to offline'+response.url)
+ return cache.put(request, response);
+ });
+ });
+};
+
+var returnFromCache = function(request){
+ return caches.open('pwabuilder-offline').then(function (cache) {
+ return cache.match(request).then(function (matching) {
+ if(!matching || matching.status == 404) {
+ return cache.match('offline.html')
+ } else {
+ return matching
+ }
+ });
+ });
+};
diff --git a/static/manifest.json b/static/manifest.json
new file mode 100644
index 0000000..8136ce9
--- /dev/null
+++ b/static/manifest.json
@@ -0,0 +1,17 @@
+{
+ "name": "Christine Dodrill",
+ "short_name": "Christine",
+ "theme_color": "#ffcbe4",
+ "background_color": "#fa99ca",
+ "display": "standalone",
+ "scope": "/",
+ "start_url": "https://christine.website/",
+ "description": "Blog and Resume for Christine Dodrill",
+ "orientation": "any",
+ "icons": [
+ {
+ "src": "https://christine.website/static/img/avatar.png",
+ "sizes": "1024x1024"
+ }
+ ]
+} \ No newline at end of file