mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 13:42:56 +08:00
* ✨ feat!(ui): 重构图表组件架构,实现数据与样式分离 🏗️ **架构重构** - 移除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完全定制图表外观 - 提升组件可维护性和主题灵活性 * 📦️ build(pyinstaller): 引入 resources.spec 并更新 .gitignore 规则 * 🚨 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>
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
from collections.abc import Iterable
|
|
from typing import Any
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from .base import ContainerComponent, RenderableComponent
|
|
|
|
__all__ = ["LayoutData", "LayoutItem"]
|
|
|
|
|
|
class LayoutItem(BaseModel):
|
|
"""布局中的单个项目,现在持有可渲染组件的数据模型"""
|
|
|
|
component: RenderableComponent = Field(..., description="要渲染的组件的数据模型")
|
|
metadata: dict[str, Any] | None = Field(None, description="传递给模板的额外元数据")
|
|
|
|
|
|
class LayoutData(ContainerComponent):
|
|
"""布局构建器的数据模型"""
|
|
|
|
style_name: str | None = None
|
|
layout_type: str = "column"
|
|
children: list[LayoutItem] = Field(
|
|
default_factory=list, description="要布局的项目列表"
|
|
)
|
|
options: dict[str, Any] = Field(
|
|
default_factory=dict, description="传递给模板的选项"
|
|
)
|
|
|
|
@property
|
|
def template_name(self) -> str:
|
|
return f"components/core/layouts/{self.layout_type}"
|
|
|
|
def get_extra_css(self, context: Any) -> str:
|
|
"""聚合所有子组件的 extra_css。"""
|
|
all_css = []
|
|
if self.component_css:
|
|
all_css.append(self.component_css)
|
|
|
|
for item in self.children:
|
|
if (
|
|
item.component
|
|
and hasattr(item.component, "component_css")
|
|
and item.component.component_css
|
|
):
|
|
all_css.append(item.component.component_css)
|
|
|
|
return "\n".join(all_css)
|
|
|
|
def get_children(self) -> Iterable[RenderableComponent]:
|
|
for item in self.children:
|
|
yield item.component
|