feat webui react+vite responsive app with clawgo api adapter

This commit is contained in:
DBT
2026-02-25 12:59:16 +00:00
parent b435589060
commit b2ac3afcf4
11 changed files with 2009 additions and 0 deletions

132
webui/src/App.tsx Normal file
View File

@@ -0,0 +1,132 @@
import { useEffect, useMemo, useState } from 'react'
type ChatItem = { role: 'user' | 'assistant'; text: string }
type Session = { key: string; title: string }
const defaultSessions: Session[] = [{ key: 'webui:default', title: 'Default' }]
export function App() {
const [token, setToken] = useState('')
const [cfgText, setCfgText] = useState('{}')
const [sessions, setSessions] = useState<Session[]>(defaultSessions)
const [active, setActive] = useState('webui:default')
const [chat, setChat] = useState<Record<string, ChatItem[]>>({ 'webui:default': [] })
const [msg, setMsg] = useState('')
const [nodes, setNodes] = useState<string>('[]')
const activeChat = useMemo(() => chat[active] || [], [chat, active])
const q = token ? `?token=${encodeURIComponent(token)}` : ''
async function loadConfig() {
const r = await fetch(`/webui/api/config${q}`)
setCfgText(await r.text())
}
async function saveConfig() {
const parsed = JSON.parse(cfgText)
const r = await fetch(`/webui/api/config${q}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(parsed),
})
alert(await r.text())
}
async function refreshNodes() {
const payload = {
session: active,
message: '调用nodes工具action=status并输出JSON。',
}
const r = await fetch(`/webui/api/chat${q}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload),
})
const t = await r.text()
setNodes(t)
}
async function send() {
let media = ''
const input = document.getElementById('file') as HTMLInputElement | null
const f = input?.files?.[0]
if (f) {
const fd = new FormData()
fd.append('file', f)
const ur = await fetch(`/webui/api/upload${q}`, { method: 'POST', body: fd })
const uj = await ur.json()
media = uj.path || ''
}
const userText = msg + (media ? ` [file:${media}]` : '')
setChat((prev) => ({ ...prev, [active]: [...(prev[active] || []), { role: 'user', text: userText }] }))
const payload = { session: active, message: msg, media }
setMsg('')
const r = await fetch(`/webui/api/chat${q}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload),
})
const t = await r.text()
setChat((prev) => ({ ...prev, [active]: [...(prev[active] || []), { role: 'assistant', text: t }] }))
if (input) input.value = ''
}
function addSession() {
const n = `webui:${Date.now()}`
const s = { key: n, title: `Session-${sessions.length + 1}` }
setSessions((v) => [...v, s])
setActive(n)
setChat((prev) => ({ ...prev, [n]: [] }))
}
useEffect(() => {
loadConfig().catch(() => {})
}, [])
return (
<div className="app">
<header className="topbar">
<strong>ClawGo WebUI (React/Vite)</strong>
<input value={token} onChange={(e) => setToken(e.target.value)} placeholder="gateway token" />
</header>
<div className="layout">
<aside className="panel sessions">
<div className="panel-title">Sessions <button onClick={addSession}>+</button></div>
{sessions.map((s) => (
<button key={s.key} className={s.key === active ? 'active' : ''} onClick={() => setActive(s.key)}>
{s.title}
</button>
))}
</aside>
<main className="panel chat">
<div className="panel-title">Chat</div>
<div className="chatlog">
{activeChat.map((m, i) => (
<div key={i} className={`bubble ${m.role}`}>
{m.text}
</div>
))}
</div>
<div className="composer">
<input value={msg} onChange={(e) => setMsg(e.target.value)} placeholder="Type message..." />
<input id="file" type="file" />
<button onClick={send}>Send</button>
</div>
</main>
<section className="panel right">
<div className="panel-title">Config</div>
<div className="row"><button onClick={loadConfig}>Load</button><button onClick={saveConfig}>Save+Reload</button></div>
<textarea value={cfgText} onChange={(e) => setCfgText(e.target.value)} />
<div className="panel-title">Nodes</div>
<div className="row"><button onClick={refreshNodes}>Refresh</button></div>
<pre>{nodes}</pre>
</section>
</div>
</div>
)
}