mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
Some checks failed
检查bot是否运行正常 / bot check (push) Has been cancelled
CodeQL Code Security Analysis / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
CodeQL Code Security Analysis / Analyze (${{ matrix.language }}) (none, python) (push) Has been cancelled
Sequential Lint and Type Check / ruff-call (push) Has been cancelled
Release Drafter / Update Release Draft (push) Has been cancelled
Force Sync to Aliyun / sync (push) Has been cancelled
Update Version / update-version (push) Has been cancelled
Sequential Lint and Type Check / pyright-call (push) Has been cancelled
* ✨ feat(table): 添加 ComponentCell 以支持表格单元格中嵌入可渲染组件 * ✨ feat(ui): 增强表格构建器并完善组件模型文档 - 增强 `TableBuilder`,新增 `_normalize_cell` 辅助方法,支持自动将原生数据类型(如 `str`, `int`, `Path`)转换为 `TableCell` 模型,简化了表格行的创建。 - 完善 `zhenxun/ui/models` 目录下所有组件模型字段的 `description` 属性和文档字符串,显著提升了代码可读性和开发者体验。 - 优化 `shop/_data_source.py` 中 `gold_rank` 函数的平台路径判断格式,并统一 `my_props` 函数中图标路径的处理逻辑。 * 🚨 auto fix by pre-commit hooks --------- Co-authored-by: webjoin111 <455457521@qq.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
57 lines
1.4 KiB
Python
57 lines
1.4 KiB
Python
from pydantic import BaseModel, Field
|
|
|
|
from ..core.base import RenderableComponent
|
|
|
|
__all__ = [
|
|
"PluginMenuCategory",
|
|
"PluginMenuData",
|
|
"PluginMenuItem",
|
|
]
|
|
|
|
|
|
class PluginMenuItem(BaseModel):
|
|
"""插件菜单中的单个插件项"""
|
|
|
|
id: str
|
|
"""插件的唯一ID"""
|
|
name: str
|
|
"""插件名称"""
|
|
status: bool
|
|
"""插件在当前群组的开关状态"""
|
|
has_superuser_help: bool
|
|
"""插件是否有超级用户专属帮助"""
|
|
commands: list[str] = Field(default_factory=list, description="插件的主要命令列表")
|
|
"""插件的主要命令列表"""
|
|
|
|
|
|
class PluginMenuCategory(BaseModel):
|
|
"""插件菜单中的一个分类"""
|
|
|
|
name: str
|
|
"""插件分类名称"""
|
|
items: list[PluginMenuItem] = Field(..., description="该分类下的插件项列表")
|
|
"""该分类下的插件项列表"""
|
|
|
|
|
|
class PluginMenuData(RenderableComponent):
|
|
"""通用插件帮助菜单的数据模型"""
|
|
|
|
style_name: str | None = None
|
|
"""页面样式名称"""
|
|
bot_name: str
|
|
"""机器人名称"""
|
|
bot_avatar_url: str
|
|
"""机器人头像URL"""
|
|
is_detail: bool
|
|
"""是否为详细菜单模式"""
|
|
plugin_count: int
|
|
"""总插件数量"""
|
|
active_count: int
|
|
"""已启用插件数量"""
|
|
categories: list[PluginMenuCategory]
|
|
"""插件分类列表"""
|
|
|
|
@property
|
|
def template_name(self) -> str:
|
|
return "pages/core/plugin_menu"
|