Files
frontend-svelte/src/routes/Page.svelte

133 lines
3.7 KiB
Svelte
Raw Normal View History

<!--
Component: Page
Description: The main page component of the application.
-->
<script lang="ts">
2026-02-02 12:21:23 +03:00
import { scrollBreadcrumbsStore } from '$entities/Breadcrumb';
import {
Logo,
Section,
} from '$shared/ui';
import ComparisonSlider from '$widgets/ComparisonSlider/ui/ComparisonSlider/ComparisonSlider.svelte';
2026-01-24 15:39:38 +03:00
import { FontSearch } from '$widgets/FontSearch';
import { SampleList } from '$widgets/SampleList';
import CodeIcon from '@lucide/svelte/icons/code';
2026-02-06 11:54:36 +03:00
import EyeIcon from '@lucide/svelte/icons/eye';
import LineSquiggleIcon from '@lucide/svelte/icons/line-squiggle';
2026-02-02 12:21:23 +03:00
import ScanSearchIcon from '@lucide/svelte/icons/search';
import type { Snippet } from 'svelte';
import { cubicIn } from 'svelte/easing';
import { fade } from 'svelte/transition';
2026-01-24 15:39:38 +03:00
let searchContainer: HTMLElement;
let isExpanded = $state(false);
function handleTitleStatusChanged(
index: number,
isPast: boolean,
title?: Snippet<[{ className?: string }]>,
id?: string,
) {
2026-02-02 12:21:23 +03:00
if (isPast && title) {
scrollBreadcrumbsStore.add({ index, title, id });
2026-02-02 12:21:23 +03:00
} else {
scrollBreadcrumbsStore.remove(index);
}
return () => {
scrollBreadcrumbsStore.remove(index);
};
}
2026-02-02 12:21:23 +03:00
// $effect(() => {
// appliedFontsManager.touch(
// selectedFontsStore.all.map(font => ({
// slug: font.id,
// weight: controlManager.weight,
// })),
// );
// });
</script>
2026-01-13 20:05:33 +03:00
<!-- Font List -->
<div
class="p-2 sm:p-3 md:p-4 h-full flex flex-col gap-3 sm:gap-4"
in:fade={{ duration: 500, delay: 150, easing: cubicIn }}
>
<Section class="py-4 sm:py-10 md:py-12 gap-6 sm:gap-8" onTitleStatusChange={handleTitleStatusChanged}>
{#snippet icon({ className })}
<CodeIcon class={className} />
{/snippet}
{#snippet description({ className })}
<span class={className}>
Project_Codename
</span>
{/snippet}
<Logo />
</Section>
<Section
class="py-4 sm:py-10 md:py-12 gap-6 sm:gap-8"
index={1}
id="optical_comparator"
onTitleStatusChange={handleTitleStatusChanged}
>
{#snippet icon({ className })}
<EyeIcon class={className} />
{/snippet}
{#snippet title({ className })}
<h1 class={className}>
Optical<br />Comparator
</h1>
{/snippet}
<ComparisonSlider />
</Section>
<Section
class="py-4 sm:py-10 md:py-12 gap-6 sm:gap-8"
index={2}
id="query_module"
onTitleStatusChange={handleTitleStatusChanged}
>
2026-02-02 12:21:23 +03:00
{#snippet icon({ className })}
<ScanSearchIcon class={className} />
{/snippet}
{#snippet title({ className })}
<h2 class={className}>
Query<br />Module
</h2>
{/snippet}
<FontSearch bind:showFilters={isExpanded} />
</Section>
<Section
class="py-4 sm:py-10 md:py-12 gap-6 sm:gap-8"
index={3}
id="sample_set"
onTitleStatusChange={handleTitleStatusChanged}
>
{#snippet icon({ className })}
<LineSquiggleIcon class={className} />
{/snippet}
{#snippet title({ className })}
<h2 class={className}>
2026-02-02 12:21:23 +03:00
Sample<br />Set
</h2>
{/snippet}
<SampleList />
</Section>
2026-01-18 15:01:19 +03:00
</div>
2026-01-24 15:39:38 +03:00
<style>
.content {
2026-02-02 12:21:23 +03:00
/* Tells the browser to skip rendering off-screen content */
content-visibility: auto;
/* Helps the browser reserve space without calculating everything */
contain-intrinsic-size: 1px 1000px;
2026-02-02 12:21:23 +03:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2026-01-24 15:39:38 +03:00
</style>