feat(feeds): added the ability to save a feed entry as saved link

This commit is contained in:
Nicola Zangrandi 2025-02-28 12:36:59 +01:00
parent a20cb2964b
commit b57d4f45fd
Signed by: wasp
GPG key ID: 43C1470D890F23ED

View file

@ -1,6 +1,7 @@
<script lang="ts">
import { onMount } from 'svelte';
import { entries, feeds } from '$lib/feeds';
import { readlist } from '$lib/readlist';
import type { FeedEntry, Feed } from '$lib/types';
import { page } from '$app/stores';
import { goto } from '$app/navigation';
@ -9,6 +10,7 @@
let feed: Feed | null = null;
let isLoading = true;
let isLoadingFullContent = false;
let isSavingToReadlist = false;
let error: string | null = null;
onMount(async () => {
@ -70,6 +72,29 @@
goto(`/notes/new?${params.toString()}`);
}
async function saveToReadlist() {
if (!entry) return;
isSavingToReadlist = true;
error = null;
try {
// Mark the entry as read if it's not already
if (!entry.readAt) {
await entries.markAsRead(entry.id);
}
// Add the entry URL to the readlist
const savedItem = await readlist.add(entry.url);
// Navigate to the readlist item detail page
goto(`/readlist/${savedItem.id}`);
} catch (e) {
error = e instanceof Error ? e.message : 'Failed to save to readlist';
isSavingToReadlist = false;
}
}
</script>
<div class="container mt-4">
@ -161,6 +186,18 @@
<span>Create Note</span>
</button>
</div>
<div class="level-item">
<button
class="button is-small is-warning"
on:click={saveToReadlist}
disabled={isSavingToReadlist}
>
<span class="icon">
<i class="fas fa-bookmark" class:fa-spin={isSavingToReadlist}></i>
</span>
<span>Save to Readlist</span>
</button>
</div>
</div>
</div>