diff --git a/src/lib/markdown.ts b/src/lib/markdown.ts index aae8448..e224e20 100644 --- a/src/lib/markdown.ts +++ b/src/lib/markdown.ts @@ -15,5 +15,7 @@ export function stripMarkdown(text: string): string { } export function renderMarkdown(text: string): string { - return marked(text); + // Replace [[link]] with anchor tags having data-title attribute + const linkedText = text.replace(/\[\[([^\]]+)\]\]/g, '$1'); + return marked(linkedText); } diff --git a/src/routes/notes/[id]/+page.svelte b/src/routes/notes/[id]/+page.svelte index c5c12a2..8728761 100644 --- a/src/routes/notes/[id]/+page.svelte +++ b/src/routes/notes/[id]/+page.svelte @@ -12,21 +12,18 @@ $: id = $page.params.id; - onMount(() => { - const unsubscribe = notes.subscribe(allNotes => { - if (!allNotes || !id) return; - - note = allNotes.find(n => n.id === id); + $: { + if ($notes && id) { + note = $notes.find(n => n.id === id); if (note) { editedTitle = note.title; editedContent = note.content; - } else if (allNotes.length > 0) { + } else if ($notes.length > 0) { // Only redirect if we have loaded notes and didn't find this one goto('/'); } - }); - return () => unsubscribe(); - }); + } + } async function handleSave() { if (!editedTitle || !editedContent) return; @@ -41,9 +38,28 @@ console.error('Failed to update note:', error); } } + + async function handleLinkClick(event: MouseEvent) { + const target = event.target as HTMLElement; + if (target.tagName === 'A' && target.classList.contains('note-link')) { + event.preventDefault(); + const title = target.getAttribute('data-title'); + if (!title) return; + + // Check if a note with this title exists + const existingNote = $notes.find(n => n.title === title); + if (existingNote) { + // Navigate to the existing note + goto(`/notes/${existingNote.id}`); + } else { + // Navigate to the new note page with the title pre-filled + goto(`/notes/new?title=${encodeURIComponent(title)}`); + } + } + } -
+
{#if note} {#if isEditing} @@ -72,6 +88,12 @@ required >
+
+ +
+ {@html renderMarkdown(editedContent)} +
+
diff --git a/src/routes/notes/new/+page.svelte b/src/routes/notes/new/+page.svelte index cbfcc99..842bd2f 100644 --- a/src/routes/notes/new/+page.svelte +++ b/src/routes/notes/new/+page.svelte @@ -1,27 +1,22 @@ @@ -29,8 +24,7 @@

New Note

- -
+
@@ -43,7 +37,7 @@ >
- +
@@ -52,30 +46,15 @@ class="textarea" bind:value={content} rows="10" - placeholder="Write your note in markdown..." required >
- - {#if error} -
- {error} -
- {/if} - -
+ +
- -
-
- Cancel + +
diff --git a/src/routes/notes/new/+page.ts b/src/routes/notes/new/+page.ts index 879ba23..fc48189 100644 --- a/src/routes/notes/new/+page.ts +++ b/src/routes/notes/new/+page.ts @@ -1,17 +1,12 @@ import { notes } from '$lib'; import type { PageLoad } from './$types'; -export const load: PageLoad = async () => { - try { - await notes.load(); - return { - status: 'success' - }; - } catch (error) { - console.error('Failed to load notes:', error); - return { - status: 'error', - error: 'Failed to load notes' - }; - } +export const load: PageLoad = async ({ url }) => { + const title = url.searchParams.get('title') || ''; + return { + status: 'success', + props: { + prefilledTitle: title + } + }; };