feat(feeds): added the ability to save a feed entry as saved link
This commit is contained in:
parent
a20cb2964b
commit
b57d4f45fd
1 changed files with 37 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue