mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 17:18:59 +00:00
2982afe6b4
Currently, this needs to be its own chunk because fomantic depends on jQuery being present. The next step is to move fomantic to webpack too after which we can combine the index,fomantic and jquery files into one. jquery-migrate is still neccessary because our ancient version of Dropzone seems to break without it. I imagine it can be removed after a Dropzone upgrade.
76 lines
3.1 KiB
Cheetah
76 lines
3.1 KiB
Cheetah
var STATIC_CACHE = 'static-cache-v1';
|
|
var urlsToCache = [
|
|
// js
|
|
'{{StaticUrlPrefix}}/vendor/plugins/jquery.areyousure/jquery.are-you-sure.js',
|
|
'{{StaticUrlPrefix}}/fomantic/semantic.min.js?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/js/index.js?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/js/swagger.js?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/js/gitgraph.js?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/js/jquery.js?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/clipboard/clipboard.min.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/emojify/emojify.custom.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/cssrelpreload/loadCSS.min.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/cssrelpreload/cssrelpreload.min.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/dropzone/dropzone.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/highlight/highlight.pack.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/codemirror/addon/mode/loadmode.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/codemirror/mode/meta.js',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/simplemde/simplemde.min.js',
|
|
|
|
// css
|
|
'{{StaticUrlPrefix}}/vendor/assets/font-awesome/css/font-awesome.min.css',
|
|
'{{StaticUrlPrefix}}/vendor/assets/octicons/octicons.min.css',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/simplemde/simplemde.min.css',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/tribute/tribute.css',
|
|
'{{StaticUrlPrefix}}/fomantic/semantic.min.css?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/css/index.css?v={{MD5 AppVer}}',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/highlight/github.css',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/jquery.minicolors/jquery.minicolors.css',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.css',
|
|
'{{StaticUrlPrefix}}/vendor/plugins/dropzone/dropzone.css',
|
|
{{if .IsSigned }}
|
|
{{ if ne .SignedUser.Theme "gitea" }}
|
|
'{{StaticUrlPrefix}}/css/theme-{{.SignedUser.Theme}}.css?v={{MD5 AppVer}}',
|
|
{{end}}
|
|
{{else if ne DefaultTheme "gitea"}}
|
|
'{{StaticUrlPrefix}}/css/theme-{{DefaultTheme}}.css?v={{MD5 AppVer}}',
|
|
{{end}}
|
|
|
|
// img
|
|
'{{StaticUrlPrefix}}/img/gitea-sm.png',
|
|
'{{StaticUrlPrefix}}/img/gitea-lg.png',
|
|
|
|
// fonts
|
|
'{{StaticUrlPrefix}}/vendor/plugins/fomantic/themes/default/assets/fonts/icons.woff2',
|
|
'{{StaticUrlPrefix}}/vendor/assets/octicons/octicons.woff2?ef21c39f0ca9b1b5116e5eb7ac5eabe6',
|
|
'{{StaticUrlPrefix}}/vendor/assets/lato-fonts/lato-v16-latin-regular.woff2',
|
|
'{{StaticUrlPrefix}}/vendor/assets/lato-fonts/lato-v16-latin-700.woff2'
|
|
];
|
|
|
|
self.addEventListener('install', function (event) {
|
|
// Perform install steps
|
|
event.waitUntil(
|
|
caches.open(STATIC_CACHE)
|
|
.then(function (cache) {
|
|
return cache.addAll(urlsToCache);
|
|
})
|
|
);
|
|
});
|
|
|
|
self.addEventListener('fetch', function (event) {
|
|
event.respondWith(
|
|
caches.match(event.request)
|
|
.then(function (response) {
|
|
// Cache hit - return response
|
|
if (response) {
|
|
return response;
|
|
}
|
|
return fetch(event.request);
|
|
}
|
|
)
|
|
);
|
|
});
|