-
Notifications
You must be signed in to change notification settings - Fork 569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PWA + offline #325
PWA + offline #325
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"start_url": "/", | ||
"short_name": "Shiori", | ||
"background_color": "", | ||
"url": "/", | ||
"lang": "English", | ||
"name": "Shiori", | ||
"display": "standalone", | ||
"orientation": "any", | ||
"share_target": { | ||
"action": "/share-target/", | ||
"method": "GET", | ||
"params": { | ||
"title": "title", | ||
"text": "text", | ||
"url": "url" | ||
} | ||
}, | ||
"icons": [ | ||
{ | ||
"src": "/res/apple-touch-icon-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
//This is the service worker with the Advanced caching | ||
|
||
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as before, can we bundle this within shiori? |
||
|
||
const API_CACHE = "api"; | ||
const BOOKMARK_CACHE = "bookmarks"; | ||
const HTML_CACHE = "html"; | ||
const JS_CACHE = "javascript"; | ||
const STYLE_CACHE = "stylesheets"; | ||
const IMAGE_CACHE = "images"; | ||
const FONT_CACHE = "fonts"; | ||
|
||
self.addEventListener("message", (event) => { | ||
if (event.data && event.data.type === "SKIP_WAITING") { | ||
self.skipWaiting(); | ||
} | ||
}); | ||
|
||
workbox.routing.registerRoute( | ||
({url, request, event}) => url.pathname === '/api/bookmarks', | ||
new workbox.strategies.NetworkFirst({ | ||
cacheName: API_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 50, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
workbox.routing.registerRoute( | ||
({url, event}) => event.request.destination === 'document' && url.pathname.startsWith('/bookmark'), | ||
new workbox.strategies.NetworkFirst({ | ||
cacheName: BOOKMARK_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 500, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
workbox.routing.registerRoute( | ||
({url, event}) => event.request.destination === 'document' && !url.pathname.startsWith('/bookmark'), | ||
new workbox.strategies.NetworkFirst({ | ||
cacheName: HTML_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 10, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
|
||
workbox.routing.registerRoute( | ||
({event}) => event.request.destination === 'script', | ||
new workbox.strategies.StaleWhileRevalidate({ | ||
cacheName: JS_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 15, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
workbox.routing.registerRoute( | ||
({event}) => event.request.destination === 'style', | ||
new workbox.strategies.StaleWhileRevalidate({ | ||
cacheName: STYLE_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 15, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
workbox.routing.registerRoute( | ||
({event}) => event.request.destination === 'image', | ||
new workbox.strategies.StaleWhileRevalidate({ | ||
cacheName: IMAGE_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 15, | ||
}), | ||
], | ||
}) | ||
); | ||
|
||
workbox.routing.registerRoute( | ||
({event}) => event.request.destination === 'font', | ||
new workbox.strategies.StaleWhileRevalidate({ | ||
cacheName: FONT_CACHE, | ||
plugins: [ | ||
new workbox.expiration.ExpirationPlugin({ | ||
maxEntries: 15, | ||
}), | ||
], | ||
}) | ||
); |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,9 @@ func ServeApp(cfg Config) error { | |
return path.Join(cfg.RootPath, route) | ||
} | ||
|
||
router.GET(jp("/pwabuilder-sw.js"), hdl.serveFile) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be served from |
||
router.GET(jp("/manifest.json"), hdl.serveFile) | ||
|
||
router.GET(jp("/js/*filepath"), hdl.serveJsFile) | ||
router.GET(jp("/res/*filepath"), hdl.serveFile) | ||
router.GET(jp("/css/*filepath"), hdl.serveFile) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we have this living with our other static assets? It seems weird to me that we serve everything bundled withing the binary but this is fetched from an outside service.