Skip to content

Commit

Permalink
Fix tags path build (#21)
Browse files Browse the repository at this point in the history
* Fix tags path
* Service worker
  • Loading branch information
prokawsar authored Dec 19, 2024
1 parent 9418dfa commit b05734d
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/components/elements/Tag.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts">
import { base } from '$app/paths'
import { slug } from 'github-slugger'
export let text
Expand All @@ -8,7 +9,7 @@
</script>

<a
href={'/tags/' + url}
href={base + '/tags/' + url}
class="rounded-md border bg-arkGray7 px-1 text-sm font-medium hover:bg-arkGray5 {classes}"
>
{text}
Expand Down
85 changes: 85 additions & 0 deletions src/service-worker.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/// <reference types="@sveltejs/kit" />
/// <reference types="@sveltejs/kit" />
/// <reference no-default-lib="true"/>
/// <reference lib="esnext" />
/// <reference lib="webworker" />

import { build, files, version } from '$service-worker'

// Create a unique cache name for this deployment
const CACHE = `cache-${version}`

const ASSETS = [
...build, // the app itself
...files, // everything in `static`
]

self.addEventListener('install', (event) => {
// Create a new cache and add all files to it
async function addFilesToCache() {
const cache = await caches.open(CACHE)
await cache.addAll(ASSETS)
}

event.waitUntil(addFilesToCache())
})

self.addEventListener('activate', (event) => {
// Remove previous cached data from disk
async function deleteOldCaches() {
for (const key of await caches.keys()) {
if (key !== CACHE) await caches.delete(key)
}
}

event.waitUntil(deleteOldCaches())
})

self.addEventListener('fetch', (event) => {
// ignore POST requests etc
if (event.request.method !== 'GET') return

async function respond() {
const url = new URL(event.request.url)
const cache = await caches.open(CACHE)

// `build`/`files` can always be served from the cache
if (ASSETS.includes(url.pathname)) {
const response = await cache.match(url.pathname)

if (response) {
return response
}
}

// for everything else, try the network first, but
// fall back to the cache if we're offline
try {
const response = await fetch(event.request)

// if we're offline, fetch can return a value that is not a Response
// instead of throwing - and we can't pass this non-Response to respondWith
if (!(response instanceof Response)) {
throw new Error('invalid response from fetch')
}

if (response.status === 200) {
cache.put(event.request, response.clone())
}

return response
} catch (err) {
const response = await cache.match(event.request)

if (response) {
return response
}

// if there's no cache, then just error out
// as there is nothing we can do to respond to this request
throw err
}
}

event.respondWith(respond())
})

0 comments on commit b05734d

Please sign in to comment.