summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/AnnotationShelf.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/jet/shelf/AnnotationShelf.svelte')
-rw-r--r--src/components/jet/shelf/AnnotationShelf.svelte49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/components/jet/shelf/AnnotationShelf.svelte b/src/components/jet/shelf/AnnotationShelf.svelte
new file mode 100644
index 0000000..e11de72
--- /dev/null
+++ b/src/components/jet/shelf/AnnotationShelf.svelte
@@ -0,0 +1,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>