- Added Cloudinary as an allowed image domain in next.config.ts for image optimization. - Included new dependencies: react-use-measure and use-media in package.json for enhanced UI responsiveness. - Introduced a service worker for caching iframe content to improve performance. - Added multiple new block components and layouts for enhanced UI features and organization. - Implemented utility functions and motion primitives for improved animations and effects.
130 lines
4.1 KiB
JavaScript
130 lines
4.1 KiB
JavaScript
// Service Worker for caching iframe content
|
|
const CACHE_NAME = 'cnblocks-iframe-cache-v1'
|
|
|
|
// Add iframe URLs to this list to prioritize caching
|
|
const URLS_TO_CACHE = [
|
|
// Default assets that should be cached
|
|
'/favicon.ico',
|
|
// Images used in iframes
|
|
'/payments.png',
|
|
'/payments-light.png',
|
|
'/origin-cal.png',
|
|
'/origin-cal-dark.png',
|
|
'/exercice.png',
|
|
'/exercice-dark.png',
|
|
'/charts-light.png',
|
|
'/charts.png',
|
|
'/music-light.png',
|
|
'/music.png',
|
|
'/mail-back-light.png',
|
|
'/mail-upper.png',
|
|
'/mail-back.png',
|
|
'/card.png',
|
|
'/dark-card.webp',
|
|
]
|
|
|
|
// Install event - cache resources
|
|
self.addEventListener('install', (event) => {
|
|
event.waitUntil(
|
|
caches
|
|
.open(CACHE_NAME)
|
|
.then((cache) => {
|
|
console.log('Opened cache')
|
|
return cache.addAll(URLS_TO_CACHE)
|
|
})
|
|
.then(() => self.skipWaiting()) // Activate SW immediately
|
|
)
|
|
})
|
|
|
|
// Activate event - clean up old caches
|
|
self.addEventListener('activate', (event) => {
|
|
const currentCaches = [CACHE_NAME]
|
|
event.waitUntil(
|
|
caches
|
|
.keys()
|
|
.then((cacheNames) => {
|
|
return cacheNames.filter((cacheName) => !currentCaches.includes(cacheName))
|
|
})
|
|
.then((cachesToDelete) => {
|
|
return Promise.all(
|
|
cachesToDelete.map((cacheToDelete) => {
|
|
return caches.delete(cacheToDelete)
|
|
})
|
|
)
|
|
})
|
|
.then(() => self.clients.claim()) // Take control of clients immediately
|
|
)
|
|
})
|
|
|
|
// Fetch event - serve from cache or fetch from network and cache
|
|
self.addEventListener('fetch', (event) => {
|
|
// Check if this is an iframe request - typically they'll be HTML or have 'preview' in the URL
|
|
const isIframeRequest = event.request.url.includes('/preview/') || event.request.url.includes('/examples/')
|
|
|
|
if (isIframeRequest) {
|
|
event.respondWith(
|
|
caches.match(event.request, { ignoreSearch: true }).then((response) => {
|
|
// Return cached response if found
|
|
if (response) {
|
|
return response
|
|
}
|
|
|
|
// Clone the request (requests are one-time use)
|
|
const fetchRequest = event.request.clone()
|
|
|
|
return fetch(fetchRequest).then((response) => {
|
|
// Check if we received a valid response
|
|
if (!response || response.status !== 200 || response.type !== 'basic') {
|
|
return response
|
|
}
|
|
|
|
// Clone the response (responses are one-time use)
|
|
const responseToCache = response.clone()
|
|
|
|
caches.open(CACHE_NAME).then((cache) => {
|
|
cache.put(event.request, responseToCache)
|
|
})
|
|
|
|
return response
|
|
})
|
|
})
|
|
)
|
|
} else {
|
|
// For non-iframe requests, use a standard cache-first strategy
|
|
event.respondWith(
|
|
caches.match(event.request).then((response) => {
|
|
if (response) {
|
|
return response
|
|
}
|
|
return fetch(event.request)
|
|
})
|
|
)
|
|
}
|
|
})
|
|
|
|
// Listen for messages from clients (to force cache update, etc)
|
|
self.addEventListener('message', (event) => {
|
|
if (event.data && event.data.type === 'SKIP_WAITING') {
|
|
self.skipWaiting()
|
|
}
|
|
|
|
// Handle cache clearing
|
|
if (event.data && event.data.type === 'CLEAR_IFRAME_CACHE') {
|
|
const url = event.data.url
|
|
|
|
if (url) {
|
|
// Clear specific URL from cache
|
|
caches.open(CACHE_NAME).then((cache) => {
|
|
cache.delete(url).then(() => {
|
|
console.log(`Cleared cache for: ${url}`)
|
|
})
|
|
})
|
|
} else {
|
|
// Clear the entire cache
|
|
caches.delete(CACHE_NAME).then(() => {
|
|
console.log('Cleared entire iframe cache')
|
|
})
|
|
}
|
|
}
|
|
})
|