File size: 2,573 Bytes
cf8ddef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
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()
);
}
}); |