summaryrefslogtreecommitdiff
path: root/src/components/SystemImage.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/SystemImage.svelte
init commit
Diffstat (limited to 'src/components/SystemImage.svelte')
-rw-r--r--src/components/SystemImage.svelte52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/components/SystemImage.svelte b/src/components/SystemImage.svelte
new file mode 100644
index 0000000..40723dd
--- /dev/null
+++ b/src/components/SystemImage.svelte
@@ -0,0 +1,52 @@
+<!--
+@component
+Renders an `Artwork` view model that references an SF Symbol through a `systemimage://` or `resource://` template URL
+-->
+<script lang="ts" context="module">
+ import type { Artwork } from '@jet-app/app-store/api/models';
+
+ const systemImagePrefix = 'systemimage://';
+ const resourcePrefix = 'resource://';
+
+ type SystemImageTemplate = `${typeof systemImagePrefix}${string}`;
+ type ResourceTemplate = `${typeof resourcePrefix}${string}`;
+
+ /**
+ * An {@linkcode Artwork} that references a system image
+ */
+ interface FullSystemImageArtwork extends Artwork {
+ template: SystemImageTemplate | ResourceTemplate;
+ }
+
+ /**
+ * The sub-set of {@linkcode FullSystemImageArtwork} required to render
+ * the icon
+ */
+ type SystemImageArtwork = Pick<FullSystemImageArtwork, 'template'>;
+
+ /**
+ * Determine if some {@linkcode Artwork} represents a "system image"
+ */
+ export function isSystemImageArtwork(
+ artwork: Artwork,
+ ): artwork is FullSystemImageArtwork {
+ return (
+ artwork.template.startsWith(systemImagePrefix) ||
+ artwork.template.startsWith(resourcePrefix)
+ );
+ }
+
+ export function getIconNameFromTemplate(template: string) {
+ return new URL(template).host;
+ }
+</script>
+
+<script lang="ts">
+ import SFSymbol from '~/components/SFSymbol.svelte';
+
+ export let artwork: SystemImageArtwork;
+
+ $: name = getIconNameFromTemplate(artwork.template);
+</script>
+
+<SFSymbol {name} />