60537f6e2e
✨新功能 (Features) 智能表单引擎: 新增智能表单填充功能,内置模糊匹配引擎、Mock数据生成器与视觉反馈渲染器。 表单映射与导出: 实现表单映射页面(包含扫描器和高亮器),并支持将配置导出为 JSON 文件,附带 Snackbar 状态提示。 表单识别增强: 增加按域名保存字段类型偏好的功能;添加字段定位闪烁以辅助查找;优化填充逻辑(支持单字段覆盖默认模式);重构 FieldList 组件以提升操作体验。 ♻️ 代码重构 (Refactor) 通用组件提取: 提取并统一应用通用的 PageHeader 组件,移除独立的侧边栏页面及未使用的组件文件。 状态与逻辑优化: 改进 useStorageState 钩子(增加加载状态管理与防抖处理);将二维码解析功能重构为独立模块。 类型与依赖简化: 统一使用 SnackbarOptions 类型;简化假数据生成器中 faker 的导入与使用逻辑。 💄 样式与界面 (Style) UI 细节打磨: 统一各页面头部图标颜色,调整表单输入框与按钮交互样式;优化时间戳页面、结果视图布局(增加圆角、调整内边距/对齐方式);重构存储选项网格及自动刷新开关样式。 代码格式: 优化项目中导入语句的顺序与格式。 👷 持续集成 (CI) 流程提效: 移除 Firefox 测试步骤以减少资源消耗;收紧工作流触发条件,移除 develop 及其变体分支,仅保留 main 分支触发。 📝 文档 (Docs) 代码维护: 补充组件的文档注释与类型导入。
140 lines
3.8 KiB
TypeScript
140 lines
3.8 KiB
TypeScript
import { FormMapEntry } from '@/types/storage';
|
|
|
|
/**
|
|
* 可视化交互模块:负责在网页上绘制非破坏性的高亮遮罩
|
|
*/
|
|
export class VisualHighlighter {
|
|
private canvas: HTMLCanvasElement | null = null;
|
|
private ctx: CanvasRenderingContext2D | null = null;
|
|
private isVisible = false;
|
|
|
|
constructor() {
|
|
this.handleResize = this.handleResize.bind(this);
|
|
}
|
|
|
|
public init() {
|
|
if (this.canvas) return;
|
|
this.canvas = document.createElement('canvas');
|
|
this.canvas.id = 'form-mapping-highlighter';
|
|
Object.assign(this.canvas.style, {
|
|
position: 'fixed',
|
|
top: '0',
|
|
left: '0',
|
|
width: '100vw',
|
|
height: '100vh',
|
|
pointerEvents: 'none',
|
|
zIndex: '2147483647',
|
|
display: 'none',
|
|
});
|
|
document.body.appendChild(this.canvas);
|
|
this.ctx = this.canvas.getContext('2d');
|
|
|
|
window.addEventListener('resize', this.handleResize);
|
|
window.addEventListener('scroll', this.handleResize);
|
|
}
|
|
|
|
public show() {
|
|
if (!this.canvas) this.init();
|
|
this.isVisible = true;
|
|
this.canvas!.style.display = 'block';
|
|
this.handleResize();
|
|
}
|
|
|
|
public hide() {
|
|
this.isVisible = false;
|
|
if (this.canvas) this.canvas.style.display = 'none';
|
|
}
|
|
|
|
private handleResize() {
|
|
if (!this.isVisible || !this.canvas || !this.ctx) return;
|
|
this.canvas.width = window.innerWidth;
|
|
this.canvas.height = window.innerHeight;
|
|
this.draw();
|
|
}
|
|
|
|
/**
|
|
* 核心渲染循环
|
|
*/
|
|
public draw(entries: FormMapEntry[] = []) {
|
|
if (!this.ctx || !this.isVisible) return;
|
|
this.ctx.clearRect(0, 0, this.canvas!.width, this.canvas!.height);
|
|
|
|
entries.forEach((entry) => {
|
|
const el = document.querySelector<HTMLElement>(entry.fingerprint.selector);
|
|
if (!el) return;
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
// 检查元素是否在视口内
|
|
if (
|
|
rect.bottom < 0 ||
|
|
rect.top > window.innerHeight ||
|
|
rect.right < 0 ||
|
|
rect.left > window.innerWidth
|
|
) {
|
|
return;
|
|
}
|
|
|
|
// 设置样式
|
|
if (entry.ui_state.is_selected) {
|
|
// 选中状态:亮黄色边框
|
|
this.ctx!.strokeStyle = '#FFD700';
|
|
this.ctx!.lineWidth = 3;
|
|
this.ctx!.fillStyle = 'rgba(255, 215, 0, 0.2)';
|
|
} else {
|
|
// 未选中状态:浅蓝色半透明
|
|
this.ctx!.strokeStyle = 'rgba(173, 216, 230, 0.8)';
|
|
this.ctx!.lineWidth = 1;
|
|
this.ctx!.fillStyle = 'rgba(173, 216, 230, 0.4)';
|
|
}
|
|
|
|
// 绘制矩形
|
|
this.ctx!.beginPath();
|
|
this.ctx!.rect(rect.left, rect.top, rect.width, rect.height);
|
|
this.ctx!.fill();
|
|
this.ctx!.stroke();
|
|
|
|
// 如果被选中,绘制一个小标签
|
|
if (entry.ui_state.is_selected) {
|
|
this.ctx!.fillStyle = '#FFD700';
|
|
this.ctx!.font = '12px sans-serif';
|
|
this.ctx!.fillText(entry.label_display, rect.left, rect.top - 5);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 开启拾取模式:拦截点击事件
|
|
*/
|
|
public enablePicker(onPick: (element: HTMLElement) => void) {
|
|
if (!this.canvas) this.init();
|
|
this.canvas!.style.pointerEvents = 'auto';
|
|
this.canvas!.style.cursor = 'crosshair';
|
|
|
|
const handleClick = (e: MouseEvent) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
// 暂时禁用 canvas pointer-events 以便探测下方的真实元素
|
|
this.canvas!.style.pointerEvents = 'none';
|
|
const el = document.elementFromPoint(e.clientX, e.clientY) as HTMLElement;
|
|
this.canvas!.style.pointerEvents = 'auto';
|
|
|
|
if (el) {
|
|
onPick(el);
|
|
}
|
|
};
|
|
|
|
this.canvas!.addEventListener('click', handleClick, { capture: true, once: true });
|
|
}
|
|
|
|
public disablePicker() {
|
|
if (this.canvas) {
|
|
this.canvas.style.pointerEvents = 'none';
|
|
this.canvas.style.cursor = 'default';
|
|
}
|
|
}
|
|
}
|
|
|
|
export const highlighter = new VisualHighlighter();
|