feat: 任命/撤销通知系统 + 用户名片UI优化

- 任命/撤销事件增加 type 字段区分类型
- 任命:全屏礼花 + 紫色弹窗 + 紫色系统消息
- 撤销:灰色弹窗 + 灰色系统消息,无礼花
- 消息分发:操作者/被操作者显示在私聊面板,其他人显示在公屏
- 系统消息加随机鼓励语(各5条轮换)
- ChatStateService 修复 Redis key 前缀扫描问题(getAllActiveRoomIds)
- 用户名片折叠优化:管理员视野、职务履历均可折叠
- 管理操作 + 职务操作合并为「🔧 管理操作」折叠区
- 悄悄话改为「🎁 送礼物」按钮,礼物面板内联展开
This commit is contained in:
2026-02-28 23:44:38 +08:00
parent a599047cf0
commit 5f30220609
80 changed files with 8579 additions and 473 deletions
@@ -0,0 +1,116 @@
{{--
文件功能:后台开发日志新增/编辑表单(仅 id=1 超级管理员可访问)
新增时:可选立即发布 + 通知大厅用户(触发 WebSocket 广播)
编辑时:不显示"通知大厅"选项,不更新 published_at
@extends admin.layouts.app
--}}
@extends('admin.layouts.app')
@section('title', $isCreate ? '新增开发日志' : '编辑开发日志')
@section('content')
<div class="flex items-center gap-3 mb-6">
<a href="{{ route('admin.changelogs.index') }}" class="text-gray-400 hover:text-gray-600 transition"> 返回列表</a>
<h2 class="text-xl font-bold text-gray-800">{{ $isCreate ? '📝 新增开发日志' : '✏️ 编辑开发日志' }}</h2>
</div>
<div class="max-w-3xl bg-white rounded-xl shadow-sm border border-gray-100 p-6">
<form action="{{ $isCreate ? route('admin.changelogs.store') : route('admin.changelogs.update', $log->id) }}"
method="POST">
@csrf
@if (!$isCreate)
@method('PUT')
@endif
{{-- 版本号 + 类型 --}}
<div class="grid grid-cols-2 gap-4 mb-4">
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">
版本号 <span class="text-red-500">*</span>
<span class="font-normal text-gray-400 ml-1">(推荐使用日期格式,如 2026-02-28)</span>
</label>
<input type="text" name="version" value="{{ old('version', $log?->version ?? $todayVersion) }}"
required maxlength="30" placeholder="例: 2026-02-28"
class="w-full border border-gray-200 rounded-lg p-2.5 text-sm focus:ring-2 focus:ring-indigo-400 outline-none">
</div>
<div>
<label class="block text-sm font-bold text-gray-700 mb-2">类型 <span class="text-red-500">*</span></label>
<select name="type"
class="w-full border border-gray-200 rounded-lg p-2.5 text-sm focus:ring-2 focus:ring-indigo-400 outline-none">
@foreach ($typeOptions as $value => $config)
<option value="{{ $value }}" {{ old('type', $log?->type) === $value ? 'selected' : '' }}>
{{ $config['label'] }}
</option>
@endforeach
</select>
</div>
</div>
{{-- 标题 --}}
<div class="mb-4">
<label class="block text-sm font-bold text-gray-700 mb-2">标题 <span class="text-red-500">*</span></label>
<input type="text" name="title" value="{{ old('title', $log?->title) }}" required maxlength="200"
placeholder="简洁描述本次更新的重点..."
class="w-full border border-gray-200 rounded-lg p-2.5 text-sm focus:ring-2 focus:ring-indigo-400 outline-none">
</div>
{{-- Markdown 内容 --}}
<div class="mb-5">
<label class="block text-sm font-bold text-gray-700 mb-2">
详细内容 <span class="text-red-500">*</span>
<span class="font-normal text-gray-400 ml-1">(支持 Markdown 格式)</span>
</label>
<textarea name="content" required rows="16"
placeholder="## 新增功能&#10;- 新增了 AI 聊天机器人功能&#10;- 支持多种 AI 服务商(OpenAI / DeepSeek&#10;&#10;## Bug 修复&#10;- 修复了钓鱼游戏积分计算错误&#10;&#10;## 优化&#10;- 改进了消息加载速度"
class="w-full border border-gray-200 rounded-lg p-3 text-sm font-mono resize-y focus:ring-2 focus:ring-indigo-400 outline-none leading-relaxed">{{ old('content', $log?->content) }}</textarea>
<p class="text-xs text-gray-400 mt-1">支持 ## 标题、- 列表、`代码` 等 Markdown 格式</p>
</div>
{{-- 发布选项 --}}
<div class="bg-gray-50 rounded-xl p-4 mb-5 border border-gray-200">
<label class="flex items-center gap-3 cursor-pointer group">
<input type="checkbox" name="is_published" value="1"
{{ old('is_published', $log?->is_published) ? 'checked' : '' }}
class="w-4 h-4 text-indigo-600 rounded focus:ring-indigo-400" id="is_published">
<span class="font-bold text-gray-800">立即发布</span>
<span class="text-gray-500 text-sm font-normal">(取消勾选则保存为草稿)</span>
</label>
@if ($isCreate)
{{-- 新增时显示"通知大厅"选项 --}}
<label class="flex items-center gap-3 cursor-pointer mt-3" id="notify-row">
<input type="checkbox" name="notify_chat" value="1" checked
class="w-4 h-4 text-purple-600 rounded focus:ring-purple-400" id="notify_chat">
<span class="font-bold text-gray-800">通知大厅用户</span>
<span class="text-gray-500 text-sm font-normal">
(发布时在「星光大厅 Room 1」的聊天区广播通知,含可点击链接)
</span>
</label>
@else
{{-- 编辑时也可手动触发通知 --}}
<label class="flex items-center gap-3 cursor-pointer mt-3" id="notify-row">
<input type="checkbox" name="notify_chat" value="1"
class="w-4 h-4 text-purple-600 rounded focus:ring-purple-400" id="notify_chat">
<span class="font-bold text-gray-800">重新通知大厅用户</span>
<span class="text-gray-500 text-sm font-normal">
(勾选后保存,将再次向「星光大厅」广播此日志通知)
</span>
</label>
@endif
</div>
{{-- 操作按钮 --}}
<div class="flex justify-end gap-3">
<a href="{{ route('admin.changelogs.index') }}"
class="px-5 py-2 border border-gray-200 rounded-lg text-gray-600 hover:bg-gray-50 font-medium text-sm transition">
取消
</a>
<button type="submit"
class="px-6 py-2 bg-indigo-600 text-white rounded-lg font-bold hover:bg-indigo-700 text-sm shadow-sm transition">
{{ $isCreate ? '保存日志' : '更新日志' }}
</button>
</div>
</form>
</div>
@endsection
@@ -0,0 +1,102 @@
{{--
文件功能:后台开发日志列表页(仅 id=1 超级管理员可访问)
展示所有日志(含草稿),支持发布/编辑/删除操作
@extends admin.layouts.app
--}}
@extends('admin.layouts.app')
@section('title', '开发日志管理')
@section('content')
<div class="flex justify-between items-center mb-6">
<div>
<h2 class="text-xl font-bold text-gray-800">📋 开发日志管理</h2>
<p class="text-sm text-gray-500 mt-1">管理版本更新记录,发布后可在大厅消息区通知用户</p>
</div>
<a href="{{ route('admin.changelogs.create') }}"
class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg font-bold text-sm shadow transition">
+ 新增日志
</a>
</div>
{{-- 日志列表 --}}
<div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
<table class="w-full text-sm">
<thead class="bg-gray-50 border-b border-gray-100">
<tr class="text-left text-gray-500 text-xs font-bold uppercase tracking-wider">
<th class="px-5 py-3">版本号</th>
<th class="px-5 py-3">标题</th>
<th class="px-5 py-3">类型</th>
<th class="px-5 py-3">状态</th>
<th class="px-5 py-3">发布时间</th>
<th class="px-5 py-3 text-right">操作</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-50">
@forelse($logs as $log)
<tr class="hover:bg-gray-50 transition-colors">
<td class="px-5 py-3 font-mono text-indigo-700 font-bold">v{{ $log->version }}</td>
<td class="px-5 py-3 text-gray-800 font-medium">{{ $log->title }}</td>
<td class="px-5 py-3">
@php
$typeConfig = \App\Models\DevChangelog::TYPE_CONFIG[$log->type] ?? null;
$colorMap = [
'emerald' => 'bg-emerald-100 text-emerald-700',
'rose' => 'bg-rose-100 text-rose-700',
'blue' => 'bg-blue-100 text-blue-700',
'slate' => 'bg-slate-100 text-slate-700',
];
@endphp
<span
class="px-2 py-0.5 rounded-full text-xs font-bold {{ $colorMap[$typeConfig['color'] ?? 'slate'] ?? 'bg-slate-100 text-slate-700' }}">
{{ $typeConfig['label'] ?? '其他' }}
</span>
</td>
<td class="px-5 py-3">
@if ($log->is_published)
<span class="px-2 py-0.5 bg-green-100 text-green-700 rounded-full text-xs font-bold">
已发布</span>
@else
<span class="px-2 py-0.5 bg-gray-100 text-gray-500 rounded-full text-xs font-bold">🔒
草稿</span>
@endif
</td>
<td class="px-5 py-3 text-gray-400 text-xs">
{{ $log->published_at?->format('Y-m-d H:i') ?? '—' }}
</td>
<td class="px-5 py-3 text-right">
<div class="flex items-center justify-end gap-2">
<a href="{{ route('admin.changelogs.edit', $log->id) }}"
class="text-blue-600 hover:text-blue-800 font-semibold text-xs px-2 py-1 rounded hover:bg-blue-50 transition">
编辑
</a>
<form action="{{ route('admin.changelogs.destroy', $log->id) }}" method="POST"
onsubmit="return confirm('确定要删除这条日志吗?');">
@csrf @method('DELETE')
<button type="submit"
class="text-red-600 hover:text-red-800 font-semibold text-xs px-2 py-1 rounded hover:bg-red-50 transition">
删除
</button>
</form>
</div>
</td>
</tr>
@empty
<tr>
<td colspan="6" class="px-5 py-12 text-center text-gray-400">
<p class="text-3xl mb-2">📭</p>
<p>还没有任何日志,点击右上角「新增日志」开始吧</p>
</td>
</tr>
@endforelse
</tbody>
</table>
@if ($logs->hasPages())
<div class="px-5 py-4 border-t border-gray-100">
{{ $logs->links() }}
</div>
@endif
</div>
@endsection