Free and Open source Web Builder Framework. Next generation tool for building templates without coding
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

154 lines
4.4 KiB

import { isUndefined } from 'underscore';
import { removeEl } from '../../utils/dom';
import { View } from '../../common';
import { DomComponentsConfig } from '../config/config';
import EditorModel from '../../editor/model/Editor';
import Component from '../model/Component';
import ComponentView from './ComponentView';
import FrameView from '../../canvas/view/FrameView';
import Components from '../model/Components';
export default class ComponentsView extends View {
opts!: any;
config!: DomComponentsConfig & { frameView?: FrameView };
em!: EditorModel;
parentEl?: HTMLElement;
compView = ComponentView;
initialize(o: any) {
this.opts = o || {};
this.config = o.config || {};
// @ts-ignore
this.em = this.config.em;
const coll = this.collection;
this.listenTo(coll, 'add', this.addTo);
this.listenTo(coll, 'reset', this.resetChildren);
this.listenTo(coll, 'remove', this.removeChildren);
}
removeChildren(removed: Component, coll: any, opts = {}) {
removed.views.forEach(view => {
if (!view) return;
const { childrenView, scriptContainer } = view;
childrenView && childrenView.stopListening();
removeEl(scriptContainer);
view.remove.apply(view);
});
const inner = removed.components();
inner.forEach(it => this.removeChildren(it, coll, opts));
}
/**
* Add to collection
* @param {Model} model
* @param {Collection} coll
* @param {Object} opts
* @private
* */
addTo(model: Component, coll: any = {}, opts: { temporary?: boolean } = {}) {
const { em } = this;
const i = this.collection.indexOf(model);
this.addToCollection(model, null, i);
if (em && !opts.temporary) {
const triggerAdd = (model: Component) => {
em.trigger('component:add', model);
model.components().forEach(comp => triggerAdd(comp));
};
triggerAdd(model);
}
}
/**
* Add new object to collection
* @param {Object} Model
* @param {Object} Fragment collection
* @param {Integer} Index of append
*
* @return {Object} Object rendered
* @private
* */
addToCollection(model: Component, fragmentEl?: DocumentFragment | null, index?: number) {
// if (!this.compView) this.compView = require('./ComponentView').default;
const { config, opts, em } = this;
const fragment = fragmentEl || null;
const { frameView } = config;
const sameFrameView = frameView?.model && model.getView(frameView.model);
const dt = opts.componentTypes || em?.Components.getTypes();
const type = model.get('type') || 'default';
let viewObject = this.compView;
for (let it = 0; it < dt.length; it++) {
if (dt[it].id == type) {
viewObject = dt[it].view;
break;
}
}
const view =
sameFrameView ||
new viewObject({
model,
// @ts-ignore
config,
componentTypes: dt,
});
let rendered;
try {
// Avoid breaking on DOM rendering (eg. invalid attribute name)
rendered = view.render().el;
} catch (error) {
rendered = document.createTextNode('');
em.logError(error as any);
}
if (fragment) {
fragment.appendChild(rendered);
} else {
const parent = this.parentEl!;
const children = parent.childNodes;
if (!isUndefined(index)) {
const lastIndex = children.length == index;
// If the added model is the last of collection
// need to change the logic of append
if (lastIndex) {
index--;
}
// In case the added is new in the collection index will be -1
if (lastIndex || !children.length) {
parent.appendChild(rendered);
} else {
parent.insertBefore(rendered, children[index]);
}
} else {
parent.appendChild(rendered);
}
}
if (!model.opt.temporary) {
em?.trigger('component:mount', model);
}
return rendered;
}
resetChildren(models: Components, { previousModels = [] } = {}) {
this.parentEl!.innerHTML = '';
previousModels.forEach(md => this.removeChildren(md, this.collection));
models.each(model => this.addToCollection(model));
}
render(parent?: HTMLElement) {
const el = this.el;
const frag = document.createDocumentFragment();
this.parentEl = parent || this.el;
this.collection.each(model => this.addToCollection(model, frag));
el.innerHTML = '';
el.appendChild(frag);
return this;
}
}