summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/SmallLockupShelf.svelte
diff options
context:
space:
mode:
authorrxliuli <rxliuli@gmail.com>2025-11-04 05:03:50 +0800
committerrxliuli <rxliuli@gmail.com>2025-11-04 05:03:50 +0800
commitbce557cc2dc767628bed6aac87301a1be7c5431b (patch)
treeb51a051228d01fe3306cd7626d4a96768aadb944 /src/components/jet/shelf/SmallLockupShelf.svelte
init commit
Diffstat (limited to 'src/components/jet/shelf/SmallLockupShelf.svelte')
-rw-r--r--src/components/jet/shelf/SmallLockupShelf.svelte54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/components/jet/shelf/SmallLockupShelf.svelte b/src/components/jet/shelf/SmallLockupShelf.svelte
new file mode 100644
index 0000000..e286671
--- /dev/null
+++ b/src/components/jet/shelf/SmallLockupShelf.svelte
@@ -0,0 +1,54 @@
+<script lang="ts" context="module">
+ import type { Lockup, Shelf } from '@jet-app/app-store/api/models';
+
+ interface SmallLockupShelf extends Shelf {
+ items: Lockup[];
+ }
+
+ export function isSmallLockupShelf(
+ shelf: Shelf,
+ ): shelf is SmallLockupShelf {
+ const { contentType, items } = shelf;
+ return contentType === 'smallLockup' && Array.isArray(items);
+ }
+</script>
+
+<script lang="ts">
+ import ShelfItemLayout from '~/components/ShelfItemLayout.svelte';
+ import SmallLockupItem from '~/components/jet/item/SmallLockupItem.svelte';
+ import SmallLockupWithOrdinalItem, {
+ isSmallLockupWithOrdinalItem,
+ } from '~/components/jet/item/SmallLockupWithOrdinalItem.svelte';
+ import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
+
+ export let shelf: SmallLockupShelf;
+
+ $: ({ isArticleContext = false } = shelf.presentationHints ?? {});
+ $: itemHasOrdinal = shelf.items.some((item) => item.ordinal);
+ $: gridType = (() => {
+ if (itemHasOrdinal) {
+ return 'SmallLockupWithOrdinal';
+ }
+
+ if (isArticleContext) {
+ return 'Spotlight';
+ }
+
+ return 'SmallLockup';
+ })();
+</script>
+
+<ShelfWrapper {shelf}>
+ <ShelfItemLayout
+ {shelf}
+ {gridType}
+ rowsPerColumnOverride={gridType === 'SmallLockup' ? 3 : null}
+ let:item
+ >
+ {#if isSmallLockupWithOrdinalItem(item)}
+ <SmallLockupWithOrdinalItem {item} />
+ {:else}
+ <SmallLockupItem {item} --margin-inline-end="16px" />
+ {/if}
+ </ShelfItemLayout>
+</ShelfWrapper>