blob: e11de7284ec00ef6cb636d52dffd41028ae8221b (
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
|
<script lang="ts" context="module">
import type { Shelf, Annotation } from '@jet-app/app-store/api/models';
interface AnnotationShelf extends Shelf {
items: Annotation[];
}
export function isAnnotationShelf(shelf: Shelf): shelf is AnnotationShelf {
const { contentType, items } = shelf;
return contentType === 'annotation' && Array.isArray(items);
}
</script>
<script lang="ts">
import Grid from '~/components/Grid.svelte';
import CollapsableContent from '~/components/CollapsableContent.svelte';
import AnnotationItem from '~/components/jet/item/Annotation/AnnotationItem.svelte';
import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
export let shelf: AnnotationShelf;
</script>
<ShelfWrapper {shelf}>
<dl>
<Grid items={shelf.items} gridType="F" let:item>
<dt>{item.title}</dt>
{#if item.summary}
<CollapsableContent>
<svelte:fragment slot="summary">
{item.summary}
</svelte:fragment>
<AnnotationItem {item} />
</CollapsableContent>
{:else}
<AnnotationItem {item} />
{/if}
</Grid>
</dl>
</ShelfWrapper>
<style>
dt {
color: var(--systemSecondary);
margin-bottom: 4px;
}
</style>
|