2026-01-18 15:55:07 +03:00
|
|
|
<!--
|
|
|
|
|
Component: SuggestedFonts
|
|
|
|
|
Renders a list of suggested fonts in a virtualized list to improve performance.
|
|
|
|
|
-->
|
2026-01-18 14:56:25 +03:00
|
|
|
<script lang="ts">
|
|
|
|
|
import {
|
|
|
|
|
FontListItem,
|
|
|
|
|
FontVirtualList,
|
|
|
|
|
fontshareStore,
|
|
|
|
|
} from '$entities/Font';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<FontVirtualList items={fontshareStore.fonts}>
|
2026-01-22 15:40:17 +03:00
|
|
|
{#snippet children({ item: font, isVisible, proximity })}
|
|
|
|
|
<FontListItem {font} {isVisible} {proximity} />
|
2026-01-18 14:56:25 +03:00
|
|
|
{/snippet}
|
|
|
|
|
</FontVirtualList>
|