'libs/jquery',
'libs/underscore',
'modules/documentCanvas/canvas/utils',
-'modules/documentCanvas/canvas/wlxmlManagers'
-], function($, _, utils, wlxmlManagers) {
+'modules/documentCanvas/canvas/container'
+], function($, _, utils, container) {
'use strict';
-/* global Node:false, document:false */
-
+/* global Node:false */
// DocumentElement represents a text or an element node from WLXML document rendered inside Canvas
var DocumentElement = function(wlxmlNode, canvas) {
- if(arguments.length === 0) {
- return;
- }
this.wlxmlNode = wlxmlNode;
this.canvas = canvas;
-
- this.$element = this.createDOM();
- this.$element.data('canvas-element', this);
+ this.state = {
+ exposed: false,
+ active: false
+ };
+
+ this.dom = this.createDOM();
+ this.dom.data('canvas-element', this);
+ this.wlxmlNode.setData('canvasElement', this);
};
$.extend(DocumentElement.prototype, {
- bound: function() {
- return $.contains(document.documentElement, this.dom()[0]);
- },
- dom: function() {
- return this.$element;
+ refreshPath: function() {
+ this.parents().forEach(function(parent) {
+ parent.refresh();
+ });
+ this.refresh();
+ },
+ refresh: function() {
+ // noop
+ },
+ updateState: function(toUpdate) {
+ var changes = {};
+ _.keys(toUpdate)
+ .filter(function(key) {
+ return this.state.hasOwnProperty(key);
+ }.bind(this))
+ .forEach(function(key) {
+ if(this.state !== toUpdate[key]) {
+ this.state[key] = changes[key] = toUpdate[key];
+ }
+ }.bind(this));
+ if(_.isFunction(this.onStateChange)) {
+ this.onStateChange(changes);
+ if(_.isBoolean(changes.active)) {
+ if(changes.active) {
+ var ptr = this;
+ while(ptr && ptr.wlxmlNode.getTagName() === 'span') {
+ ptr = ptr.parent();
+ }
+ if(ptr && ptr.gutterGroup) {
+ ptr.gutterGroup.show();
+ }
+ }
+ }
+ }
},
parent: function() {
- var parents = this.$element.parents('[document-node-element]');
+ var parents = this.dom.parents('[document-node-element]');
if(parents.length) {
return this.canvas.getDocumentElement(parents[0]);
}
},
sameNode: function(other) {
- return other && (typeof other === typeof this) && other.dom()[0] === this.dom()[0];
+ return other && (typeof other === typeof this) && other.dom[0] === this.dom[0];
},
-
- markAsCurrent: function() {
- this.canvas.markAsCurrent(this);
- },
-
- getVerticallyFirstTextElement: function() {
- var toret;
- this.children().some(function(child) {
- if(!child.isVisible()) {
- return false; // continue
- }
- if(child instanceof DocumentTextElement) {
- toret = child;
- return true; // break
- } else {
- toret = child.getVerticallyFirstTextElement();
- if(toret) {
- return true; // break
- }
- }
- });
- return toret;
- },
-
- getPreviousTextElement: function(includeInvisible) {
- return this.getNearestTextElement('above', includeInvisible);
- },
-
- getNextTextElement: function(includeInvisible) {
- return this.getNearestTextElement('below', includeInvisible);
- },
-
- getNearestTextElement: function(direction, includeInvisible) {
- includeInvisible = includeInvisible !== undefined ? includeInvisible : false;
- var selector = '[document-text-element]' + (includeInvisible ? '' : ':visible');
- return this.canvas.getDocumentElement(utils.nearestInDocumentOrder(selector, direction, this.dom()[0]));
+ isRootElement: function() {
+ return this.sameNode(this.canvas.rootElement);
},
- isVisible: function() {
- return this instanceof DocumentTextElement || this.getWlxmlTag() !== 'metadata';
- },
+ trigger: function() {
+ this.canvas.eventBus.trigger.apply(this.canvas.eventBus, Array.prototype.slice.call(arguments, 0));
+ }
- isInsideList: function() {
- return this.parents().some(function(parent) {
- return parent.is('list');
- });
- },
- exec: function(method) {
- if(this.manager && this.manager[method]) {
- return this.manager[method].apply(this.manager, Array.prototype.slice.call(arguments, 1));
- }
- }
});
// DocumentNodeElement represents an element node from WLXML document rendered inside Canvas
var DocumentNodeElement = function(wlxmlNode, canvas) {
DocumentElement.call(this, wlxmlNode, canvas);
- wlxmlNode.setData('canvasElement', this);
+ this.containers = [];
+ this.elementsRegister = canvas.createElementsRegister();
+ this.contextMenuActions = [];
+ this.init(this.dom);
};
if(params instanceof DocumentElement) {
element = params;
} else {
- element = e.canvas.createElement(params);
+ element = e.createElement(params);
+ }
+ if(element.dom) {
+ e.dom[action](element.dom);
+ e.refreshPath();
}
- var target = (action === 'append' || action === 'prepend') ? e._container() : e.dom();
- target[action](element.dom());
return element;
};
-DocumentNodeElement.prototype = new DocumentElement();
+DocumentNodeElement.prototype = Object.create(DocumentElement.prototype);
$.extend(DocumentNodeElement.prototype, {
+ defaultDisplayStyle: 'block',
+ init: function() {},
+ addWidget: function(widget) {
+ this.dom.children('.canvas-widgets').append(widget.DOM ? widget.DOM : widget);
+ },
+ clearWidgets: function() {
+ this.dom.children('.canvas-widgets').empty();
+ },
+ addToGutter: function(view) {
+ if(!this.gutterGroup) {
+ this.gutterGroup = this.canvas.gutter.createViewGroup({
+ offsetHint: function() {
+ return this.canvas.getElementOffset(this);
+ }.bind(this)
+ }, this);
+ }
+ this.gutterGroup.addView(view);
+ },
+ createContainer: function(nodes, params) {
+ var toret = container.create(nodes, params, this);
+ this.containers.push(toret);
+ return toret;
+ },
+ removeContainer: function(container) {
+ var idx;
+ if((idx = this.containers.indexOf(container)) !== -1) {
+ this.containers.splice(idx, 1);
+ }
+ },
+ createElement: function(wlxmlNode) {
+ var parent = this.wlxmlNode.parent() ? utils.getElementForNode(this.wlxmlNode.parent()) : null;
+ return this.canvas.createElement(wlxmlNode, this.elementsRegister, !parent) || parent.createElement(wlxmlNode);
+ },
+ addToContextMenu: function(actionFqName) {
+ this.contextMenuActions.push(this.canvas.createAction(actionFqName));
+ },
+ handle: function(event) {
+ var method = 'on' + event.type[0].toUpperCase() + event.type.substr(1),
+ target;
+ if(event.type === 'nodeAdded' || event.type === 'nodeDetached') {
+ this.containers.some(function(container) {
+ if(container.manages(event.meta.node, event.meta.parent)) {
+ target = container;
+ return true;
+ }
+ });
+ }
+
+ if(!target && this[method]) {
+ target = this;
+ }
+
+ if(target) {
+ target[method](event);
+ }
+ },
createDOM: function() {
- var dom = $('<div>')
- .attr('document-node-element', ''),
+ var wrapper = $('<div>').attr('document-node-element', ''),
widgetsContainer = $('<div>')
- .addClass('canvas-widgets')
- .attr('contenteditable', false),
- container = $('<div>')
+ .addClass('canvas-widgets'),
+ contentContainer = $('<div>')
.attr('document-element-content', '');
- dom.append(widgetsContainer, container);
- // Make sure widgets aren't navigable with arrow keys
+ wrapper.append(contentContainer, widgetsContainer);
widgetsContainer.find('*').add(widgetsContainer).attr('tabindex', -1);
- this.$element = dom; //@!!!
-
- this.setWlxmlTag(this.wlxmlNode.getTagName());
- this.setWlxmlClass(this.wlxmlNode.getClass());
-
- this.wlxmlNode.contents().forEach(function(node) {
- container.append(this.canvas.createElement(node).dom());
- }.bind(this));
- return dom;
+ return wrapper;
},
_container: function() {
- return this.dom().children('[document-element-content]');
+ return this.dom.children('[document-element-content]');
},
- detach: function() {
- this.dom().detach();
- this.canvas = null;
+ detach: function(isChild) {
+ var parents;
+
+ if(this.gutterGroup) {
+ this.gutterGroup.remove();
+ }
+ if(_.isFunction(this.children)) {
+ this.children().forEach(function(child) {
+ child.detach(true);
+ });
+ }
+
+ if(!isChild) {
+ parents = this.parents();
+ this.dom.detach();
+ if(parents[0]) {
+ parents[0].refreshPath();
+ }
+ }
return this;
},
- append: function(params) {
- return manipulate(this, params, 'append');
- },
- prepend: function(params) {
- return manipulate(this, params, 'prepend');
- },
before: function(params) {
return manipulate(this, params, 'before');
after: function(params) {
return manipulate(this, params, 'after');
},
- children: function() {
- var toret = [];
- if(this instanceof DocumentTextElement) {
- return toret;
- }
-
- var elementContent = this._container().contents();
- var element = this;
- elementContent.each(function() {
- var childElement = element.canvas.getDocumentElement(this);
- if(childElement === undefined) {
- return true;
- }
- toret.push(childElement);
- });
- return toret;
+ isBlock: function() {
+ return this.dom.css('display') === 'block';
},
- childIndex: function(child) {
- var children = this.children(),
- toret = null;
- children.forEach(function(c, idx) {
- if(c.sameNode(child)) {
- toret = idx;
- return false;
- }
- });
- return toret;
- },
- getWlxmlTag: function() {
- return this._container().attr('wlxml-tag');
- },
- setWlxmlTag: function(tag) {
- this._container().attr('wlxml-tag', tag);
- },
- getWlxmlClass: function() {
- var klass = this._container().attr('wlxml-class');
- if(klass) {
- return klass.replace(/-/g, '.');
- }
- return undefined;
- },
- setWlxmlClass: function(klass) {
- if(klass === this.getWlxmlClass()) {
- return;
- }
- if(klass) {
- this._container().attr('wlxml-class', klass.replace(/\./g, '-'));
- }
- else {
- this._container().removeAttr('wlxml-class');
- }
- this.manager = wlxmlManagers.getFor(this);
- this.manager.setup();
- },
- is: function(what) {
- if(what === 'list' && _.contains(['list.items', 'list.items.enum'], this.getWlxmlClass())) {
- return true;
- }
- return false;
+
+ displayAsBlock: function() {
+ this.dom.css('display', 'block');
+ this._container().css('display', 'block');
},
- toggleLabel: function(toggle) {
- var displayCss = toggle ? 'inline-block' : 'none';
- var label = this.dom().children('.canvas-widgets').find('.canvas-widget-label');
- label.css('display', displayCss);
- this.toggleHighlight(toggle);
+ displayInline: function() {
+ this.dom.css('display', 'inline');
+ this._container().css('display', 'inline');
},
-
- toggleHighlight: function(toggle) {
- this._container().toggleClass('highlighted-element', toggle);
+ displayAs: function(what) {
+ // [this.dom(), this._container()].forEach(e) {
+ // var isBlock = window.getComputedStyle(e).display === 'block';
+ // if(!isBlock && what === 'block') {
+ // e.css('display', what);
+ // } else if(isBlock && what === 'inline') {
+ // e.css('display')
+ // }
+ // })
+ this.dom.css('display', what);
+ this._container().css('display', what);
},
-
- toggle: function(toggle) {
- if(this.manager) {
- this.manager.toggle(toggle);
- }
+ children: function() {
+ return [];
}
});
}
});
-DocumentTextElement.prototype = new DocumentElement();
+DocumentTextElement.prototype = Object.create(DocumentElement.prototype);
$.extend(DocumentTextElement.prototype, {
createDOM: function() {
- return $('<div>')
+ var dom = $('<div>')
.attr('document-text-element', '')
.text(this.wlxmlNode.getText() || utils.unicode.ZWS);
+ return dom;
},
- detach: function() {
- this.dom().detach();
- this.canvas = null;
+ detach: function(isChild) {
+ if(!isChild) {
+ this.dom.detach();
+ }
return this;
},
setText: function(text) {
- this.dom().contents()[0].data = text;
+ if(text === '') {
+ text = utils.unicode.ZWS;
+ }
+ if(text !== this.getText()) {
+ this.dom.contents()[0].data = text;
+ }
+ },
+ handle: function(event) {
+ this.setText(event.meta.node.getText());
},
getText: function(options) {
options = _.extend({raw: false}, options || {});
- var toret = this.dom().text();
+ var toret = this.dom.text();
if(!options.raw) {
toret = toret.replace(utils.unicode.ZWS, '');
}
},
isEmpty: function() {
// Having at least Zero Width Space is guaranteed be Content Observer
- return this.dom().contents()[0].data === utils.unicode.ZWS;
+ return this.dom.contents()[0].data === utils.unicode.ZWS;
},
after: function(params) {
if(params instanceof DocumentTextElement || params.text) {
if(params instanceof DocumentNodeElement) {
element = params;
} else {
- element = this.canvas.createElement(params);
+ element = this.parent().createElement(params);
+ }
+ if(element.dom) {
+ this.dom.wrap('<div>');
+ this.dom.parent().after(element.dom);
+ this.dom.unwrap();
+ this.refreshPath();
}
- this.dom().wrap('<div>');
- this.dom().parent().after(element.dom());
- this.dom().unwrap();
return element;
},
before: function(params) {
if(params instanceof DocumentNodeElement) {
element = params;
} else {
- element = this.canvas.createElement(params);
+ element = this.createElement(params);
+ }
+ if(element.dom) {
+ this.dom.wrap('<div>');
+ this.dom.parent().before(element.dom);
+ this.dom.unwrap();
+ this.refreshPath();
}
- this.dom().wrap('<div>');
- this.dom().parent().before(element.dom());
- this.dom().unwrap();
return element;
},
- toggleHighlight: function() {
- // do nothing for now
+ children: function() {
+ return [];
}
+
});
+
return {
DocumentElement: DocumentElement,
DocumentNodeElement: DocumentNodeElement,