summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/ProductRatingsShelf.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/jet/shelf/ProductRatingsShelf.svelte')
-rw-r--r--src/components/jet/shelf/ProductRatingsShelf.svelte29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/jet/shelf/ProductRatingsShelf.svelte b/src/components/jet/shelf/ProductRatingsShelf.svelte
new file mode 100644
index 0000000..8f09ab5
--- /dev/null
+++ b/src/components/jet/shelf/ProductRatingsShelf.svelte
@@ -0,0 +1,29 @@
+<script lang="ts" context="module">
+ import { type Ratings, type Shelf } from '@jet-app/app-store/api/models';
+
+ interface ProductRatingsShelf extends Shelf {
+ items: Ratings[];
+ }
+
+ export function isProductRatingsShelf(
+ shelf: Shelf,
+ ): shelf is ProductRatingsShelf {
+ let { contentType, items } = shelf;
+
+ return contentType === 'productRatings' && Array.isArray(items);
+ }
+</script>
+
+<script lang="ts">
+ import ShelfItemLayout from '~/components/ShelfItemLayout.svelte';
+ import ProductRatingsItem from '~/components/jet/item/ProductRatingsItem.svelte';
+ import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
+
+ export let shelf: ProductRatingsShelf;
+</script>
+
+<ShelfWrapper {shelf} withBottomPadding={false}>
+ <ShelfItemLayout {shelf} gridType="A" let:item>
+ <ProductRatingsItem {item} />
+ </ShelfItemLayout>
+</ShelfWrapper>