mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
🏗️ **架构重构** - 移除charts.py中所有硬编码样式参数(grid、tooltip、legend等) - 将样式配置迁移至主题层style.json文件 - 统一图表模板消费样式文件的能力 📊 **图表组件优化** - bar_chart: 移除grid和坐标轴show参数 - pie_chart: 移除tooltip、legend样式和series视觉参数 - line_chart: 移除tooltip、grid和坐标轴配置 - radar_chart: 移除tooltip硬编码 🎨 **主题系统增强** - 新增pie_chart、line_chart、radar_chart的style.json配置 - 更新bar_chart/style.json,添加grid、xAxis、yAxis样式 - 所有图表模板支持deepMerge样式合并逻辑 🔧 **Breaking Changes** - 图表工厂函数不再接受样式参数 - 主题开发者现可通过style.json完全定制图表外观 - 提升组件可维护性和主题灵活性
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from typing import Literal
|
|
|
|
from pydantic import Field
|
|
|
|
from ..core.base import RenderableComponent
|
|
|
|
__all__ = ["Avatar", "AvatarGroup"]
|
|
|
|
|
|
class Avatar(RenderableComponent):
|
|
"""单个头像组件。"""
|
|
|
|
component_type: Literal["avatar"] = "avatar"
|
|
src: str = Field(..., description="头像的URL或Base64数据URI")
|
|
shape: Literal["circle", "square"] = Field("circle", description="头像形状")
|
|
size: int = Field(50, description="头像尺寸(像素)")
|
|
|
|
@property
|
|
def template_name(self) -> str:
|
|
return "components/widgets/avatar"
|
|
|
|
|
|
class AvatarGroup(RenderableComponent):
|
|
"""一组堆叠的头像组件。"""
|
|
|
|
component_type: Literal["avatar_group"] = "avatar_group"
|
|
avatars: list[Avatar] = Field(default_factory=list, description="头像列表")
|
|
spacing: int = Field(-15, description="头像间的间距(负数表示重叠)")
|
|
max_count: int | None = Field(
|
|
None, description="最多显示的头像数量,超出部分会显示为'+N'"
|
|
)
|
|
|
|
@property
|
|
def template_name(self) -> str:
|
|
return "components/widgets/avatar"
|