blob: e286671934cda6a6412ac7292d2205b88a9fb1ef (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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>
|