init
This commit is contained in:
310
js/editor/editor.js
Normal file
310
js/editor/editor.js
Normal file
@@ -0,0 +1,310 @@
|
||||
/**
|
||||
* IoT 可视化编辑器初始化脚本
|
||||
* 仅支持手机端布局
|
||||
*/
|
||||
|
||||
// 初始化编辑器
|
||||
function initEditor() {
|
||||
// 初始化 webbuilder
|
||||
webbuilder.init('#editor');
|
||||
|
||||
// 注册示例组件
|
||||
registerComponents();
|
||||
|
||||
// 绑定事件
|
||||
bindEvents();
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册示例组件
|
||||
*/
|
||||
function registerComponents() {
|
||||
// 仪表盘组件
|
||||
webbuilder.define('gauge', {
|
||||
type: 'gauge',
|
||||
label: '仪表盘',
|
||||
icon: '📊',
|
||||
defaultColumnSpan: 6,
|
||||
defaultRowSpan: 6,
|
||||
defaultProps: {
|
||||
label: '温度',
|
||||
value: 25,
|
||||
unit: '°C'
|
||||
},
|
||||
traits: [
|
||||
{ type: 'text', name: 'label', label: '标签', default: '温度' },
|
||||
{ type: 'number', name: 'value', label: '值', default: 25 },
|
||||
{ type: 'text', name: 'unit', label: '单位', default: '°C' }
|
||||
],
|
||||
render: function(props) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'iot-gauge';
|
||||
|
||||
var valueEl = document.createElement('div');
|
||||
valueEl.className = 'value';
|
||||
valueEl.textContent = props.value + props.unit;
|
||||
|
||||
var labelEl = document.createElement('div');
|
||||
labelEl.className = 'label';
|
||||
labelEl.textContent = props.label;
|
||||
|
||||
el.appendChild(valueEl);
|
||||
el.appendChild(labelEl);
|
||||
|
||||
return el;
|
||||
}
|
||||
});
|
||||
|
||||
// 开关组件
|
||||
webbuilder.define('switch', {
|
||||
type: 'switch',
|
||||
label: '开关',
|
||||
icon: '🔘',
|
||||
defaultColumnSpan: 4,
|
||||
defaultRowSpan: 3,
|
||||
defaultProps: {
|
||||
label: '开关',
|
||||
state: false
|
||||
},
|
||||
traits: [
|
||||
{ type: 'text', name: 'label', label: '标签', default: '开关' },
|
||||
{ type: 'checkbox', name: 'state', label: '状态', default: false }
|
||||
],
|
||||
render: function(props) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'iot-switch';
|
||||
|
||||
var switchEl = document.createElement('div');
|
||||
switchEl.className = 'switch' + (props.state ? ' active' : '');
|
||||
|
||||
var labelEl = document.createElement('div');
|
||||
labelEl.className = 'label';
|
||||
labelEl.textContent = props.label;
|
||||
|
||||
el.appendChild(switchEl);
|
||||
el.appendChild(labelEl);
|
||||
|
||||
return el;
|
||||
}
|
||||
});
|
||||
|
||||
// 滑块组件
|
||||
webbuilder.define('slider', {
|
||||
type: 'slider',
|
||||
label: '滑块',
|
||||
icon: '🎚️',
|
||||
defaultColumnSpan: 8,
|
||||
defaultRowSpan: 3,
|
||||
defaultProps: {
|
||||
label: '亮度',
|
||||
value: 50,
|
||||
min: 0,
|
||||
max: 100
|
||||
},
|
||||
traits: [
|
||||
{ type: 'text', name: 'label', label: '标签', default: '亮度' },
|
||||
{ type: 'number', name: 'value', label: '值', default: 50 },
|
||||
{ type: 'number', name: 'min', label: '最小值', default: 0 },
|
||||
{ type: 'number', name: 'max', label: '最大值', default: 100 }
|
||||
],
|
||||
render: function(props) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'iot-slider';
|
||||
|
||||
var labelEl = document.createElement('div');
|
||||
labelEl.className = 'label';
|
||||
labelEl.textContent = props.label + ': ' + props.value;
|
||||
|
||||
var inputEl = document.createElement('input');
|
||||
inputEl.type = 'range';
|
||||
inputEl.min = props.min;
|
||||
inputEl.max = props.max;
|
||||
inputEl.value = props.value;
|
||||
|
||||
el.appendChild(labelEl);
|
||||
el.appendChild(inputEl);
|
||||
|
||||
return el;
|
||||
}
|
||||
});
|
||||
|
||||
// 按钮组件
|
||||
webbuilder.define('button', {
|
||||
type: 'button',
|
||||
label: '按钮',
|
||||
icon: '🔘',
|
||||
defaultColumnSpan: 4,
|
||||
defaultRowSpan: 2,
|
||||
defaultProps: {
|
||||
text: '点击'
|
||||
},
|
||||
traits: [
|
||||
{ type: 'text', name: 'text', label: '文本', default: '点击' }
|
||||
],
|
||||
render: function(props) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'iot-button';
|
||||
el.textContent = props.text;
|
||||
return el;
|
||||
}
|
||||
});
|
||||
|
||||
// 数值显示组件
|
||||
webbuilder.define('value-display', {
|
||||
type: 'value-display',
|
||||
label: '数值显示',
|
||||
icon: '📈',
|
||||
defaultColumnSpan: 4,
|
||||
defaultRowSpan: 3,
|
||||
defaultProps: {
|
||||
label: '湿度',
|
||||
value: 65,
|
||||
unit: '%'
|
||||
},
|
||||
traits: [
|
||||
{ type: 'text', name: 'label', label: '标签', default: '湿度' },
|
||||
{ type: 'number', name: 'value', label: '值', default: 65 },
|
||||
{ type: 'text', name: 'unit', label: '单位', default: '%' }
|
||||
],
|
||||
render: function(props) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'iot-value-display';
|
||||
|
||||
var valueEl = document.createElement('div');
|
||||
valueEl.className = 'value';
|
||||
valueEl.textContent = props.value + props.unit;
|
||||
|
||||
var labelEl = document.createElement('div');
|
||||
labelEl.className = 'label';
|
||||
labelEl.textContent = props.label;
|
||||
|
||||
el.appendChild(valueEl);
|
||||
el.appendChild(labelEl);
|
||||
|
||||
return el;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 绑定事件
|
||||
*/
|
||||
function bindEvents() {
|
||||
// 保存 JSONB
|
||||
document.getElementById('btn-save').addEventListener('click', function() {
|
||||
var jsonb = webbuilder.toJSONB();
|
||||
var jsonStr = JSON.stringify(jsonb, null, 2);
|
||||
downloadFile('canvas-config.json', jsonStr, 'application/json');
|
||||
});
|
||||
|
||||
// 加载 JSONB
|
||||
document.getElementById('btn-load').addEventListener('click', function() {
|
||||
document.getElementById('file-input').click();
|
||||
});
|
||||
|
||||
document.getElementById('file-input').addEventListener('change', function(e) {
|
||||
var file = e.target.files[0];
|
||||
if (!file) return;
|
||||
|
||||
var reader = new FileReader();
|
||||
reader.onload = function(e) {
|
||||
try {
|
||||
var jsonb = JSON.parse(e.target.result);
|
||||
webbuilder.fromJSONB(jsonb);
|
||||
} catch (err) {
|
||||
alert('加载失败:' + err.message);
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
|
||||
// 清空文件输入
|
||||
this.value = '';
|
||||
});
|
||||
|
||||
// 导出 HTML
|
||||
document.getElementById('btn-export').addEventListener('click', function() {
|
||||
// 创建一个临时 div 来渲染
|
||||
var tempDiv = document.createElement('div');
|
||||
document.body.appendChild(tempDiv);
|
||||
|
||||
// 调用 renderToDiv 获取组件列表
|
||||
var components = webbuilder.renderToDiv(tempDiv);
|
||||
|
||||
// 生成 HTML
|
||||
var config = webbuilder.getCanvasConfig();
|
||||
var html = '<!DOCTYPE html>\n<html>\n<head>\n<meta charset="UTF-8">\n';
|
||||
html += '<meta name="viewport" content="width=device-width, initial-scale=1.0">\n';
|
||||
html += '<title>IoT 仪表盘</title>\n';
|
||||
html += '<style>\n';
|
||||
html += '* { margin: 0; padding: 0; box-sizing: border-box; }\n';
|
||||
html += 'body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f0f2f5; }\n';
|
||||
html += '.iot-canvas { width: ' + config.width + 'px; height: ' + config.height + 'px; ';
|
||||
html += 'display: grid; grid-template-columns: repeat(' + config.columns + ', ' + config.cellSize + 'px); ';
|
||||
html += 'grid-auto-rows: ' + config.cellSize + 'px; gap: ' + config.gap + 'px; ';
|
||||
html += 'background: ' + config.background + '; padding: ' + config.gap + 'px; box-sizing: border-box; }\n';
|
||||
html += '</style>\n</head>\n<body>\n';
|
||||
html += tempDiv.outerHTML;
|
||||
html += '\n<script>\n';
|
||||
html += '// 组件列表(包含每个组件的元素和属性)\n';
|
||||
html += 'var components = ' + JSON.stringify(components.map(function(c) {
|
||||
return { id: c.id, type: c.type, props: c.props };
|
||||
}), null, 2) + ';\n';
|
||||
html += '</script>\n';
|
||||
html += '</body>\n</html>';
|
||||
|
||||
// 移除临时 div
|
||||
document.body.removeChild(tempDiv);
|
||||
|
||||
showPreview(html);
|
||||
});
|
||||
|
||||
// 清空画布
|
||||
document.getElementById('btn-clear').addEventListener('click', function() {
|
||||
if (confirm('确定要清空画布吗?')) {
|
||||
webbuilder.clear();
|
||||
}
|
||||
});
|
||||
|
||||
// 预览弹窗关闭
|
||||
document.querySelector('.modal-close').addEventListener('click', function() {
|
||||
document.getElementById('preview-modal').style.display = 'none';
|
||||
});
|
||||
|
||||
// 复制代码
|
||||
document.getElementById('btn-copy').addEventListener('click', function() {
|
||||
var code = document.getElementById('preview-code').textContent;
|
||||
navigator.clipboard.writeText(code).then(function() {
|
||||
alert('已复制到剪贴板');
|
||||
});
|
||||
});
|
||||
|
||||
// 下载文件
|
||||
document.getElementById('btn-download').addEventListener('click', function() {
|
||||
var code = document.getElementById('preview-code').textContent;
|
||||
downloadFile('page.html', code, 'text/html');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示预览弹窗
|
||||
*/
|
||||
function showPreview(code) {
|
||||
document.getElementById('preview-code').textContent = code;
|
||||
document.getElementById('preview-modal').style.display = 'flex';
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载文件
|
||||
*/
|
||||
function downloadFile(filename, content, type) {
|
||||
var blob = new Blob([content], { type: type });
|
||||
var url = URL.createObjectURL(blob);
|
||||
var a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = filename;
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
}
|
||||
|
||||
// 页面加载完成后初始化
|
||||
document.addEventListener('DOMContentLoaded', initEditor);
|
||||
57
js/lib/webbuilder/types/BuilderContainer.js
Normal file
57
js/lib/webbuilder/types/BuilderContainer.js
Normal file
@@ -0,0 +1,57 @@
|
||||
class BuilderContainer {
|
||||
constructor(containerElQuery) {
|
||||
// Set element from query
|
||||
this.el = document.querySelector(containerElQuery);
|
||||
|
||||
// Check if not found
|
||||
if (this.el === undefined) {
|
||||
throw new Error('Container element cannot be undefined');
|
||||
}
|
||||
// Define drop area
|
||||
else {
|
||||
var dropTarget = undefined;
|
||||
|
||||
// When component over
|
||||
this.el.addEventListener('dragover', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
dropTarget = e.target;
|
||||
if (dropTarget.hasAttribute('root') || dropTarget.hasAttribute('container'))
|
||||
dropTarget.setAttribute('dropping', true);
|
||||
}, false);
|
||||
|
||||
// When component leaves
|
||||
var dragleave = function (e) {
|
||||
e.preventDefault();
|
||||
if (dropTarget && dropTarget.hasAttribute('dropping'))
|
||||
dropTarget.removeAttribute('dropping');
|
||||
}
|
||||
this.el.addEventListener('dragleave', dragleave, false);
|
||||
this.el.addEventListener('dragend', dragleave, false);
|
||||
|
||||
// When component being dropped
|
||||
this.el.addEventListener('drop', function(e) {
|
||||
dragleave(e);
|
||||
|
||||
// Get dragged
|
||||
var draggedEl = webbuilder.draggingComponent;
|
||||
if (!draggedEl) return;
|
||||
|
||||
var componentName = draggedEl.getAttribute('component-name');
|
||||
var component = webbuilder.findComponent(componentName);
|
||||
|
||||
// Get drop area
|
||||
var dropareaEl = e.target;
|
||||
|
||||
// If drop area == root container
|
||||
// Or == container component
|
||||
if (dropareaEl.hasAttribute('root') || dropareaEl.hasAttribute('container')) {
|
||||
// Produce
|
||||
dropareaEl.appendChild(component.produceRealEl());
|
||||
}
|
||||
|
||||
dropTarget = undefined;
|
||||
}, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
30
js/lib/webbuilder/types/BuilderToolbox.js
Normal file
30
js/lib/webbuilder/types/BuilderToolbox.js
Normal file
@@ -0,0 +1,30 @@
|
||||
class BuilderToolbox {
|
||||
constructor(toolboxElQuery, options) {
|
||||
// Set element from query
|
||||
this.el = document.querySelector(toolboxElQuery);
|
||||
|
||||
// Check if not found
|
||||
if (this.el === undefined) {
|
||||
throw new Error('Toolbox element cannot be undefined');
|
||||
}
|
||||
}
|
||||
|
||||
// Add component to toolbox
|
||||
addItem(component) {
|
||||
// Add draggable component
|
||||
this.el.appendChild(component.produceDraggableEl());
|
||||
}
|
||||
|
||||
// Remove component from toolbox
|
||||
removeItem(component_name) {
|
||||
// Find component
|
||||
let componentEl = this.el.querySelector(`[component-name="${component_name}"]`);
|
||||
// Remove component (if found)
|
||||
if (componentEl !== undefined) componentEl.remove();
|
||||
}
|
||||
|
||||
// Clear all components in toolbox
|
||||
clearItems() {
|
||||
this.el.innerHTML = '';
|
||||
}
|
||||
}
|
||||
71
js/lib/webbuilder/types/Component.js
Normal file
71
js/lib/webbuilder/types/Component.js
Normal file
@@ -0,0 +1,71 @@
|
||||
class ComponentConfig {
|
||||
constructor(canDropOn = {}) {
|
||||
this.canDropOn = canDropOn;
|
||||
}
|
||||
}
|
||||
|
||||
class Component {
|
||||
constructor(name, type, template, config = new ComponentConfig()) {
|
||||
if (name !== undefined && type !== undefined && template !== undefined) {
|
||||
this.name = name;
|
||||
this.type = type;
|
||||
this.template = template;
|
||||
} else {
|
||||
throw new Error('Unspecified component name or type or template');
|
||||
}
|
||||
}
|
||||
|
||||
// Produce draggable element of this component
|
||||
produceDraggableEl() {
|
||||
// Create div
|
||||
let el = document.createElement('div');
|
||||
el.setAttribute('class', 'component-template');
|
||||
el.setAttribute('component-name', this.name);
|
||||
el.setAttribute('component-type', this.type);
|
||||
// Make it draggable
|
||||
el.setAttribute('draggable', true);
|
||||
el.setAttribute('dragging', false);
|
||||
|
||||
el.addEventListener('dragstart', function(e) {
|
||||
if (webbuilder.draggingComponent == undefined) {
|
||||
webbuilder.draggingComponent = this;
|
||||
webbuilder.draggingComponent.setAttribute('dragging', true);
|
||||
}
|
||||
}, false);
|
||||
|
||||
el.addEventListener('dragend', function(e) {
|
||||
e.preventDefault();
|
||||
if (webbuilder.draggingComponent != undefined) {
|
||||
webbuilder.draggingComponent.setAttribute('dragging', false);
|
||||
webbuilder.draggingComponent = undefined;
|
||||
}
|
||||
}, false);
|
||||
|
||||
// Assign html template to inner
|
||||
el.innerHTML = this.template;
|
||||
return el;
|
||||
}
|
||||
|
||||
produceRealEl() {
|
||||
// Create temp element
|
||||
var tempEl = document.createElement('template');
|
||||
// Set template code as inner
|
||||
tempEl.insertAdjacentHTML('afterbegin', this.template);
|
||||
|
||||
if (this.type == 'element') {
|
||||
// Return template code in inner as element
|
||||
return tempEl.firstElementChild;
|
||||
} else if (this.type == 'container') {
|
||||
// Return template code, with container attr set to true
|
||||
tempEl = tempEl.firstElementChild;
|
||||
tempEl.setAttribute('container', '');
|
||||
return tempEl;
|
||||
} else {
|
||||
throw new Error('Unknown component type, unable to produce element');
|
||||
}
|
||||
}
|
||||
|
||||
canDropOn(el) {
|
||||
// 暂未实现
|
||||
}
|
||||
}
|
||||
753
js/lib/webbuilder/webbuilder.js
Normal file
753
js/lib/webbuilder/webbuilder.js
Normal file
@@ -0,0 +1,753 @@
|
||||
/**
|
||||
* WebBuilder - IoT 可视化编辑器
|
||||
* 仅支持手机端布局
|
||||
* 单元格比例 1:1(正方形)
|
||||
*/
|
||||
|
||||
var webbuilder = {
|
||||
// 编辑器容器
|
||||
container: null,
|
||||
|
||||
// 手机画布配置
|
||||
phoneConfig: {
|
||||
width: 375,
|
||||
height: 812,
|
||||
columns: 24,
|
||||
gap: 2,
|
||||
background: '#f5f5f5'
|
||||
},
|
||||
|
||||
// 计算得出的单元格大小(1:1比例)
|
||||
cellSize: 0,
|
||||
rows: 0,
|
||||
|
||||
// 已注册的组件类型
|
||||
componentTypes: {},
|
||||
|
||||
// 画布上的组件实例
|
||||
componentInstances: [],
|
||||
|
||||
// 当前选中的组件
|
||||
selectedComponent: null,
|
||||
|
||||
// 拖拽状态
|
||||
draggingComponent: null,
|
||||
draggingType: null,
|
||||
|
||||
// 唯一ID计数器
|
||||
idCounter: 0,
|
||||
|
||||
/**
|
||||
* 计算单元格大小和行数
|
||||
*/
|
||||
_calculateGrid: function() {
|
||||
var config = this.phoneConfig;
|
||||
|
||||
// 计算列宽(单元格大小)
|
||||
// 列宽 = (画布宽度 - (列数 + 1) * gap) / 列数
|
||||
this.cellSize = (config.width - (config.columns + 1) * config.gap) / config.columns;
|
||||
|
||||
// 计算行数
|
||||
// 画布高度 = 行数 * 单元格大小 + (行数 + 1) * gap
|
||||
// 812 = 行数 * cellSize + (行数 + 1) * gap
|
||||
// 812 = 行数 * cellSize + 行数 * gap + gap
|
||||
// 812 - gap = 行数 * (cellSize + gap)
|
||||
// 行数 = (812 - gap) / (cellSize + gap)
|
||||
this.rows = Math.floor((config.height - config.gap) / (this.cellSize + config.gap));
|
||||
|
||||
// 调整画布高度以精确适配行数
|
||||
this.phoneConfig.height = this.rows * this.cellSize + (this.rows + 1) * config.gap;
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化编辑器
|
||||
* @param {string|HTMLElement} containerSelector - 容器选择器或元素
|
||||
*/
|
||||
init: function(containerSelector) {
|
||||
// 获取容器元素
|
||||
if (typeof containerSelector === 'string') {
|
||||
this.container = document.querySelector(containerSelector);
|
||||
} else {
|
||||
this.container = containerSelector;
|
||||
}
|
||||
|
||||
if (!this.container) {
|
||||
throw new Error('Container element not found');
|
||||
}
|
||||
|
||||
// 计算网格
|
||||
this._calculateGrid();
|
||||
|
||||
// 创建编辑器结构
|
||||
this._createEditorStructure();
|
||||
|
||||
// 初始化画布
|
||||
this._initCanvas();
|
||||
|
||||
// 初始化工具箱
|
||||
this._initToolbox();
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* 创建编辑器结构
|
||||
*/
|
||||
_createEditorStructure: function() {
|
||||
this.container.innerHTML = '';
|
||||
this.container.classList.add('webbuilder-editor');
|
||||
|
||||
// 工具箱容器
|
||||
this.toolboxEl = document.createElement('div');
|
||||
this.toolboxEl.className = 'webbuilder-toolbox';
|
||||
this.container.appendChild(this.toolboxEl);
|
||||
|
||||
// 画布容器
|
||||
this.canvasWrapperEl = document.createElement('div');
|
||||
this.canvasWrapperEl.className = 'webbuilder-canvas-wrapper';
|
||||
this.container.appendChild(this.canvasWrapperEl);
|
||||
|
||||
// 属性面板容器
|
||||
this.propertyPanelEl = document.createElement('div');
|
||||
this.propertyPanelEl.className = 'webbuilder-property-panel';
|
||||
this.container.appendChild(this.propertyPanelEl);
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化画布
|
||||
*/
|
||||
_initCanvas: function() {
|
||||
var config = this.phoneConfig;
|
||||
|
||||
// 创建画布
|
||||
this.canvasEl = document.createElement('div');
|
||||
this.canvasEl.className = 'webbuilder-canvas';
|
||||
this.canvasEl.style.width = config.width + 'px';
|
||||
this.canvasEl.style.height = config.height + 'px';
|
||||
this.canvasEl.style.display = 'grid';
|
||||
this.canvasEl.style.gridTemplateColumns = 'repeat(' + config.columns + ', ' + this.cellSize + 'px)';
|
||||
this.canvasEl.style.gridAutoRows = this.cellSize + 'px';
|
||||
this.canvasEl.style.gap = config.gap + 'px';
|
||||
this.canvasEl.style.background = config.background;
|
||||
this.canvasEl.style.position = 'relative';
|
||||
this.canvasEl.style.padding = config.gap + 'px';
|
||||
this.canvasEl.style.boxSizing = 'border-box';
|
||||
this.canvasWrapperEl.appendChild(this.canvasEl);
|
||||
|
||||
// 画布点击取消选中
|
||||
var self = this;
|
||||
this.canvasEl.addEventListener('click', function(e) {
|
||||
if (e.target === self.canvasEl) {
|
||||
self._deselectAll();
|
||||
}
|
||||
});
|
||||
|
||||
// 拖放事件
|
||||
this.canvasEl.addEventListener('dragover', function(e) {
|
||||
e.preventDefault();
|
||||
self.canvasEl.classList.add('dropping');
|
||||
});
|
||||
|
||||
this.canvasEl.addEventListener('dragleave', function(e) {
|
||||
self.canvasEl.classList.remove('dropping');
|
||||
});
|
||||
|
||||
this.canvasEl.addEventListener('drop', function(e) {
|
||||
e.preventDefault();
|
||||
self.canvasEl.classList.remove('dropping');
|
||||
|
||||
if (self.draggingType) {
|
||||
// 从工具箱拖入新组件
|
||||
var gridPos = self._calculateGridPosition(e);
|
||||
self._addComponentToCanvas(self.draggingType, gridPos);
|
||||
self.draggingType = null;
|
||||
} else if (self.draggingComponent) {
|
||||
// 在画布上移动组件
|
||||
var gridPos = self._calculateGridPosition(e);
|
||||
self._moveComponent(self.draggingComponent, gridPos);
|
||||
self.draggingComponent = null;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化工具箱
|
||||
*/
|
||||
_initToolbox: function() {
|
||||
this.toolboxEl.innerHTML = '<div class="webbuilder-toolbox-title">组件库</div>';
|
||||
this.toolboxListEl = document.createElement('div');
|
||||
this.toolboxListEl.className = 'webbuilder-toolbox-list';
|
||||
this.toolboxEl.appendChild(this.toolboxListEl);
|
||||
},
|
||||
|
||||
/**
|
||||
* 计算网格位置
|
||||
*/
|
||||
_calculateGridPosition: function(e) {
|
||||
var rect = this.canvasEl.getBoundingClientRect();
|
||||
var config = this.phoneConfig;
|
||||
|
||||
// 计算鼠标相对于画布的位置
|
||||
var x = e.clientX - rect.left - config.gap;
|
||||
var y = e.clientY - rect.top - config.gap;
|
||||
|
||||
// 计算列和行
|
||||
var col = Math.floor(x / (this.cellSize + config.gap)) + 1;
|
||||
var row = Math.floor(y / (this.cellSize + config.gap)) + 1;
|
||||
|
||||
// 边界约束
|
||||
col = Math.max(1, Math.min(config.columns, col));
|
||||
row = Math.max(1, Math.min(this.rows, row));
|
||||
|
||||
return { column: col, row: row };
|
||||
},
|
||||
|
||||
/**
|
||||
* 添加组件到画布
|
||||
*/
|
||||
_addComponentToCanvas: function(componentType, gridPos) {
|
||||
var typeDef = this.componentTypes[componentType];
|
||||
if (!typeDef) {
|
||||
console.error('Component type not found:', componentType);
|
||||
return;
|
||||
}
|
||||
|
||||
// 生成唯一ID
|
||||
var id = componentType + '-' + (++this.idCounter);
|
||||
|
||||
// 计算 startCell
|
||||
var startCell = (gridPos.row - 1) * this.phoneConfig.columns + (gridPos.column - 1);
|
||||
|
||||
// 创建组件实例
|
||||
var instance = {
|
||||
id: id,
|
||||
type: componentType,
|
||||
grid: {
|
||||
startCell: startCell,
|
||||
colSpan: typeDef.defaultColumnSpan || 6,
|
||||
rowSpan: typeDef.defaultRowSpan || 4
|
||||
},
|
||||
props: JSON.parse(JSON.stringify(typeDef.defaultProps || {}))
|
||||
};
|
||||
|
||||
// 渲染组件
|
||||
this._renderComponent(instance);
|
||||
|
||||
// 添加到实例列表
|
||||
this.componentInstances.push(instance);
|
||||
|
||||
// 选中新添加的组件
|
||||
this._selectComponent(instance.id);
|
||||
},
|
||||
|
||||
/**
|
||||
* 渲染组件到画布(编辑器内部使用)
|
||||
*/
|
||||
_renderComponent: function(instance) {
|
||||
var typeDef = this.componentTypes[instance.type];
|
||||
if (!typeDef) return;
|
||||
|
||||
// 计算行列位置
|
||||
var columns = this.phoneConfig.columns;
|
||||
var startCol = instance.grid.startCell % columns;
|
||||
var startRow = Math.floor(instance.grid.startCell / columns);
|
||||
|
||||
// 边界约束
|
||||
var colSpan = Math.min(instance.grid.colSpan, columns - startCol);
|
||||
var rowSpan = instance.grid.rowSpan;
|
||||
|
||||
// 创建组件容器元素
|
||||
var el = document.createElement('div');
|
||||
el.className = 'webbuilder-component';
|
||||
el.setAttribute('data-id', instance.id);
|
||||
el.setAttribute('data-type', instance.type);
|
||||
el.style.gridColumn = (startCol + 1) + ' / span ' + colSpan;
|
||||
el.style.gridRow = (startRow + 1) + ' / span ' + rowSpan;
|
||||
el.style.position = 'relative';
|
||||
el.style.overflow = 'hidden';
|
||||
|
||||
// 渲染组件内容 - render 函数返回 HTML 元素对象
|
||||
if (typeDef.render) {
|
||||
var content = typeDef.render(instance.props);
|
||||
// 如果返回的是字符串,保持兼容
|
||||
if (typeof content === 'string') {
|
||||
el.innerHTML = content;
|
||||
} else if (content instanceof HTMLElement) {
|
||||
// 如果返回的是 DOM 元素,直接添加
|
||||
el.appendChild(content);
|
||||
}
|
||||
}
|
||||
|
||||
// 使组件可拖拽
|
||||
var self = this;
|
||||
el.setAttribute('draggable', true);
|
||||
el.addEventListener('dragstart', function(e) {
|
||||
e.stopPropagation();
|
||||
self.draggingComponent = instance.id;
|
||||
el.style.opacity = '0.5';
|
||||
});
|
||||
el.addEventListener('dragend', function(e) {
|
||||
el.style.opacity = '1';
|
||||
self.draggingComponent = null;
|
||||
});
|
||||
|
||||
// 点击选中
|
||||
el.addEventListener('click', function(e) {
|
||||
e.stopPropagation();
|
||||
self._selectComponent(instance.id);
|
||||
});
|
||||
|
||||
// 存储元素引用
|
||||
instance.element = el;
|
||||
|
||||
// 添加到画布
|
||||
this.canvasEl.appendChild(el);
|
||||
},
|
||||
|
||||
/**
|
||||
* 将组件渲染到指定的 div 容器
|
||||
* @param {HTMLElement} container - 目标容器
|
||||
* @returns {Array} 组件列表,每个元素包含 { element, props, id, type }
|
||||
*/
|
||||
renderToDiv: function(container) {
|
||||
var self = this;
|
||||
var result = [];
|
||||
|
||||
// 清空容器
|
||||
container.innerHTML = '';
|
||||
|
||||
// 创建画布样式
|
||||
container.style.width = this.phoneConfig.width + 'px';
|
||||
container.style.height = this.phoneConfig.height + 'px';
|
||||
container.style.display = 'grid';
|
||||
container.style.gridTemplateColumns = 'repeat(' + this.phoneConfig.columns + ', ' + this.cellSize + 'px)';
|
||||
container.style.gridAutoRows = this.cellSize + 'px';
|
||||
container.style.gap = this.phoneConfig.gap + 'px';
|
||||
container.style.background = this.phoneConfig.background;
|
||||
container.style.padding = this.phoneConfig.gap + 'px';
|
||||
container.style.boxSizing = 'border-box';
|
||||
|
||||
var columns = this.phoneConfig.columns;
|
||||
|
||||
// 遍历所有组件实例
|
||||
this.componentInstances.forEach(function(instance) {
|
||||
var typeDef = self.componentTypes[instance.type];
|
||||
if (!typeDef || !typeDef.render) return;
|
||||
|
||||
// 计算行列位置
|
||||
var startCol = instance.grid.startCell % columns;
|
||||
var startRow = Math.floor(instance.grid.startCell / columns);
|
||||
var colSpan = Math.min(instance.grid.colSpan, columns - startCol);
|
||||
var rowSpan = instance.grid.rowSpan;
|
||||
|
||||
// 创建组件容器
|
||||
var wrapper = document.createElement('div');
|
||||
wrapper.style.gridColumn = (startCol + 1) + ' / span ' + colSpan;
|
||||
wrapper.style.gridRow = (startRow + 1) + ' / span ' + rowSpan;
|
||||
wrapper.style.overflow = 'hidden';
|
||||
|
||||
// 调用 render 函数获取组件元素
|
||||
var componentElement = typeDef.render(instance.props);
|
||||
|
||||
// 如果返回的是字符串,保持兼容
|
||||
if (typeof componentElement === 'string') {
|
||||
wrapper.innerHTML = componentElement;
|
||||
componentElement = wrapper.firstChild;
|
||||
} else if (componentElement instanceof HTMLElement) {
|
||||
wrapper.appendChild(componentElement);
|
||||
}
|
||||
|
||||
// 添加到容器
|
||||
container.appendChild(wrapper);
|
||||
|
||||
// 添加到结果列表
|
||||
result.push({
|
||||
element: componentElement, // 控件本身的 HTML 元素对象
|
||||
wrapper: wrapper, // 包装容器
|
||||
props: JSON.parse(JSON.stringify(instance.props)), // 自定义组件属性(深拷贝)
|
||||
id: instance.id,
|
||||
type: instance.type
|
||||
});
|
||||
});
|
||||
|
||||
return result;
|
||||
},
|
||||
|
||||
/**
|
||||
* 移动组件
|
||||
*/
|
||||
_moveComponent: function(componentId, gridPos) {
|
||||
var instance = this._findInstance(componentId);
|
||||
if (!instance) return;
|
||||
|
||||
// 更新 startCell
|
||||
instance.grid.startCell = (gridPos.row - 1) * this.phoneConfig.columns + (gridPos.column - 1);
|
||||
|
||||
// 重新计算行列位置
|
||||
var columns = this.phoneConfig.columns;
|
||||
var startCol = instance.grid.startCell % columns;
|
||||
var startRow = Math.floor(instance.grid.startCell / columns);
|
||||
var colSpan = Math.min(instance.grid.colSpan, columns - startCol);
|
||||
|
||||
// 更新样式
|
||||
instance.element.style.gridColumn = (startCol + 1) + ' / span ' + colSpan;
|
||||
instance.element.style.gridRow = (startRow + 1) + ' / span ' + instance.grid.rowSpan;
|
||||
|
||||
// 更新属性面板
|
||||
if (this.selectedComponent === componentId) {
|
||||
this._showPropertyPanel(instance);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 选中组件
|
||||
*/
|
||||
_selectComponent: function(componentId) {
|
||||
// 取消之前的选中
|
||||
this._deselectAll();
|
||||
|
||||
var instance = this._findInstance(componentId);
|
||||
if (!instance) return;
|
||||
|
||||
this.selectedComponent = componentId;
|
||||
instance.element.classList.add('selected');
|
||||
|
||||
// 显示属性面板
|
||||
this._showPropertyPanel(instance);
|
||||
},
|
||||
|
||||
/**
|
||||
* 取消所有选中
|
||||
*/
|
||||
_deselectAll: function() {
|
||||
this.selectedComponent = null;
|
||||
var selected = this.canvasEl.querySelectorAll('.selected');
|
||||
selected.forEach(function(el) {
|
||||
el.classList.remove('selected');
|
||||
});
|
||||
this.propertyPanelEl.innerHTML = '';
|
||||
},
|
||||
|
||||
/**
|
||||
* 显示属性面板
|
||||
*/
|
||||
_showPropertyPanel: function(instance) {
|
||||
var typeDef = this.componentTypes[instance.type];
|
||||
var self = this;
|
||||
var columns = this.phoneConfig.columns;
|
||||
|
||||
// 计算当前行列
|
||||
var startCol = instance.grid.startCell % columns;
|
||||
var startRow = Math.floor(instance.grid.startCell / columns);
|
||||
|
||||
var html = '<div class="property-title">' + (typeDef.label || instance.type) + '</div>';
|
||||
|
||||
// 基础属性
|
||||
html += '<div class="property-section">';
|
||||
html += '<div class="property-section-title">位置大小</div>';
|
||||
html += '<div class="property-row"><label>起始列:</label><input type="number" data-prop="startCol" value="' + (startCol + 1) + '" min="1" max="' + columns + '"></div>';
|
||||
html += '<div class="property-row"><label>起始行:</label><input type="number" data-prop="startRow" value="' + (startRow + 1) + '" min="1"></div>';
|
||||
html += '<div class="property-row"><label>跨列数:</label><input type="number" data-prop="colSpan" value="' + instance.grid.colSpan + '" min="1" max="' + columns + '"></div>';
|
||||
html += '<div class="property-row"><label>跨行数:</label><input type="number" data-prop="rowSpan" value="' + instance.grid.rowSpan + '" min="1"></div>';
|
||||
html += '</div>';
|
||||
|
||||
// 自定义属性
|
||||
if (typeDef.traits && typeDef.traits.length > 0) {
|
||||
html += '<div class="property-section">';
|
||||
html += '<div class="property-section-title">组件属性</div>';
|
||||
typeDef.traits.forEach(function(trait) {
|
||||
var value = instance.props[trait.name] !== undefined ? instance.props[trait.name] : (trait.default || '');
|
||||
html += '<div class="property-row">';
|
||||
html += '<label>' + trait.label + ':</label>';
|
||||
if (trait.type === 'number') {
|
||||
html += '<input type="number" data-trait="' + trait.name + '" value="' + value + '">';
|
||||
} else if (trait.type === 'checkbox') {
|
||||
html += '<input type="checkbox" data-trait="' + trait.name + '"' + (value ? ' checked' : '') + '>';
|
||||
} else {
|
||||
html += '<input type="text" data-trait="' + trait.name + '" value="' + value + '">';
|
||||
}
|
||||
html += '</div>';
|
||||
});
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
// 删除按钮
|
||||
html += '<div class="property-section">';
|
||||
html += '<button class="btn-delete" data-action="delete">删除组件</button>';
|
||||
html += '</div>';
|
||||
|
||||
this.propertyPanelEl.innerHTML = html;
|
||||
|
||||
// 绑定事件
|
||||
this.propertyPanelEl.querySelectorAll('input').forEach(function(input) {
|
||||
input.addEventListener('change', function() {
|
||||
var prop = input.getAttribute('data-prop');
|
||||
var trait = input.getAttribute('data-trait');
|
||||
|
||||
if (prop) {
|
||||
// 更新网格位置
|
||||
var value = parseInt(input.value) || 1;
|
||||
if (prop === 'startCol') {
|
||||
var currentRow = Math.floor(instance.grid.startCell / columns);
|
||||
instance.grid.startCell = currentRow * columns + (value - 1);
|
||||
} else if (prop === 'startRow') {
|
||||
var currentCol = instance.grid.startCell % columns;
|
||||
instance.grid.startCell = (value - 1) * columns + currentCol;
|
||||
} else if (prop === 'colSpan') {
|
||||
instance.grid.colSpan = value;
|
||||
} else if (prop === 'rowSpan') {
|
||||
instance.grid.rowSpan = value;
|
||||
}
|
||||
|
||||
// 重新计算位置
|
||||
var startCol = instance.grid.startCell % columns;
|
||||
var startRow = Math.floor(instance.grid.startCell / columns);
|
||||
var colSpan = Math.min(instance.grid.colSpan, columns - startCol);
|
||||
|
||||
instance.element.style.gridColumn = (startCol + 1) + ' / span ' + colSpan;
|
||||
instance.element.style.gridRow = (startRow + 1) + ' / span ' + instance.grid.rowSpan;
|
||||
} else if (trait) {
|
||||
// 更新组件属性
|
||||
var typeDef = self.componentTypes[instance.type];
|
||||
var traitDef = typeDef.traits.find(function(t) { return t.name === trait; });
|
||||
|
||||
if (input.type === 'checkbox') {
|
||||
instance.props[trait] = input.checked;
|
||||
} else if (traitDef && traitDef.type === 'number') {
|
||||
instance.props[trait] = parseFloat(input.value) || 0;
|
||||
} else {
|
||||
instance.props[trait] = input.value;
|
||||
}
|
||||
|
||||
// 重新渲染组件内容
|
||||
if (typeDef.render) {
|
||||
var content = typeDef.render(instance.props);
|
||||
instance.element.innerHTML = '';
|
||||
if (typeof content === 'string') {
|
||||
instance.element.innerHTML = content;
|
||||
} else if (content instanceof HTMLElement) {
|
||||
instance.element.appendChild(content);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// 删除按钮
|
||||
var deleteBtn = this.propertyPanelEl.querySelector('[data-action="delete"]');
|
||||
if (deleteBtn) {
|
||||
deleteBtn.addEventListener('click', function() {
|
||||
self._deleteComponent(instance.id);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 删除组件
|
||||
*/
|
||||
_deleteComponent: function(componentId) {
|
||||
var index = -1;
|
||||
for (var i = 0; i < this.componentInstances.length; i++) {
|
||||
if (this.componentInstances[i].id === componentId) {
|
||||
index = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (index === -1) return;
|
||||
|
||||
var instance = this.componentInstances[index];
|
||||
|
||||
// 从DOM移除
|
||||
if (instance.element) {
|
||||
instance.element.remove();
|
||||
}
|
||||
|
||||
// 从数组移除
|
||||
this.componentInstances.splice(index, 1);
|
||||
|
||||
// 取消选中
|
||||
this._deselectAll();
|
||||
},
|
||||
|
||||
/**
|
||||
* 查找组件实例
|
||||
*/
|
||||
_findInstance: function(componentId) {
|
||||
for (var i = 0; i < this.componentInstances.length; i++) {
|
||||
if (this.componentInstances[i].id === componentId) {
|
||||
return this.componentInstances[i];
|
||||
}
|
||||
}
|
||||
return null;
|
||||
},
|
||||
|
||||
/**
|
||||
* 注册组件类型
|
||||
* @param {string} name - 组件名称
|
||||
* @param {object} definition - 组件定义
|
||||
*/
|
||||
define: function(name, definition) {
|
||||
if (this.componentTypes[name]) {
|
||||
console.warn('Component type already defined:', name);
|
||||
return;
|
||||
}
|
||||
|
||||
this.componentTypes[name] = definition;
|
||||
|
||||
// 添加到工具箱
|
||||
this._addToToolbox(name, definition);
|
||||
},
|
||||
|
||||
/**
|
||||
* 添加组件到工具箱
|
||||
*/
|
||||
_addToToolbox: function(name, definition) {
|
||||
var self = this;
|
||||
|
||||
var item = document.createElement('div');
|
||||
item.className = 'webbuilder-toolbox-item';
|
||||
item.setAttribute('draggable', true);
|
||||
item.setAttribute('data-type', name);
|
||||
|
||||
var icon = definition.icon || '📦';
|
||||
var label = definition.label || name;
|
||||
|
||||
item.innerHTML = '<span class="icon">' + icon + '</span><span class="label">' + label + '</span>';
|
||||
|
||||
// 拖拽事件
|
||||
item.addEventListener('dragstart', function(e) {
|
||||
self.draggingType = name;
|
||||
item.style.opacity = '0.5';
|
||||
});
|
||||
item.addEventListener('dragend', function(e) {
|
||||
item.style.opacity = '1';
|
||||
self.draggingType = null;
|
||||
});
|
||||
|
||||
this.toolboxListEl.appendChild(item);
|
||||
},
|
||||
|
||||
/**
|
||||
* 导出为JSONB
|
||||
* 返回格式: { version, layouts: { phone: {...}, computer: null } }
|
||||
*/
|
||||
toJSONB: function() {
|
||||
var components = this.componentInstances.map(function(instance) {
|
||||
return {
|
||||
id: instance.id,
|
||||
type: instance.type,
|
||||
grid: {
|
||||
startCell: instance.grid.startCell,
|
||||
colSpan: instance.grid.colSpan,
|
||||
rowSpan: instance.grid.rowSpan
|
||||
},
|
||||
props: JSON.parse(JSON.stringify(instance.props))
|
||||
};
|
||||
});
|
||||
|
||||
return {
|
||||
version: '1.0',
|
||||
layouts: {
|
||||
phone: {
|
||||
canvas: {
|
||||
width: this.phoneConfig.width,
|
||||
height: this.phoneConfig.height,
|
||||
columns: this.phoneConfig.columns,
|
||||
cellSize: this.cellSize,
|
||||
rows: this.rows,
|
||||
gap: this.phoneConfig.gap,
|
||||
background: this.phoneConfig.background
|
||||
},
|
||||
components: components
|
||||
},
|
||||
computer: null
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* 从JSONB加载
|
||||
*/
|
||||
fromJSONB: function(jsonb) {
|
||||
// 清空画布
|
||||
this.canvasEl.innerHTML = '';
|
||||
this.componentInstances = [];
|
||||
this.selectedComponent = null;
|
||||
|
||||
// 获取手机布局
|
||||
var phoneLayout = jsonb.layouts && jsonb.layouts.phone;
|
||||
if (!phoneLayout) {
|
||||
console.warn('No phone layout found');
|
||||
return;
|
||||
}
|
||||
|
||||
// 渲染组件
|
||||
if (phoneLayout.components) {
|
||||
var self = this;
|
||||
phoneLayout.components.forEach(function(comp) {
|
||||
var typeDef = self.componentTypes[comp.type];
|
||||
if (!typeDef) {
|
||||
console.warn('Component type not found:', comp.type);
|
||||
return;
|
||||
}
|
||||
|
||||
var instance = {
|
||||
id: comp.id,
|
||||
type: comp.type,
|
||||
grid: {
|
||||
startCell: comp.grid.startCell,
|
||||
colSpan: comp.grid.colSpan,
|
||||
rowSpan: comp.grid.rowSpan
|
||||
},
|
||||
props: comp.props || {}
|
||||
};
|
||||
|
||||
self._renderComponent(instance);
|
||||
self.componentInstances.push(instance);
|
||||
});
|
||||
|
||||
// 更新ID计数器
|
||||
var maxId = 0;
|
||||
this.componentInstances.forEach(function(inst) {
|
||||
var match = inst.id.match(/-(\d+)$/);
|
||||
if (match) {
|
||||
maxId = Math.max(maxId, parseInt(match[1]));
|
||||
}
|
||||
});
|
||||
this.idCounter = maxId;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 获取画布配置
|
||||
*/
|
||||
getCanvasConfig: function() {
|
||||
return {
|
||||
width: this.phoneConfig.width,
|
||||
height: this.phoneConfig.height,
|
||||
columns: this.phoneConfig.columns,
|
||||
cellSize: this.cellSize,
|
||||
rows: this.rows,
|
||||
gap: this.phoneConfig.gap,
|
||||
background: this.phoneConfig.background
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* 获取所有组件实例
|
||||
*/
|
||||
getComponents: function() {
|
||||
return JSON.parse(JSON.stringify(this.componentInstances));
|
||||
},
|
||||
|
||||
/**
|
||||
* 清空画布
|
||||
*/
|
||||
clear: function() {
|
||||
this.canvasEl.innerHTML = '';
|
||||
this.componentInstances = [];
|
||||
this.selectedComponent = null;
|
||||
this.propertyPanelEl.innerHTML = '';
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user