Files
KnowledgeBase/app/Filament/Widgets/TerminalStatsWidget.php
lizhuoran f89acbb2dc fix: 修复终端统计组件字段名称错误
- 将 is_active 改为 is_online(与数据库表结构一致)
- 更新描述文本从'激活'改为'在线'
2026-03-12 17:30:34 +08:00

66 lines
2.4 KiB
PHP

<?php
namespace App\Filament\Widgets;
use App\Models\Terminal;
use App\Models\TerminalKnowledgeBase;
use App\Models\TerminalPrompt;
use App\Models\TerminalSyncLog;
use Filament\Widgets\StatsOverviewWidget as BaseWidget;
use Filament\Widgets\StatsOverviewWidget\Stat;
class TerminalStatsWidget extends BaseWidget
{
protected static ?int $sort = 2;
protected function getStats(): array
{
// 统计终端数据
$totalTerminals = Terminal::count();
$onlineTerminals = Terminal::where('is_online', true)->count();
// 统计知识库关联
$totalKnowledgeBases = TerminalKnowledgeBase::count();
// 统计提示词
$totalPrompts = TerminalPrompt::count();
// 统计最近同步
$recentSyncs = TerminalSyncLog::where('created_at', '>=', now()->subDay())
->where('status', 'success')
->count();
$failedSyncs = TerminalSyncLog::where('created_at', '>=', now()->subDay())
->where('status', 'failed')
->count();
return [
Stat::make('终端总数', $totalTerminals)
->description("{$onlineTerminals} 个在线")
->descriptionIcon('heroicon-m-computer-desktop')
->color('primary')
->url(route('filament.admin.resources.terminals.index')),
Stat::make('知识库关联', $totalKnowledgeBases)
->description('终端知识库配置数')
->descriptionIcon('heroicon-m-link')
->color('info'),
Stat::make('提示词配置', $totalPrompts)
->description('终端提示词总数')
->descriptionIcon('heroicon-m-chat-bubble-left-right')
->color('success'),
Stat::make('今日同步成功', $recentSyncs)
->description('最近24小时')
->descriptionIcon('heroicon-m-arrow-path')
->color('success'),
Stat::make('今日同步失败', $failedSyncs)
->description($failedSyncs > 0 ? '需要检查' : '运行正常')
->descriptionIcon($failedSyncs > 0 ? 'heroicon-m-exclamation-triangle' : 'heroicon-m-check-circle')
->color($failedSyncs > 0 ? 'danger' : 'success'),
];
}
}