Файловый менеджер - Редактировать - /home/gqdcvggs/imators.systems/traffic/service-worker.js
Назад
const CACHE_NAME = 'trafficlight-v2'; const urlsToCache = [ '/', '/index.php', '/styles.css', '/app.js', '/traffic_logo.png' ]; self.addEventListener('install', event => { event.waitUntil( caches.open(CACHE_NAME) .then(cache => { return cache.addAll(urlsToCache); }) ); }); self.addEventListener('fetch', event => { // Skip cross-origin requests like MapBox API if (event.request.url.startsWith(self.location.origin) || event.request.url.includes('cdnjs.cloudflare.com')) { event.respondWith( caches.match(event.request) .then(response => { if (response) { return response; } return fetch(event.request) .then(response => { // Don't cache if not a valid response if (!response || response.status !== 200 || response.type !== 'basic') { return response; } // IMPORTANT: Clone the response. A response is a stream // and because we want the browser to consume the response // as well as the cache consuming the response, we need // to clone it so we have two streams. const responseToCache = response.clone(); caches.open(CACHE_NAME) .then(cache => { cache.put(event.request, responseToCache); }); return response; }); }) ); } else { // For non-origin requests, just fetch normally event.respondWith(fetch(event.request)); } }); self.addEventListener('activate', event => { const cacheWhitelist = [CACHE_NAME]; event.waitUntil( caches.keys().then(cacheNames => { return Promise.all( cacheNames.map(cacheName => { if (cacheWhitelist.indexOf(cacheName) === -1) { return caches.delete(cacheName); } }) ); }) ); }); // Handle push notifications self.addEventListener('push', event => { if (event.data) { const data = event.data.json(); const options = { body: data.body, icon: 'assets/traffic_logo.png', badge: 'assets/traffic_logo.png', data: { url: data.url } }; event.waitUntil( self.registration.showNotification(data.title, options) ); } }); // Handle notification click self.addEventListener('notificationclick', event => { event.notification.close(); if (event.notification.data && event.notification.data.url) { event.waitUntil( clients.openWindow(event.notification.data.url) ); } });
| ver. 1.6 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка