refactor(features): rename GetFonts to FilterAndSortFonts

The feature does not fetch fonts — that lives in \$entities/Font's
fontStore. It owns the user's filter selections, sort preference, and
search-by-name query that drive the listing. The new name describes what
it actually does.

Directory + every \$features/GetFonts import path updated; no symbol
renames in this commit.
This commit is contained in:
Ilia Mashkov
2026-05-24 18:16:16 +03:00
parent e0d39d861f
commit ca382fd43d
25 changed files with 8 additions and 8 deletions
@@ -1,11 +1,11 @@
<!--
Component: Search
Typeface search input for the comparison view.
Writes through appliedFilterStore; the global bridge in $features/GetFonts
Writes through appliedFilterStore; the global bridge in $features/FilterAndSortFonts
propagates the value into fontStore.
-->
<script lang="ts">
import { appliedFilterStore } from '$features/GetFonts';
import { appliedFilterStore } from '$features/FilterAndSortFonts';
import { SearchBar } from '$shared/ui';
</script>
@@ -1,4 +1,4 @@
import { appliedFilterStore } from '$features/GetFonts';
import { appliedFilterStore } from '$features/FilterAndSortFonts';
import {
render,
screen,