aa2938cb34
Genuinely type composable any usages (useStepper/useStorage/useForm/ createEventHook/useSorted/etc.) as proper generics/unknown; keep idiomatic any-function and overload-impl signatures with comments; skipped test -> .todo.
106 lines
3.1 KiB
Vue
106 lines
3.1 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref } from 'vue';
|
|
import { useShare } from './index';
|
|
|
|
const payload = reactive({
|
|
title: 'Vue Toolkit',
|
|
text: 'A collection of essential Vue composables.',
|
|
url: 'https://vuejs.org',
|
|
});
|
|
|
|
const { share, isSupported } = useShare(payload);
|
|
|
|
const lastResult = ref<'shared' | 'dismissed' | null>(null);
|
|
|
|
async function onShare() {
|
|
lastResult.value = null;
|
|
try {
|
|
await share();
|
|
lastResult.value = 'shared';
|
|
}
|
|
catch {
|
|
// User dismissed the share sheet (AbortError) — treat as a non-error.
|
|
lastResult.value = 'dismissed';
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="demo-stack max-w-sm">
|
|
<div class="flex items-center justify-between">
|
|
<span class="demo-label">
|
|
Web Share API
|
|
</span>
|
|
<span
|
|
class="inline-flex items-center gap-1.5 rounded-md border px-2 py-0.5 text-xs font-medium"
|
|
:class="isSupported
|
|
? 'border-emerald-500/30 bg-emerald-500/10 text-emerald-600 dark:text-emerald-400'
|
|
: 'border-border bg-bg-inset text-fg-muted'"
|
|
>
|
|
<span
|
|
class="size-1.5 rounded-full"
|
|
:class="isSupported ? 'bg-emerald-500' : 'bg-fg-subtle'"
|
|
/>
|
|
{{ isSupported ? 'Supported' : 'Unsupported' }}
|
|
</span>
|
|
</div>
|
|
|
|
<div class="demo-card flex flex-col gap-3 p-4">
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">Title</span>
|
|
<input
|
|
v-model="payload.title"
|
|
type="text"
|
|
class="demo-input"
|
|
>
|
|
</label>
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">Text</span>
|
|
<input
|
|
v-model="payload.text"
|
|
type="text"
|
|
class="demo-input"
|
|
>
|
|
</label>
|
|
<label class="flex flex-col gap-1.5">
|
|
<span class="demo-label">URL</span>
|
|
<input
|
|
v-model="payload.url"
|
|
type="url"
|
|
class="demo-input"
|
|
>
|
|
</label>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
:disabled="!isSupported"
|
|
class="demo-btn-primary disabled:cursor-not-allowed disabled:opacity-40 disabled:active:scale-100"
|
|
@click="onShare"
|
|
>
|
|
<svg class="size-4" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
|
|
<circle cx="18" cy="5" r="3" />
|
|
<circle cx="6" cy="12" r="3" />
|
|
<circle cx="18" cy="19" r="3" />
|
|
<line x1="8.59" y1="13.51" x2="15.42" y2="17.49" />
|
|
<line x1="15.41" y1="6.51" x2="8.59" y2="10.49" />
|
|
</svg>
|
|
Share
|
|
</button>
|
|
|
|
<p v-if="!isSupported" class="text-xs leading-relaxed text-fg-subtle">
|
|
The Web Share API is not available in this browser. It works on most mobile
|
|
browsers and Safari.
|
|
</p>
|
|
<p
|
|
v-else-if="lastResult"
|
|
class="text-xs font-medium"
|
|
:class="lastResult === 'shared'
|
|
? 'text-emerald-600 dark:text-emerald-400'
|
|
: 'text-fg-muted'"
|
|
>
|
|
{{ lastResult === 'shared' ? 'Content shared.' : 'Share sheet dismissed.' }}
|
|
</p>
|
|
</div>
|
|
</template>
|