feature/comparison-slider #19
@@ -3,25 +3,35 @@
|
|||||||
- Renders a virtualized list of fonts
|
- Renders a virtualized list of fonts
|
||||||
- Handles font registration with the manager
|
- Handles font registration with the manager
|
||||||
-->
|
-->
|
||||||
<script lang="ts" generics="T extends { id: string }">
|
<script lang="ts" generics="T extends UnifiedFont">
|
||||||
|
import type { FontConfigRequest } from '$entities/Font/model/store/appliedFontsStore/appliedFontsStore.svelte';
|
||||||
import { VirtualList } from '$shared/ui';
|
import { VirtualList } from '$shared/ui';
|
||||||
import type { ComponentProps } from 'svelte';
|
import type { ComponentProps } from 'svelte';
|
||||||
import { appliedFontsManager } from '../../model';
|
import {
|
||||||
|
type UnifiedFont,
|
||||||
|
appliedFontsManager,
|
||||||
|
} from '../../model';
|
||||||
|
|
||||||
interface Props extends Omit<ComponentProps<typeof VirtualList<T>>, 'onVisibleItemsChange'> {
|
interface Props extends Omit<ComponentProps<typeof VirtualList<T>>, 'onVisibleItemsChange'> {
|
||||||
onVisibleItemsChange?: (items: T[]) => void;
|
onVisibleItemsChange?: (items: T[]) => void;
|
||||||
onNearBottom?: (lastVisibleIndex: number) => void;
|
onNearBottom?: (lastVisibleIndex: number) => void;
|
||||||
|
weight: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
let { items, children, onVisibleItemsChange, onNearBottom, ...rest }: Props = $props();
|
let { items, children, onVisibleItemsChange, onNearBottom, weight, ...rest }: Props = $props();
|
||||||
|
|
||||||
function handleInternalVisibleChange(visibleItems: T[]) {
|
function handleInternalVisibleChange(visibleItems: T[]) {
|
||||||
// Auto-register fonts with the manager
|
// Auto-register fonts with the manager
|
||||||
const slugs = visibleItems.map(item => item.id);
|
const configs = visibleItems.map<FontConfigRequest>(item => ({
|
||||||
appliedFontsManager.registerFonts(slugs);
|
id: item.id,
|
||||||
|
name: item.name,
|
||||||
|
weight,
|
||||||
|
url: item.styles.regular!,
|
||||||
|
}));
|
||||||
|
appliedFontsManager.touch(configs);
|
||||||
|
|
||||||
// Forward the call to any external listener
|
// // Forward the call to any external listener
|
||||||
onVisibleItemsChange?.(visibleItems);
|
// onVisibleItemsChange?.(visibleItems);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleNearBottom(lastVisibleIndex: number) {
|
function handleNearBottom(lastVisibleIndex: number) {
|
||||||
|
|||||||
@@ -86,7 +86,8 @@ function removeSample() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="p-8 relative z-10">
|
<div class="p-8 relative z-10">
|
||||||
<FontApplicator id={font.id} name={font.name}>
|
<!-- TODO: Fix this ! -->
|
||||||
|
<FontApplicator id={font.id} name={font.name} url={font.styles.regular!}>
|
||||||
<ContentEditable
|
<ContentEditable
|
||||||
bind:text={text}
|
bind:text={text}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
|
|||||||
@@ -2,15 +2,13 @@
|
|||||||
Component: Labels
|
Component: Labels
|
||||||
Displays labels for font selection in the comparison slider.
|
Displays labels for font selection in the comparison slider.
|
||||||
-->
|
-->
|
||||||
<script lang="ts" generics="T extends { name: string; id: string }">
|
<script lang="ts" generics="T extends UnifiedFont">
|
||||||
import {
|
import {
|
||||||
FontVirtualList,
|
FontVirtualList,
|
||||||
type UnifiedFont,
|
type UnifiedFont,
|
||||||
unifiedFontStore,
|
unifiedFontStore,
|
||||||
} from '$entities/Font';
|
} from '$entities/Font';
|
||||||
import FontApplicator from '$entities/Font/ui/FontApplicator/FontApplicator.svelte';
|
import FontApplicator from '$entities/Font/ui/FontApplicator/FontApplicator.svelte';
|
||||||
import { displayedFontsStore } from '$features/DisplayFont';
|
|
||||||
import { buttonVariants } from '$shared/shadcn/ui/button';
|
|
||||||
import {
|
import {
|
||||||
Content as SelectContent,
|
Content as SelectContent,
|
||||||
Item as SelectItem,
|
Item as SelectItem,
|
||||||
@@ -18,6 +16,7 @@ import {
|
|||||||
Trigger as SelectTrigger,
|
Trigger as SelectTrigger,
|
||||||
} from '$shared/shadcn/ui/select';
|
} from '$shared/shadcn/ui/select';
|
||||||
import { cn } from '$shared/shadcn/utils/shadcn-utils';
|
import { cn } from '$shared/shadcn/utils/shadcn-utils';
|
||||||
|
import { comparisonStore } from '$widgets/ComparisonSlider/model';
|
||||||
|
|
||||||
interface Props<T> {
|
interface Props<T> {
|
||||||
/**
|
/**
|
||||||
@@ -32,33 +31,36 @@ interface Props<T> {
|
|||||||
* Position of the slider
|
* Position of the slider
|
||||||
*/
|
*/
|
||||||
sliderPos: number;
|
sliderPos: number;
|
||||||
}
|
|
||||||
let { fontA, fontB, sliderPos }: Props<T> = $props();
|
|
||||||
|
|
||||||
const fontList = $derived(
|
weight: number;
|
||||||
// displayedFontsStore.fonts.filter(font => font.name !== fontA.name && font.name !== fontB.name),
|
}
|
||||||
unifiedFontStore.fonts,
|
let { fontA, fontB, sliderPos, weight }: Props<T> = $props();
|
||||||
);
|
|
||||||
|
const fontList = $derived(unifiedFontStore.fonts);
|
||||||
|
|
||||||
function selectFontA(font: UnifiedFont) {
|
function selectFontA(font: UnifiedFont) {
|
||||||
if (!font) return;
|
if (!font) return;
|
||||||
displayedFontsStore.fontA = font;
|
comparisonStore.fontA = font;
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectFontB(font: UnifiedFont) {
|
function selectFontB(font: UnifiedFont) {
|
||||||
if (!font) return;
|
if (!font) return;
|
||||||
displayedFontsStore.fontB = font;
|
comparisonStore.fontB = font;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#snippet fontSelector(
|
{#snippet fontSelector(
|
||||||
name: string,
|
name: string,
|
||||||
id: string,
|
id: string,
|
||||||
|
url: string,
|
||||||
fonts: UnifiedFont[],
|
fonts: UnifiedFont[],
|
||||||
selectFont: (font: UnifiedFont) => void,
|
selectFont: (font: UnifiedFont) => void,
|
||||||
align: 'start' | 'end',
|
align: 'start' | 'end',
|
||||||
)}
|
)}
|
||||||
<div class="z-50 pointer-events-auto" onpointerdown={(e => e.stopPropagation())}>
|
<div
|
||||||
|
class="z-50 pointer-events-auto"
|
||||||
|
onpointerdown={(e => e.stopPropagation())}
|
||||||
|
>
|
||||||
<SelectRoot type="single" disabled={!fontList.length}>
|
<SelectRoot type="single" disabled={!fontList.length}>
|
||||||
<SelectTrigger
|
<SelectTrigger
|
||||||
class={cn(
|
class={cn(
|
||||||
@@ -69,7 +71,7 @@ function selectFontB(font: UnifiedFont) {
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div class="text-left flex-1 min-w-0">
|
<div class="text-left flex-1 min-w-0">
|
||||||
<FontApplicator name={name} id={id}>
|
<FontApplicator {name} {id} {url}>
|
||||||
{name}
|
{name}
|
||||||
</FontApplicator>
|
</FontApplicator>
|
||||||
</div>
|
</div>
|
||||||
@@ -80,12 +82,12 @@ function selectFontB(font: UnifiedFont) {
|
|||||||
'w-52 max-h-[280px] overflow-hidden rounded-lg',
|
'w-52 max-h-[280px] overflow-hidden rounded-lg',
|
||||||
)}
|
)}
|
||||||
side="top"
|
side="top"
|
||||||
align={align}
|
{align}
|
||||||
sideOffset={8}
|
sideOffset={8}
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
<div class="p-1.5">
|
<div class="p-1.5">
|
||||||
<FontVirtualList items={fonts}>
|
<FontVirtualList items={fonts} {weight}>
|
||||||
{#snippet children({ item: font })}
|
{#snippet children({ item: font })}
|
||||||
{@const handleClick = () => selectFont(font)}
|
{@const handleClick = () => selectFont(font)}
|
||||||
<SelectItem
|
<SelectItem
|
||||||
@@ -93,7 +95,7 @@ function selectFontB(font: UnifiedFont) {
|
|||||||
class="data-[highlighted]:bg-gray-100 font-mono text-[11px] px-3 py-2.5 rounded-md cursor-pointer transition-colors"
|
class="data-[highlighted]:bg-gray-100 font-mono text-[11px] px-3 py-2.5 rounded-md cursor-pointer transition-colors"
|
||||||
onclick={handleClick}
|
onclick={handleClick}
|
||||||
>
|
>
|
||||||
<FontApplicator name={font.name} id={font.id}>
|
<FontApplicator name={font.name} id={font.id} url={font.styles.regular!}>
|
||||||
{font.name}
|
{font.name}
|
||||||
</FontApplicator>
|
</FontApplicator>
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
@@ -118,7 +120,14 @@ function selectFontB(font: UnifiedFont) {
|
|||||||
ch_01
|
ch_01
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
{@render fontSelector(fontB.name, fontB.id, fontList, selectFontB, 'start')}
|
{@render fontSelector(
|
||||||
|
fontB.name,
|
||||||
|
fontB.id,
|
||||||
|
fontB.styles.regular!,
|
||||||
|
fontList,
|
||||||
|
selectFontB,
|
||||||
|
'start',
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
@@ -133,6 +142,13 @@ function selectFontB(font: UnifiedFont) {
|
|||||||
<div class="w-px h-2.5 bg-gray-300/60"></div>
|
<div class="w-px h-2.5 bg-gray-300/60"></div>
|
||||||
<div class="w-1.5 h-1.5 rounded-full bg-gray-900 shadow-[0_0_6px_rgba(0,0,0,0.4)]"></div>
|
<div class="w-1.5 h-1.5 rounded-full bg-gray-900 shadow-[0_0_6px_rgba(0,0,0,0.4)]"></div>
|
||||||
</div>
|
</div>
|
||||||
{@render fontSelector(fontA.name, fontA.id, fontList, selectFontA, 'end')}
|
{@render fontSelector(
|
||||||
|
fontA.name,
|
||||||
|
fontA.id,
|
||||||
|
fontA.styles.regular!,
|
||||||
|
fontList,
|
||||||
|
selectFontA,
|
||||||
|
'end',
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user