GrapesJS可视化元素拖拽代码生成

简介

  • github
  • GrapesJS 是一个免费开源的 Web 模板编辑器,可进行元素拖拽,包括元素的常用属性设置,从而生成HTML页面
  • GrapesJS 引入了 backone.js,参考backone-underscore-js.md

初始化渲染源码解析

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
grapesjs.init({...})

// index.js
init(config = {}) {
// 实例化 Editor 对象
const editor = new Editor(config).init();
// ...
// 渲染 DOM
config.autorender && editor.render();
}

// editor/index.js
var em = new EditorModel(c);
var editorView = new EditorView({
model: em,
config: c
});
return {
init(opts = {}) {
// 1.实例化 EditorModel
em.init(this, { ...c, ...opts });
},
render() {
// 2.渲染 DOM
editorView.render();
return editorView.el;
}
}

// 1. model 创建
// editor/model/Editor.js
export default Backbone.Model.extend({
// 继承了 Model, 实例化时会自动调用
initialize(c = {}) {
// ...
// 依次加载模块
deps.forEach(name => this.loadModule(name));
}),
loadModule(moduleName) {
// ...
cfg.em = this;
Mod.init({ ...cfg });

// 将模块设置为 EditorModel 的属性
!Mod.private && this.set(Mod.name, Mod);
},
})

// canvas/index.js
init(config = {}) {
// 实例化 CanvasModel
canvas = new Canvas(config);
CanvasView = new canvasView({
model: canvas,
config: c
});
}

// canvas/model/Canvas.js
initialize(config = {}) {
const { em } = config;
const { styles = [], scripts = [] } = config;
// 此处 root 优先赋值为 EditorModel 对象,并传入到 Frame 示例(保存为其 attributes 属性)。最终在渲染 FrameView 时,将 grapesjs.init 初始化时容器 container 的子 DOM 元素加入到 iframe 中
const root = em && em.getWrapper();
const css = em && em.getStyle();
// 实例化 Frame
const frame = new Frame({ root, styles: css }, config);
styles.forEach(style => frame.addLink(style));
scripts.forEach(script => frame.addScript(script));
this.em = em;
this.set('frame', frame);
// 实例化 Frames(Collection: [frame])
this.set('frames', new Frames([frame], config));
this.listenTo(this, 'change:zoom', this.onZoomChange);
this.listenTo(em, 'change:device', this.updateDevice);
}

// canvas/model/Frames.js
import model from './Frame';
export default Backbone.Collection.extend({
model,
// ...
});

// canvas/model/Frame.js
import model from './Frame';
export default Backbone.Model.extend({
// 由于继承了Backbone.Model,实例化时,会自动将 props 传入值设置到 attributes 属性中。Frame 的实例化参考上文 Canvas 实例化
initialize(props, opts = {}) {
// 从 attributes 获取 root 和 components 等。此处的root为 grapesjs.init 初始化时,容器 container 的子 DOM 元素,在渲染 FrameView 时会用到
const { root, styles, components } = this.attributes;
// ...
// 如果 root 不存在,则使用一个默认的 Component 代替
!root &&
this.set(
'root',
new Component(
{
type: 'wrapper',
components: components || []
},
modOpts
)
);
// ...
}
});


// 2. view 视图渲染
// editor/view/EditorView.js
export default Backbone.View.extend({
initialize() {
// ...
this.pn = model.get('Panels');
// 获取 Canvas 模块
this.cv = model.get('Canvas');
// ...
},

render() {
// ...
// 渲染 Canvas 模块
$el.append(this.cv.render());
$el.append(this.pn.render());
// ...
}
});

// canvas/view/CanvasView.js
export default Backbone.View.extend({
initialize(o) {
// ...
const frames = model.get('frames');
// ...
this.frames = new FramesView({
collection: frames, // 设置 collection 属性
config: {
...config,
canvasView: this,
renderContent: 1
}
});
// ...
},
render() {
// ...
const frms = model.get('frames');
frms.listenToLoad();
// 渲染 Frames
frames.render();
// ...
}
})

// canvas/view/FramesView.js
import DomainViews from 'domain_abstract/view/DomainViews';
import FrameWrapView from './FrameWrapView';

export default DomainViews.extend({
itemView: FrameWrapView,
autoAdd: 1,
// ...
});

// domain_abstract/view/DomainViews.js
export default Backbone.View.extend({
initialize(opts = {}, config) {
this.config = config || opts.config || {};
// 如果启动自动添加,则监听 collection 的 add 方法调用,如果调用了则执行 this.addTo
this.autoAdd && this.listenTo(this.collection, 'add', this.addTo);
this.items = [];
this.init();
},
addTo(model) {
this.add(model);
},
add(model, fragment) {
// ...
// 渲染 itemView
var itemView = this.itemView;
// ...
// 判断model(如果是继承,则model为子类的model属性),不符合则渲染 itemView 属性值
if (model.view && reuseView) {
view = model.view;
} else {
view = new itemView({ model, config }, config);
}

items && items.push(view);
// 渲染
const rendered = view.render().el;
// ...
},
render() {
var frag = document.createDocumentFragment();
this.clearItems();
this.$el.empty();

if (this.collection.length)
// 将集合中的元素添加到 DOM 容器
this.collection.each(function(model) {
this.add(model, frag);
}, this);

this.$el.append(frag);
this.onRender();
return this;
},
})

// canvas/view/FrameWrapView.js
export default Backbone.View.extend({
initialize(opts = {}, conf = {}) {
// ...
this.em = em;
this.canvas = em && em.get('Canvas');
this.ppfx = config.pStylePrefix || '';
// 实例化 FrameView
this.frame = new FrameView({ model, config });
// ...
},
render() {
const { frame, $el, ppfx, cv, model, el } = this;
const { onRender } = model.attributes;
// 渲染 FrameView(实际是生成一个 iframe 标签)
frame.render();
// ...
}
})

// canvas/view/FrameView.js
render() {
const { el, $el, ppfx, config } = this;
$el.attr({ class: ppfx + 'frame' });

if (config.scripts.length) {
// 如果有额外的scripts标签需要加入到iframe中时执行,最终仍然会执行渲染 Body 部分
this.renderScripts();
} else if (config.renderContent) {
// 渲染 Body 部分
el.onload = this.renderBody.bind(this);
}

return this;
},
renderBody() {
const { config, model, ppfx } = this;
// 从 FrameModel 实例中获取,最早是在 Canvas 实例化传入的 EditorModel 值
const root = model.get('root');
const styles = model.get('styles');
const { em } = config;
// 由于实例化FrameView时,会自动创建iframe标签,所有此时渲染可以获取其 contentDocument 值
const doc = this.getDoc();
const head = this.getHead();
const body = this.getBody();
const win = this.getWindow();
// ...
// root 为 grapesjs.init 初始化时,容器 container 的子 DOM 元素。将此 DOM 元素用 ComponentView 包装,并加入到 Body 节点中
this.root = new ComponentView({
model: root,
config: {
...root.config,
frameView: this
}
}).render();
append(body, this.root.el);
// ...
}
ChatGPT开源小程序