mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 10:54:44 +00:00
71 lines
2.0 KiB
Vue
71 lines
2.0 KiB
Vue
<script setup lang="ts">import type { Component } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
component: Component;
|
|
source: string;
|
|
}>();
|
|
|
|
const showSource = ref(false);
|
|
|
|
const { highlighted, highlightReactive } = useShiki();
|
|
|
|
watch(showSource, async (show) => {
|
|
if (show && !highlighted.value) {
|
|
await highlightReactive(props.source, 'vue');
|
|
}
|
|
}, { immediate: false });
|
|
</script>
|
|
|
|
<template>
|
|
<div class="border border-(--color-border) rounded-lg overflow-hidden">
|
|
<!-- Live demo -->
|
|
<div class="p-6 bg-(--color-bg-soft)">
|
|
<component :is="component" />
|
|
</div>
|
|
|
|
<!-- Source toggle bar -->
|
|
<div class="flex items-center border-t border-(--color-border) bg-(--color-bg)">
|
|
<button
|
|
class="flex items-center gap-1.5 px-4 py-2 text-xs font-medium text-(--color-text-mute) hover:text-(--color-text) transition-colors cursor-pointer"
|
|
@click="showSource = !showSource"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="14"
|
|
height="14"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<polyline points="16 18 22 12 16 6" />
|
|
<polyline points="8 6 2 12 8 18" />
|
|
</svg>
|
|
{{ showSource ? 'Hide source' : 'View source' }}
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="12"
|
|
height="12"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="transition-transform"
|
|
:class="showSource ? 'rotate-180' : ''"
|
|
>
|
|
<polyline points="6 9 12 15 18 9" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Source code -->
|
|
<div v-if="showSource" class="border-t border-(--color-border)">
|
|
<div class="overflow-x-auto text-sm" v-html="highlighted" />
|
|
</div>
|
|
</div>
|
|
</template>
|