blob: 8f09ab52f7888a3ba3d1e4beeffe7c14a5c77098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
|