Files
TaskPool/web/src/components/LogContent.vue
T

206 lines
5.4 KiB
Vue

<script setup lang="ts">
import { ref, onMounted, onUnmounted, watch, nextTick } from 'vue'
import { AlertCircle, Loader2 } from 'lucide-vue-next'
import { Terminal } from '@xterm/xterm'
import { FitAddon } from '@xterm/addon-fit'
import { useTheme } from '@/composables/useTheme'
import '@xterm/xterm/css/xterm.css'
interface Props {
content?: string
loading?: boolean
loadingText?: string
emptyTitle?: string
emptyDescription?: string
}
const props = withDefaults(defineProps<Props>(), {
content: '',
loading: false,
loadingText: '正在获取日志内容',
emptyTitle: '未检测到输出内容',
emptyDescription: '此任务执行期间未产生标准输出(Stdout)或错误输出(Stderr)日志。'
})
const terminalRef = ref<HTMLDivElement | null>(null)
let terminal: Terminal | null = null
let fitAddon: FitAddon | null = null
let resizeObserver: ResizeObserver | null = null
const { resolvedTheme } = useTheme()
let lastContentLength = 0
let lastContent = ''
function getTheme() {
const isDark = resolvedTheme.value === 'dark'
return {
background: isDark ? '#00000000' : '#e4e4e7',
foreground: isDark ? '#d4d4d4' : '#333333',
cursor: '#00000000',
selectionBackground: isDark ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.2)',
}
}
function initTerminal() {
if (!terminalRef.value) return
terminal = new Terminal({
cursorBlink: false,
disableStdin: true,
fontSize: 12,
lineHeight: 1.15,
fontFamily: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
theme: getTheme(),
allowTransparency: true,
})
fitAddon = new FitAddon()
terminal.loadAddon(fitAddon)
terminal.open(terminalRef.value)
requestAnimationFrame(() => {
try {
fitAddon?.fit()
} catch (e) {}
})
if (props.content) {
writeContent(props.content)
}
}
function writeContent(content: string) {
if (!terminal) return
if (content.length > lastContentLength && content.substring(0, lastContentLength) === lastContent) {
// 增量更新:只截取新的部分
const diff = content.substring(lastContentLength)
// 替换换行符,因为 xterm 需要 \r\n 才能回到行首
const formattedDiff = diff.replace(/\r?\n/g, '\r\n')
terminal.write(formattedDiff)
} else {
// 全量更新
const formattedContent = content.replace(/\r?\n/g, '\r\n')
terminal.clear()
terminal.write(formattedContent)
}
lastContentLength = content.length
lastContent = content
}
watch(resolvedTheme, () => {
if (terminal) {
terminal.options.theme = getTheme()
}
})
watch(() => props.content, (newContent) => {
if (newContent) {
nextTick(() => {
writeContent(newContent)
})
} else {
terminal?.clear()
lastContentLength = 0
lastContent = ''
}
})
// 监听容器大小变化以适配 xterm
onMounted(() => {
if (terminalRef.value) {
resizeObserver = new ResizeObserver(() => {
try {
fitAddon?.fit()
} catch (e) {}
})
resizeObserver.observe(terminalRef.value)
}
})
onUnmounted(() => {
if (resizeObserver) {
resizeObserver.disconnect()
}
terminal?.dispose()
terminal = null
})
// 当不显示 loading 且有 content 时,初始化 terminal
watch(
() => (!props.loading && props.content && props.content.trim()),
(shouldShow) => {
if (shouldShow && !terminal) {
nextTick(() => {
initTerminal()
})
}
},
{ immediate: true }
)
</script>
<template>
<div class="flex-1 flex flex-col h-full w-full relative">
<!-- 加载状态 -->
<template v-if="loading">
<div class="flex-1 flex flex-col items-center justify-center p-4 select-none text-center">
<Loader2 class="h-10 w-10 animate-spin text-primary/30 mb-4" />
<span class="text-sm text-muted-foreground font-medium animate-pulse">{{ loadingText }}</span>
</div>
</template>
<!-- 空状态 -->
<template v-else-if="!content || !content.trim()">
<div class="flex-1 flex flex-col items-center justify-center p-4 select-none text-center">
<div class="w-14 h-14 rounded-3xl bg-muted/20 flex items-center justify-center mb-4 border border-muted-foreground/10 mx-auto">
<AlertCircle class="h-7 w-8 text-muted-foreground/20" />
</div>
<span class="text-sm text-muted-foreground font-medium">{{ emptyTitle }}</span>
<p class="text-[11px] text-muted-foreground/40 mt-1.5 max-w-[280px] leading-relaxed mx-auto">
{{ emptyDescription }}
</p>
</div>
</template>
<!-- 正常内容 -->
<div
v-show="!loading && content && content.trim()"
class="flex-1 w-full h-full p-2 overflow-hidden"
>
<div ref="terminalRef" class="w-full h-full log-terminal"></div>
</div>
</div>
</template>
<style scoped>
.log-terminal :deep(.xterm) {
padding: 0.5rem;
}
.log-terminal :deep(.xterm-viewport) {
scrollbar-width: thin;
scrollbar-color: rgba(150, 150, 150, 0.3) transparent;
}
.log-terminal :deep(.xterm-viewport::-webkit-scrollbar) {
width: 6px;
height: 6px;
}
.log-terminal :deep(.xterm-viewport::-webkit-scrollbar-track) {
background: transparent;
}
.log-terminal :deep(.xterm-viewport::-webkit-scrollbar-thumb) {
background: rgba(150, 150, 150, 0.3);
border-radius: 4px;
}
.log-terminal :deep(.xterm-viewport::-webkit-scrollbar-thumb:hover) {
background: rgba(150, 150, 150, 0.5);
}
</style>