104 lines
3.6 KiB
JavaScript
104 lines
3.6 KiB
JavaScript
'use strict';
|
|
|
|
const express = require('express');
|
|
const { CJbot } = require('../../model/minecraft');
|
|
|
|
function createRouter() {
|
|
const router = express.Router();
|
|
|
|
router.get('/api/ai/status', (req, res) => {
|
|
try {
|
|
const result = {};
|
|
for (const [name, bot] of Object.entries(CJbot.bots)) {
|
|
const ai = bot.plunginsLoaded['Ai'];
|
|
if (!ai) continue;
|
|
const config = ai.__getConfig();
|
|
result[name] = {
|
|
connected: bot.isReady,
|
|
provider: config.provider || 'unknown',
|
|
model: config.model || 'unknown',
|
|
interval: ai.intervalLength,
|
|
promptName: ai.promptName || 'unknown',
|
|
active: !!ai.intervalStop,
|
|
};
|
|
}
|
|
res.json({ bots: result });
|
|
} catch (error) {
|
|
console.error('API Error /api/ai/status:', error);
|
|
res.status(500).json({ error: error.message });
|
|
}
|
|
});
|
|
|
|
return router;
|
|
}
|
|
|
|
const webUI = {
|
|
tabId: 'ai',
|
|
tabLabel: 'AI',
|
|
tabOrder: 30,
|
|
html: `
|
|
<div id="aiArea">
|
|
<div style="padding:20px;color:#6b7280;text-align:center">Loading AI status...</div>
|
|
</div>
|
|
`,
|
|
css: `
|
|
.ai-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:16px}
|
|
.ai-card{background:#111827;border:1px solid #374151;border-radius:8px;padding:16px;transition:border-color .2s}
|
|
.ai-card:hover{border-color:#a78bfa}
|
|
.ai-card h3{font-size:1em;color:#a78bfa;margin-bottom:12px;display:flex;align-items:center;gap:8px}
|
|
.ai-info{font-size:.85em;color:#9ca3af;margin:4px 0}
|
|
.ai-info .ai-label{color:#6b7280;display:inline-block;min-width:80px}
|
|
.ai-info .ai-value{color:#e5e7eb}
|
|
.ai-status-badge{padding:2px 8px;border-radius:10px;font-size:.75em;font-weight:600}
|
|
.ai-status-badge.active{background:#059669;color:#fff}
|
|
.ai-status-badge.inactive{background:#6b7280;color:#fff}
|
|
.ai-empty{padding:40px 20px;color:#6b7280;text-align:center;font-size:.9em}
|
|
`,
|
|
onTabActive: 'onAiTabActive',
|
|
js: `
|
|
let aiInterval=null;
|
|
|
|
function onAiTabActive() {
|
|
loadAiStatus();
|
|
if (!aiInterval) aiInterval = setInterval(() => { if (currentTab === 'ai') loadAiStatus(); }, 10000);
|
|
}
|
|
|
|
async function loadAiStatus() {
|
|
try {
|
|
const r = await fetch('/api/ai/status');
|
|
if (!r.ok) { document.getElementById('aiArea').innerHTML='<div class="ai-empty">Failed to load AI status</div>'; return; }
|
|
const d = await r.json();
|
|
renderAiStatus(d.bots || {});
|
|
} catch(e) {
|
|
document.getElementById('aiArea').innerHTML='<div class="ai-empty">Failed to load AI status</div>';
|
|
}
|
|
}
|
|
|
|
function renderAiStatus(bots) {
|
|
const area = document.getElementById('aiArea');
|
|
const names = Object.keys(bots);
|
|
if (names.length === 0) {
|
|
area.innerHTML='<div class="ai-empty">No bots with AI loaded</div>';
|
|
return;
|
|
}
|
|
|
|
area.innerHTML = '<div class="ai-grid">' + names.map(name => {
|
|
const ai = bots[name];
|
|
const badge = ai.active
|
|
? '<span class="ai-status-badge active">Active</span>'
|
|
: '<span class="ai-status-badge inactive">Inactive</span>';
|
|
|
|
return '<div class="ai-card">' +
|
|
'<h3><span class="bot-status ' + (ai.connected ? 'online' : 'offline') + '"></span> ' + escHtml(name) + ' ' + badge + '</h3>' +
|
|
'<div class="ai-info"><span class="ai-label">Provider:</span> <span class="ai-value">' + escHtml(ai.provider) + '</span></div>' +
|
|
'<div class="ai-info"><span class="ai-label">Model:</span> <span class="ai-value">' + escHtml(ai.model) + '</span></div>' +
|
|
'<div class="ai-info"><span class="ai-label">Interval:</span> <span class="ai-value">' + ai.interval + 's</span></div>' +
|
|
'<div class="ai-info"><span class="ai-label">Prompt:</span> <span class="ai-value">' + escHtml(ai.promptName) + '</span></div>' +
|
|
'</div>';
|
|
}).join('') + '</div>';
|
|
}
|
|
`,
|
|
};
|
|
|
|
module.exports = { createRouter, webUI };
|