const CACHE_NAME = 'digital-gut-v1'; const ASSETS_TO_CACHE = [ '/', '/static/manifest.json', '/assets/main_music.mp3', // 아이콘 파일들 '/static/icons/icon-72x72.png', '/static/icons/icon-96x96.png', '/static/icons/icon-128x128.png', '/static/icons/icon-144x144.png', '/static/icons/icon-152x152.png', '/static/icons/icon-192x192.png', '/static/icons/icon-384x384.png', '/static/icons/icon-512x512.png' ]; // 설치 시 캐시 self.addEventListener('install', (event) => { event.waitUntil( caches.open(CACHE_NAME) .then((cache) => { console.log('Opened cache'); return cache.addAll(ASSETS_TO_CACHE); }) .then(() => self.skipWaiting()) ); }); // 활성화 시 이전 캐시 정리 self.addEventListener('activate', (event) => { event.waitUntil( caches.keys().then((cacheNames) => { return Promise.all( cacheNames.map((cacheName) => { if (cacheName !== CACHE_NAME) { return caches.delete(cacheName); } }) ); }) ); }); // 네트워크 요청 처리 self.addEventListener('fetch', (event) => { event.respondWith( caches.match(event.request) .then((response) => { // 캐시에 있으면 캐시된 버전 반환 if (response) { return response; } // 캐시에 없으면 네트워크 요청 return fetch(event.request).then( (response) => { // 유효하지 않은 응답이면 그대로 반환 if (!response || response.status !== 200 || response.type !== 'basic') { return response; } // 응답을 캐시에 저장 const responseToCache = response.clone(); caches.open(CACHE_NAME) .then((cache) => { cache.put(event.request, responseToCache); }); return response; } ); }) ); }); // 백그라운드 동기화 self.addEventListener('sync', (event) => { if (event.tag === 'syncData') { event.waitUntil( // 오프라인 데이터 동기화 로직 syncData() ); } });