fix: source citations user message display issue

This commit is contained in:
Timothy Jaeryang Baek 2025-12-07 23:53:46 -05:00
parent 4d4ed743ae
commit 3c8f1cf8e5
2 changed files with 43 additions and 38 deletions

View file

@ -75,12 +75,11 @@
`<sup class="footnote-ref footnote-ref-text">${token.escapedText}</sup>` `<sup class="footnote-ref footnote-ref-text">${token.escapedText}</sup>`
) || ''} ) || ''}
{:else if token.type === 'citation'} {:else if token.type === 'citation'}
{#if (sourceIds ?? []).length > 0}
<SourceToken {id} {token} {sourceIds} onClick={onSourceClick} /> <SourceToken {id} {token} {sourceIds} onClick={onSourceClick} />
<!-- {#if token.ids && token.ids.length > 0} {:else}
{#each token.ids as sourceId} <TextToken {token} {done} />
<Source id={sourceId - 1} title={sourceIds[sourceId - 1]} onClick={onSourceClick} /> {/if}
{/each}
{/if} -->
{:else if token.type === 'text'} {:else if token.type === 'text'}
<TextToken {token} {done} /> <TextToken {token} {done} />
{/if} {/if}

View file

@ -39,9 +39,12 @@
}; };
</script> </script>
{#if (token?.ids ?? []).length == 1} {sourceIds}
{#if sourceIds}
{#if (token?.ids ?? []).length == 1}
<Source id={token.ids[0] - 1} title={sourceIds[token.ids[0] - 1]} {onClick} /> <Source id={token.ids[0] - 1} title={sourceIds[token.ids[0] - 1]} {onClick} />
{:else} {:else}
<LinkPreview.Root openDelay={0} bind:open={openPreview}> <LinkPreview.Root openDelay={0} bind:open={openPreview}>
<LinkPreview.Trigger> <LinkPreview.Trigger>
<button <button
@ -72,4 +75,7 @@
</div> </div>
</LinkPreview.Content> </LinkPreview.Content>
</LinkPreview.Root> </LinkPreview.Root>
{/if}
{:else}
<span>{token.raw}</span>
{/if} {/if}