blob: c7e4200eb323f86b55d99c34069275f2dda02abc (
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
|
<script lang="ts" context="module">
import type { Shelf, ShelfModel } from '@jet-app/app-store/api/models';
interface FallbackShelf extends Shelf {
items: ShelfModel[];
}
export function isFallbackShelf(shelf: Shelf): shelf is FallbackShelf {
return Array.isArray(shelf.items);
}
</script>
<script lang="ts">
import ShelfItemLayout from '~/components/ShelfItemLayout.svelte';
import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
export let shelf: FallbackShelf;
const isPlaceholder = shelf.contentType === 'placeholder';
</script>
<ShelfWrapper withTopBorder>
<ShelfItemLayout {shelf} gridType="C">
<div class="wip">
{isPlaceholder
? `🔄 Placeholder for ${shelf.placeholderContentType}`
: `🚧 ${shelf.contentType}`}
</div>
</ShelfItemLayout>
</ShelfWrapper>
<style>
.wip {
background: #f8f8f8;
padding: 16px;
border-radius: 8px;
border: 1px solid #ccc;
}
</style>
|