summaryrefslogtreecommitdiff
path: root/src/components/jet/shelf/PrivacyFooterShelf.svelte
diff options
context:
space:
mode:
authorrxliuli <rxliuli@gmail.com>2025-11-04 05:03:50 +0800
committerrxliuli <rxliuli@gmail.com>2025-11-04 05:03:50 +0800
commitbce557cc2dc767628bed6aac87301a1be7c5431b (patch)
treeb51a051228d01fe3306cd7626d4a96768aadb944 /src/components/jet/shelf/PrivacyFooterShelf.svelte
init commit
Diffstat (limited to 'src/components/jet/shelf/PrivacyFooterShelf.svelte')
-rw-r--r--src/components/jet/shelf/PrivacyFooterShelf.svelte40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/components/jet/shelf/PrivacyFooterShelf.svelte b/src/components/jet/shelf/PrivacyFooterShelf.svelte
new file mode 100644
index 0000000..dccade6
--- /dev/null
+++ b/src/components/jet/shelf/PrivacyFooterShelf.svelte
@@ -0,0 +1,40 @@
+<script lang="ts" context="module">
+ import type { PrivacyFooter, Shelf } from '@jet-app/app-store/api/models';
+
+ interface PrivacyFooterShelf extends Shelf {
+ items: [PrivacyFooter];
+ }
+
+ export function isPrivacyFooterShelf(
+ shelf: Shelf,
+ ): shelf is PrivacyFooterShelf {
+ let { contentType, items } = shelf;
+
+ return contentType === 'privacyFooter' && Array.isArray(items);
+ }
+</script>
+
+<script lang="ts">
+ import LinkableTextItem from '~/components/jet/item/LinkableTextItem.svelte';
+ import ShelfWrapper from '~/components/Shelf/Wrapper.svelte';
+
+ export let shelf: PrivacyFooterShelf;
+
+ $: bodyText = shelf.items[0].bodyText;
+</script>
+
+<ShelfWrapper {shelf} centered>
+ <p>
+ <LinkableTextItem item={bodyText} />
+ </p>
+</ShelfWrapper>
+
+<style>
+ p {
+ font: var(--body-tall);
+ }
+
+ p :global(a) {
+ color: var(--keyColor);
+ }
+</style>