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>
63 lines
1.9 KiB
Python
63 lines
1.9 KiB
Python
from typing import Literal
|
|
from typing_extensions import Self
|
|
|
|
from ...models.core.text import TextData, TextSpan
|
|
from ..base import BaseBuilder
|
|
|
|
|
|
class TextBuilder(BaseBuilder[TextData]):
|
|
"""链式构建轻量级富文本组件的辅助类"""
|
|
|
|
def __init__(self, text: str = ""):
|
|
data_model = TextData(spans=[], align="left")
|
|
super().__init__(data_model, template_name="components/core/text")
|
|
if text:
|
|
self.add_span(text)
|
|
|
|
def set_alignment(self, align: Literal["left", "right", "center"]) -> Self:
|
|
"""设置整个文本块的对齐方式"""
|
|
self._data.align = align
|
|
return self
|
|
|
|
def add_span(
|
|
self,
|
|
text: str,
|
|
*,
|
|
bold: bool = False,
|
|
italic: bool = False,
|
|
underline: bool = False,
|
|
strikethrough: bool = False,
|
|
code: bool = False,
|
|
color: str | None = None,
|
|
font_size: str | int | None = None,
|
|
font_family: str | None = None,
|
|
) -> Self:
|
|
"""
|
|
添加一个带有样式的文本片段。
|
|
|
|
参数:
|
|
text: 文本内容。
|
|
bold: 是否加粗。
|
|
italic: 是否斜体。
|
|
underline: 是否有下划线。
|
|
strikethrough: 是否有删除线。
|
|
code: 是否渲染为代码样式。
|
|
color: 文本颜色 (e.g., '#ff0000', 'red')。
|
|
font_size: 字体大小 (e.g., 16, '1.2em', '12px')。
|
|
font_family: 字体族。
|
|
"""
|
|
font_size_str = f"{font_size}px" if isinstance(font_size, int) else font_size
|
|
span = TextSpan(
|
|
text=text,
|
|
bold=bold,
|
|
italic=italic,
|
|
underline=underline,
|
|
strikethrough=strikethrough,
|
|
code=code,
|
|
color=color,
|
|
font_size=font_size_str,
|
|
font_family=font_family,
|
|
)
|
|
self._data.spans.append(span)
|
|
return self
|