summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/AppShowcaseShelf.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/jet/shelf/AppShowcaseShelf.svelte')
-rw-r--r--src/components/jet/shelf/AppShowcaseShelf.svelte29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/jet/shelf/AppShowcaseShelf.svelte b/src/components/jet/shelf/AppShowcaseShelf.svelte
new file mode 100644
index 0000000..095acf2
--- /dev/null
+++ b/src/components/jet/shelf/AppShowcaseShelf.svelte
@@ -0,0 +1,29 @@
+<script lang="ts" context="module">
+ import type { AppShowcase, Shelf } from '@jet-app/app-store/api/models';
+
+ interface AppShowcaseShelf extends Shelf {
+ contentType: 'appShowcase';
+ items: [AppShowcase];
+ }
+
+ export function isAppShowcaseShelf(
+ shelf: Shelf,
+ ): shelf is AppShowcaseShelf {
+ return (
+ shelf.contentType === 'appShowcase' && Array.isArray(shelf.items)
+ );
+ }
+</script>
+
+<script lang="ts">
+ import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
+ import SmallLockup from '~/components/jet/item/SmallLockupItem.svelte';
+
+ export let shelf: AppShowcaseShelf;
+
+ $: item = shelf.items[0];
+</script>
+
+<ShelfWrapper {shelf} withTopMargin centered>
+ <SmallLockup item={item.lockup} />
+</ShelfWrapper>