Skip to content
Snippets Groups Projects
Commit 16a47efd authored by Hangzhi Yu's avatar Hangzhi Yu Committed by root
Browse files

Merge pull request #328 from Katharineum/bugfix/pwa-networkfirs

change cache/network fetch behaviour of serviceworker.js
parents 0390e232 5d9ddb1e
No related branches found
No related tags found
1 merge request!86Merge school-apps
......@@ -6,5 +6,5 @@
<component name="NodePackageJsonFileManager">
<packageJsonPaths />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (school-apps)" project-jdk-type="Python SDK" />
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (SchoolApps)" project-jdk-type="Python SDK" />
</project>
\ No newline at end of file
......@@ -23,7 +23,7 @@
<excludeFolder url="file://$MODULE_DIR$/env" />
<excludeFolder url="file://$MODULE_DIR$/schoolapps/staticcollect" />
</content>
<orderEntry type="jdk" jdkName="Python 3.7 (school-apps)" jdkType="Python SDK" />
<orderEntry type="jdk" jdkName="Python 3.7 (SchoolApps)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="TemplatesService">
......
......@@ -9,7 +9,8 @@ const precacheFiles = [
const offlineFallbackPage = '/offline';
const networkFirstPaths = [
const cacheFirstPaths = [
'/faq',
];
const avoidCachingPaths = [
......@@ -69,10 +70,10 @@ self.addEventListener("activate", function (event) {
self.addEventListener("fetch", function (event) {
if (event.request.method !== "GET") return;
if (comparePaths(event.request.url, networkFirstPaths)) {
networkFirstFetch(event);
} else {
if (comparePaths(event.request.url, cacheFirstPaths)) {
cacheFirstFetch(event);
} else {
networkFirstFetch(event);
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment