feat: Initial commit

This commit is contained in:
engigu
2025-12-20 09:30:16 +08:00
commit 362237241e
189 changed files with 12035 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
<script setup lang="ts">
import { ref, computed, watch } from 'vue'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { X, Search } from 'lucide-vue-next'
const props = defineProps<{
open: boolean
title: string
content: string
}>()
const emit = defineEmits<{
'update:open': [value: boolean]
}>()
const searchKeyword = ref('')
// 高亮搜索结果
const highlightedContent = computed(() => {
if (!searchKeyword.value.trim()) return props.content
const keyword = searchKeyword.value.trim()
const escaped = keyword.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
const regex = new RegExp(`(${escaped})`, 'gi')
return props.content.replace(regex, '<mark class="bg-yellow-300 text-black">$1</mark>')
})
function close() {
emit('update:open', false)
}
// 打开时重置搜索
watch(() => props.open, (val) => {
if (val) searchKeyword.value = ''
})
</script>
<template>
<Teleport to="body">
<div
v-if="open"
class="fixed inset-0 z-50 flex items-center justify-center bg-black/50"
@click.self="close"
>
<div class="bg-background rounded-lg shadow-lg flex flex-col w-[80vw] max-w-5xl h-[85vh]">
<div class="flex items-center justify-between px-4 py-3 border-b shrink-0">
<div class="flex items-center gap-4">
<span class="text-sm font-medium">{{ title }}</span>
<div class="relative">
<Search class="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
<Input v-model="searchKeyword" placeholder="搜索内容..." class="h-8 pl-9 w-64 text-sm" />
</div>
</div>
<Button variant="ghost" size="icon" class="h-7 w-7" @click="close">
<X class="h-4 w-4" />
</Button>
</div>
<div class="flex-1 overflow-auto">
<pre class="p-4 text-xs font-mono whitespace-pre-wrap break-all" v-html="highlightedContent"></pre>
</div>
</div>
</div>
</Teleport>
</template>