summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/HeroCarouselShelf.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/HeroCarouselShelf.svelte
init commit
Diffstat (limited to 'src/components/jet/shelf/HeroCarouselShelf.svelte')
-rw-r--r--src/components/jet/shelf/HeroCarouselShelf.svelte38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/components/jet/shelf/HeroCarouselShelf.svelte b/src/components/jet/shelf/HeroCarouselShelf.svelte
new file mode 100644
index 0000000..31a0287
--- /dev/null
+++ b/src/components/jet/shelf/HeroCarouselShelf.svelte
@@ -0,0 +1,38 @@
+<script lang="ts" context="module">
+ import type {
+ Shelf,
+ HeroCarousel as HeroCarouselModel,
+ HeroCarouselItem as HeroCarouselItemModel,
+ } from '@jet-app/app-store/api/models';
+
+ interface HeroCarouselShelf extends Shelf {
+ items: [HeroCarouselModel];
+ }
+
+ export function isHeroCarouselShelf(
+ shelf: Shelf,
+ ): shelf is HeroCarouselShelf {
+ const { contentType, items } = shelf;
+
+ return contentType === 'heroCarousel' && Array.isArray(items);
+ }
+</script>
+
+<script lang="ts">
+ import HeroCarousel from '~/components/hero/Carousel.svelte';
+ import HeroCarouselItem from '~/components/jet/item/HeroCarouselItem.svelte';
+ import { isRtl } from '~/utils/locale';
+
+ export let shelf: HeroCarouselShelf;
+
+ $: ({ items: ltrItems, rtlItems } = shelf.items[0]);
+ $: items = isRtl() && rtlItems.length ? rtlItems : ltrItems;
+
+ function deriveBackgroundArtworkFromItem(item: HeroCarouselItemModel) {
+ return item.artwork || item.video?.preview;
+ }
+</script>
+
+<HeroCarousel {shelf} {items} {deriveBackgroundArtworkFromItem} let:item>
+ <HeroCarouselItem {item} />
+</HeroCarousel>