From 6f1626b3b881baff3144fe71769e004af2ccc2d0 Mon Sep 17 00:00:00 2001 From: Nicola Zangrandi Date: Fri, 21 Feb 2025 09:09:13 +0100 Subject: [PATCH] refactor(frontend): remove link parsing and use backend links --- frontend/src/lib/index.ts | 2 + frontend/src/lib/markdown.ts | 18 +- frontend/src/routes/notes/[id]/+page.svelte | 187 ++++++++------------ 3 files changed, 87 insertions(+), 120 deletions(-) diff --git a/frontend/src/lib/index.ts b/frontend/src/lib/index.ts index dfb2d2d..a0dd521 100644 --- a/frontend/src/lib/index.ts +++ b/frontend/src/lib/index.ts @@ -4,6 +4,8 @@ export interface Note { content: string; createdAt: Date; updatedAt: Date; + linksTo?: Note[]; + linkedBy?: Note[]; } import { writable } from 'svelte/store'; diff --git a/frontend/src/lib/markdown.ts b/frontend/src/lib/markdown.ts index be87e3a..b622185 100644 --- a/frontend/src/lib/markdown.ts +++ b/frontend/src/lib/markdown.ts @@ -14,11 +14,17 @@ export function stripMarkdown(text: string): string { .trim(); } -export async function renderMarkdown(text: string): Promise { - // Replace [[link]] with anchor tags having data-title attribute - const linkedText = text.replace( - /\[\[([^\]]+)\]\]/g, - '$1' - ); +export async function renderMarkdown( + text: string, + linksTo: { id: string; title: string }[] = [] +): Promise { + // Replace [[link]] with anchor tags using the backend-provided links + const linkedText = text.replace(/\[\[([^\]]+)\]\]/g, (match, title) => { + const link = linksTo.find((l) => l.title === title); + if (link) { + return `${title}`; + } + return `${title}`; + }); return marked(linkedText); } diff --git a/frontend/src/routes/notes/[id]/+page.svelte b/frontend/src/routes/notes/[id]/+page.svelte index 99482d3..004e79b 100644 --- a/frontend/src/routes/notes/[id]/+page.svelte +++ b/frontend/src/routes/notes/[id]/+page.svelte @@ -1,5 +1,5 @@ -
{ - if (event.key === 'Enter' || event.key === ' ') { - handleLinkClick(event); - } - }} - role="button" - tabindex="0" -> -
- {#if note} - {#if isEditing} -
-
- -
- -
-
- -
- -
- -
-
- -
- {#await renderMarkdown(note.content)} -

Rendering markdown...

- {:then markdownContent} - - {@html markdownContent} - {:catch err} -

Error rendering the markdown content!i {err.message}

- {/await} -
-
-
- -
-
- -
-
- -
-
-
- {:else} -
-
-
-

{note.title}

-
-
-
-
- -
-
+{#if note} +
+ {#if isEditing} +
+
+
- -
- {#await renderMarkdown(note.content)} -

Rendering markdown...

- {:then markdownContent} - - {@html markdownContent} - {:catch err} -

Error rendering the markdown content!i {err.message}

- {/await} +
+
+
+
- -

- Last updated: {note.updatedAt.toLocaleString()} -

- {/if} +
+
+
+ +
+
+ +
+
{:else} -
Note not found
+
+

{note.title}

+ {#await renderMarkdown(note.content, note.linksTo || [])} +

Loading...

+ {:then html} + + {@html html} + {/await} +
+
+ +
+
+
{/if} - -
-
+ {#if (note.linksTo || []).length > 0} +
+

Links to:

+
+ {#each note.linksTo || [] as link} + {link.title} + {/each} +
+
+ {/if} + + {#if (note.linkedBy || []).length > 0} +
+

Referenced by:

+
+ {#each note.linkedBy || [] as link} + {link.title} + {/each} +
+
+ {/if} + +{/if} + +