mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-31 05:10:14 +08:00
118 lines
4.1 KiB
JavaScript
118 lines
4.1 KiB
JavaScript
/**
|
|
* 日志查看页面
|
|
*/
|
|
import { api } from '../lib/tauri-api.js'
|
|
import { toast } from '../components/toast.js'
|
|
|
|
const LOG_TABS = [
|
|
{ key: 'gateway', label: 'Gateway 日志' },
|
|
{ key: 'gateway-err', label: 'Gateway 错误' },
|
|
{ key: 'guardian', label: '守护进程' },
|
|
{ key: 'guardian-backup', label: '备份日志' },
|
|
{ key: 'config-audit', label: '审计日志' },
|
|
]
|
|
|
|
let _searchTimer = null
|
|
|
|
export async function render() {
|
|
const page = document.createElement('div')
|
|
page.className = 'page'
|
|
|
|
page.innerHTML = `
|
|
<div class="page-header">
|
|
<h1 class="page-title">日志查看</h1>
|
|
<p class="page-desc">查看 OpenClaw 各服务日志</p>
|
|
</div>
|
|
<div class="tab-bar">
|
|
${LOG_TABS.map((t, i) => `<div class="tab${i === 0 ? ' active' : ''}" data-tab="${t.key}">${t.label}</div>`).join('')}
|
|
</div>
|
|
<div class="log-toolbar">
|
|
<input type="text" class="form-input" id="log-search" placeholder="搜索日志..." style="max-width:300px">
|
|
<button class="btn btn-secondary btn-sm" id="btn-refresh">刷新</button>
|
|
<label style="display:flex;align-items:center;gap:6px;font-size:var(--font-size-sm);color:var(--text-secondary)">
|
|
<input type="checkbox" id="log-autoscroll" checked> 自动滚动
|
|
</label>
|
|
</div>
|
|
<div class="log-viewer" id="log-content" style="height:calc(100vh - 280px)"><div class="stat-card loading-placeholder" style="height:16px;margin:8px 0"></div><div class="stat-card loading-placeholder" style="height:16px;margin:8px 0"></div><div class="stat-card loading-placeholder" style="height:16px;margin:8px 0"></div><div class="stat-card loading-placeholder" style="height:16px;margin:8px 0"></div></div>
|
|
`
|
|
|
|
let currentTab = 'gateway'
|
|
|
|
// Tab 切换
|
|
page.querySelectorAll('.tab').forEach(tab => {
|
|
tab.onclick = () => {
|
|
page.querySelectorAll('.tab').forEach(t => t.classList.remove('active'))
|
|
tab.classList.add('active')
|
|
currentTab = tab.dataset.tab
|
|
page.querySelector('#log-search').value = ''
|
|
loadLog(page, currentTab)
|
|
}
|
|
})
|
|
|
|
// 搜索
|
|
page.querySelector('#log-search').addEventListener('input', (e) => {
|
|
clearTimeout(_searchTimer)
|
|
_searchTimer = setTimeout(() => {
|
|
if (e.target.value.trim()) {
|
|
searchLog(page, currentTab, e.target.value.trim())
|
|
} else {
|
|
loadLog(page, currentTab)
|
|
}
|
|
}, 300)
|
|
})
|
|
|
|
// 刷新
|
|
page.querySelector('#btn-refresh').onclick = () => loadLog(page, currentTab)
|
|
|
|
loadLog(page, currentTab)
|
|
return page
|
|
}
|
|
|
|
export function cleanup() {
|
|
clearTimeout(_searchTimer)
|
|
_searchTimer = null
|
|
}
|
|
|
|
async function loadLog(page, logName) {
|
|
const el = page.querySelector('#log-content')
|
|
try {
|
|
const content = await api.readLogTail(logName, 200)
|
|
if (!content || !content.trim()) {
|
|
el.innerHTML = '<div style="color:var(--text-tertiary)">暂无日志</div>'
|
|
return
|
|
}
|
|
const lines = content.trim().split('\n')
|
|
el.innerHTML = lines.map(l => `<div class="log-line">${escapeHtml(l)}</div>`).join('')
|
|
if (page.querySelector('#log-autoscroll')?.checked) {
|
|
el.scrollTop = el.scrollHeight
|
|
}
|
|
} catch (e) {
|
|
el.innerHTML = '<div style="color:var(--error);padding:12px">加载日志失败: ' + e + '</div>'
|
|
toast('加载日志失败: ' + e, 'error')
|
|
}
|
|
}
|
|
|
|
async function searchLog(page, logName, query) {
|
|
const el = page.querySelector('#log-content')
|
|
try {
|
|
const results = await api.searchLog(logName, query)
|
|
if (!results || !results.length) {
|
|
el.innerHTML = '<div style="color:var(--text-tertiary)">未找到匹配结果</div>'
|
|
return
|
|
}
|
|
el.innerHTML = results.map(l => `<div class="log-line">${highlightMatch(escapeHtml(l), query)}</div>`).join('')
|
|
} catch (e) {
|
|
el.innerHTML = '<div style="color:var(--error);padding:12px">搜索失败: ' + e + '</div>'
|
|
toast('搜索失败: ' + e, 'error')
|
|
}
|
|
}
|
|
|
|
function escapeHtml(str) {
|
|
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>')
|
|
}
|
|
|
|
function highlightMatch(html, query) {
|
|
const escaped = query.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
return html.replace(new RegExp(escaped, 'gi'), m => `<mark>${m}</mark>`)
|
|
}
|