5 'fnpjs/logging/logging',
6 'modules/documentCanvas/canvas/documentElement',
7 'modules/documentCanvas/canvas/keyboard',
8 'modules/documentCanvas/canvas/utils',
9 'modules/documentCanvas/canvas/wlxmlListener',
10 'modules/documentCanvas/canvas/elementsRegister',
11 'modules/documentCanvas/canvas/genericElement',
12 ], function($, _, Backbone, logging, documentElement, keyboard, utils, wlxmlListener, ElementsRegister, genericElement) {
15 /* global document:false, window:false, Node:false, gettext */
17 var logger = logging.getLogger('canvas');
19 var TextHandler = function(canvas) {this.canvas = canvas; this.buffer = null;};
20 $.extend(TextHandler.prototype, {
21 handle: function(node, text) {
22 this.setText(text, node);
27 // if(this.node.sameNode(node)) {
35 _ping: _.throttle(function(text) {
40 if(this.buffer !== null) {
41 this.setText(this.buffer, this.node);
45 setText: function(text, node) {
46 //this.canvas.wlxmlDocument.transform('setText', {node:node, text: text});
47 node.document.transaction(function() {
51 description: gettext('Changing text')
60 var Canvas = function(wlxmlDocument, elements) {
61 this.elementsRegister = new ElementsRegister(documentElement.DocumentNodeElement);
64 {tag: 'section', klass: null, prototype: genericElement},
65 {tag: 'div', klass: null, prototype: genericElement},
66 {tag: 'header', klass: null, prototype: genericElement},
67 {tag: 'span', klass: null, prototype: genericElement},
68 {tag: 'aside', klass: null, prototype: genericElement}
69 ].concat(elements || []);
71 (elements).forEach(function(elementDesc) {
72 this.elementsRegister.register(elementDesc);
74 this.eventBus = _.extend({}, Backbone.Events);
75 this.wrapper = $('<div>').addClass('canvas-wrapper').attr('contenteditable', true);
76 this.wlxmlListener = wlxmlListener.create(this);
77 this.loadWlxmlDocument(wlxmlDocument);
78 this.setupEventHandling();
79 this.textHandler = new TextHandler(this);
82 $.extend(Canvas.prototype, Backbone.Events, {
84 loadWlxmlDocument: function(wlxmlDocument) {
89 this.wlxmlListener.listenTo(wlxmlDocument);
90 this.wlxmlDocument = wlxmlDocument;
94 createElement: function(wlxmlNode) {
96 if(wlxmlNode.nodeType === Node.TEXT_NODE) {
97 Factory = documentElement.DocumentTextElement;
99 Factory = this.elementsRegister.getElement({tag: wlxmlNode.getTagName(), klass: wlxmlNode.getClass()});
101 return new Factory(wlxmlNode, this);
104 getDocumentElement: function(htmlElement) {
105 /* globals HTMLElement, Text */
106 if(!htmlElement || !(htmlElement instanceof HTMLElement || htmlElement instanceof Text)) {
109 var $element = $(htmlElement);
110 if(htmlElement.nodeType === Node.ELEMENT_NODE && $element.attr('document-node-element') !== undefined) {
111 return $element.data('canvas-element');
114 if(htmlElement.nodeType === Node.TEXT_NODE && $element.parent().attr('document-text-element') !== undefined) {
115 $element = $element.parent();
118 if($element.attr('document-text-element') !== undefined || (htmlElement.nodeType === Node.TEXT_NODE && $element.parent().attr('document-text-element') !== undefined)) {
119 //return DocumentTextElement.fromHTMLElement(htmlElement, canvas);
120 return $element.data('canvas-element');
124 reloadRoot: function() {
125 this.rootElement = this.createElement(this.wlxmlDocument.root);
126 this.wrapper.empty();
127 this.wrapper.append(this.rootElement.dom);
130 setupEventHandling: function() {
133 this.wrapper.on('keyup keydown keypress', function(e) {
134 keyboard.handleKey(e, canvas);
137 this.wrapper.on('mouseup', function() {
138 canvas.triggerSelectionChanged();
142 this.wrapper.on('mousedown', '[document-node-element], [document-text-element]', function(e) {
143 mouseDown = e.target;
146 this.wrapper.on('click', '[document-node-element], [document-text-element]', function(e) {
148 if(e.originalEvent.detail === 3) {
150 canvas._moveCaretToTextElement(canvas.getDocumentElement(e.currentTarget), 'whole');
152 if(mouseDown === e.target) {
153 canvas.setCurrentElement(canvas.getDocumentElement(e.currentTarget), {caretTo: false});
158 this.wrapper.on('paste', function(e) {
161 var clipboardData = e.originalEvent.clipboardData;
162 if(!clipboardData || !clipboardData.getData) {
163 return; // TODO: alert
166 var text = clipboardData.getData('text/plain').replace(/\r?\n|\r/g, ' '),
167 cursor = canvas.getCursor(),
168 element = cursor.getPosition().element,
171 if(element && cursor.isWithinElement()) {
172 lhs = element.getText().substr(0, cursor.getSelectionStart().offset);
173 rhs = element.getText().substr(cursor.getSelectionEnd().offset);
174 element.setText(lhs+text+rhs);
175 canvas.setCurrentElement(element, {caretTo: lhs.length + text.length});
177 /* jshint noempty:false */
182 /* globals MutationObserver */
183 var observer = new MutationObserver(function(mutations) {
184 mutations.forEach(function(mutation) {
185 if(documentElement.DocumentTextElement.isContentContainer(mutation.target)) {
186 observer.disconnect();
187 if(mutation.target.data === '') {
188 mutation.target.data = utils.unicode.ZWS;
190 else if(mutation.oldValue === utils.unicode.ZWS) {
191 mutation.target.data = mutation.target.data.replace(utils.unicode.ZWS, '');
192 canvas._moveCaretToTextElement(canvas.getDocumentElement(mutation.target), 'end');
194 observer.observe(canvas.wrapper[0], config);
196 var textElement = canvas.getDocumentElement(mutation.target),
197 toSet = mutation.target.data !== utils.unicode.ZWS ? mutation.target.data : '';
199 //textElement.data('wlxmlNode').setText(toSet);
200 //textElement.data('wlxmlNode').document.transform('setText', {node: textElement.data('wlxmlNode'), text: toSet});
201 if(textElement.wlxmlNode.getText() !== toSet) {
202 canvas.textHandler.handle(textElement.wlxmlNode, toSet);
207 var config = { attributes: false, childList: false, characterData: true, subtree: true, characterDataOldValue: true};
208 observer.observe(this.wrapper[0], config);
211 this.wrapper.on('mouseover', '[document-node-element], [document-text-element]', function(e) {
212 var el = canvas.getDocumentElement(e.currentTarget);
217 if(el instanceof documentElement.DocumentTextElement) {
220 el.toggleLabel(true);
222 this.wrapper.on('mouseout', '[document-node-element], [document-text-element]', function(e) {
223 var el = canvas.getDocumentElement(e.currentTarget);
228 if(el instanceof documentElement.DocumentTextElement) {
231 el.toggleLabel(false);
234 this.eventBus.on('elementToggled', function(toggle, element) {
236 canvas.setCurrentElement(canvas.getPreviousTextElement(element));
246 return this.rootElement;
249 toggleElementHighlight: function(node, toggle) {
250 var element = utils.getElementForNode(node);
251 element.toggleHighlight(toggle);
254 getCursor: function() {
255 return new Cursor(this);
259 getCurrentNodeElement: function() {
260 var htmlElement = this.wrapper.find('.current-node-element').parent()[0];
262 return this.getDocumentElement(htmlElement);
266 getCurrentTextElement: function() {
267 var htmlElement = this.wrapper.find('.current-text-element')[0];
269 return this.getDocumentElement(htmlElement);
273 getPreviousTextElement: function(relativeToElement, includeInvisible) {
274 return this.getNearestTextElement('above', relativeToElement, includeInvisible);
277 getNextTextElement: function(relativeToElement, includeInvisible) {
278 return this.getNearestTextElement('below', relativeToElement, includeInvisible);
281 getNearestTextElement: function(direction, relativeToElement, includeInvisible) {
282 includeInvisible = includeInvisible !== undefined ? includeInvisible : false;
283 var selector = '[document-text-element]' + (includeInvisible ? '' : ':visible');
284 return this.getDocumentElement(utils.nearestInDocumentOrder(selector, direction, relativeToElement.dom[0]));
287 contains: function(element) {
288 return element.dom.parents().index(this.wrapper) !== -1;
291 triggerSelectionChanged: function() {
292 this.trigger('selectionChanged', this.getSelection());
295 getSelection: function() {
296 return new Selection(this);
299 setCurrentElement: function(element, params) {
301 logger.debug('Invalid element passed to setCurrentElement: ' + element);
305 if(!(element instanceof documentElement.DocumentElement)) {
306 element = utils.getElementForNode(element);
309 if(!element || !this.contains(element)) {
310 logger.warning('Cannot set current element: element doesn\'t exist on canvas');
314 params = _.extend({caretTo: 'end'}, params);
315 var findFirstDirectTextChild = function(e, nodeToLand) {
316 var byBrowser = this.getCursor().getPosition().element;
317 if(byBrowser && byBrowser.parent().sameNode(nodeToLand)) {
320 return e.getVerticallyFirstTextElement();
322 var _markAsCurrent = function(element) {
323 if(element instanceof documentElement.DocumentTextElement) {
324 this.wrapper.find('.current-text-element').removeClass('current-text-element');
325 element.dom.addClass('current-text-element');
327 this.wrapper.find('.current-node-element').removeClass('current-node-element');
328 element._container().addClass('current-node-element');
333 var isTextElement = element instanceof documentElement.DocumentTextElement,
334 nodeElementToLand = isTextElement ? element.parent() : element,
335 textElementToLand = isTextElement ? element : findFirstDirectTextChild(element, nodeElementToLand),
336 currentTextElement = this.getCurrentTextElement(),
337 currentNodeElement = this.getCurrentNodeElement();
339 if(currentTextElement && !(currentTextElement.sameNode(textElementToLand))) {
340 this.wrapper.find('.current-text-element').removeClass('current-text-element');
343 if(textElementToLand) {
344 _markAsCurrent(textElementToLand);
345 if(params.caretTo || !textElementToLand.sameNode(this.getCursor().getPosition().element)) {
346 this._moveCaretToTextElement(textElementToLand, params.caretTo); // as method on element?
349 document.getSelection().removeAllRanges();
352 if(!(currentNodeElement && currentNodeElement.sameNode(nodeElementToLand))) {
353 _markAsCurrent(nodeElementToLand);
355 this.triggerSelectionChanged();
358 _moveCaretToTextElement: function(element, where) {
359 var range = document.createRange(),
360 node = element.dom.contents()[0];
362 if(typeof where !== 'number') {
363 range.selectNodeContents(node);
365 range.setStart(node, Math.min(node.data.length, where));
368 if(where !== 'whole') {
369 var collapseArg = true;
370 if(where === 'end') {
373 range.collapse(collapseArg);
375 var selection = document.getSelection();
377 selection.removeAllRanges();
378 selection.addRange(range);
379 this.wrapper.focus(); // FF requires this for caret to be put where range colllapses, Chrome doesn't.
382 setCursorPosition: function(position) {
383 if(position.element) {
384 this._moveCaretToTextElement(position.element, position.offset);
388 toggleGrid: function() {
389 this.wrapper.toggleClass('grid-on');
390 this.trigger('changed');
392 isGridToggled: function() {
393 return this.wrapper.hasClass('grid-on');
398 var isText = function(node) {
399 return node && node.nodeType === Node.TEXT_NODE && $(node.parentNode).is('[document-text-element]');
402 var Selection = function(canvas) {
403 this.canvas = canvas;
404 var nativeSelection = this.nativeSelection = window.getSelection();
405 Object.defineProperty(this, 'type', {
407 if(nativeSelection.focusNode) {
408 if(nativeSelection.isCollapsed && isText(nativeSelection.focusNode)) {
411 if(isText(nativeSelection.focusNode) && isText(nativeSelection.anchorNode)) {
412 return 'textSelection';
415 if(canvas.getCurrentNodeElement()) {
422 $.extend(Selection.prototype, {
423 toDocumentFragment: function() {
424 var doc = this.canvas.wlxmlDocument,
425 anchorElement = this.canvas.getDocumentElement(this.nativeSelection.anchorNode),
426 focusElement = this.canvas.getDocumentElement(this.nativeSelection.focusNode),
427 anchorNode = anchorElement ? anchorElement.wlxmlNode : null,
428 focusNode = focusElement ? focusElement.wlxmlNode : null;
429 if(this.type === 'caret') {
430 return doc.createFragment(doc.CaretFragment, {node: anchorNode, offset: this.nativeSelection.anchorOffset});
432 if(this.type === 'textSelection') {
433 if(anchorNode.isSiblingOf(focusNode)) {
434 return doc.createFragment(doc.TextRangeFragment, {
436 offset1: this.nativeSelection.anchorOffset,
438 offset2: this.nativeSelection.focusOffset,
442 var siblingParents = doc.getSiblingParents({node1: anchorNode, node2: focusNode});
443 return doc.createFragment(doc.RangeFragment, {
444 node1: siblingParents.node1,
445 node2: siblingParents.node2
449 if(this.type === 'node') {
450 return doc.createFragment(doc.NodeFragment, {node: this.canvas.getCurrentNodeElement().wlxmlNode});
453 sameAs: function(other) {
458 var Cursor = function(canvas) {
459 this.canvas = canvas;
460 this.selection = window.getSelection();
463 $.extend(Cursor.prototype, {
464 sameAs: function(other) {
470 ['focusNode', 'focusOffset', 'anchorNode', 'anchorOffset'].some(function(prop) {
471 same = same && this.selection[prop] === other.selection[prop];
473 return true; // break
479 isSelecting: function() {
480 var selection = window.getSelection();
481 return !selection.isCollapsed;
483 isSelectingWithinElement: function() {
484 return this.isSelecting() && this.getSelectionStart().element.sameNode(this.getSelectionEnd().element);
486 isWithinElement: function() {
487 return !this.isSelecting() || this.isSelectingWithinElement();
489 isSelectingSiblings: function() {
490 return this.isSelecting() && this.getSelectionStart().element.parent().sameNode(this.getSelectionEnd().element.parent());
492 getPosition: function() {
493 return this.getSelectionAnchor();
495 getSelectionStart: function() {
496 return this.getSelectionBoundry('start');
498 getSelectionEnd: function() {
499 return this.getSelectionBoundry('end');
501 getSelectionAnchor: function() {
502 return this.getSelectionBoundry('anchor');
504 getSelectionFocus: function() {
505 return this.getSelectionBoundry('focus');
507 getSelectionBoundry: function(which) {
509 var selection = window.getSelection(),
510 anchorElement = this.canvas.getDocumentElement(selection.anchorNode),
511 focusElement = this.canvas.getDocumentElement(selection.focusNode);
513 if((!anchorElement) || (anchorElement instanceof documentElement.DocumentNodeElement) || (!focusElement) || focusElement instanceof documentElement.DocumentNodeElement) {
517 if(which === 'anchor') {
519 element: anchorElement,
520 offset: selection.anchorOffset,
521 offsetAtBeginning: selection.anchorOffset === 0 || anchorElement.getText() === '',
522 offsetAtEnd: selection.anchorNode.data.length === selection.anchorOffset || anchorElement.getText() === ''
525 if(which === 'focus') {
527 element: focusElement,
528 offset: selection.focusOffset,
529 offsetAtBeginning: selection.focusOffset === 0 || focusElement.getText() === '',
530 offsetAtEnd: selection.focusNode.data.length === selection.focusOffset || focusElement.getText() === '',
534 var getPlaceData = function(anchorFirst) {
537 if(which === 'start') {
538 element = anchorElement;
539 offset = selection.anchorOffset;
541 else if(which === 'end') {
542 element = focusElement;
543 offset = selection.focusOffset;
546 if(which === 'start') {
547 element = focusElement;
548 offset = selection.focusOffset;
550 else if(which === 'end') {
551 element = anchorElement;
552 offset = selection.anchorOffset;
555 return {element: element, offset: offset};
558 var anchorFirst, placeData, parent;
560 if(anchorElement.parent().sameNode(focusElement.parent())) {
561 parent = anchorElement.parent();
562 if(selection.anchorNode === selection.focusNode) {
563 anchorFirst = selection.anchorOffset <= selection.focusOffset;
565 anchorFirst = (parent.getFirst(anchorElement, focusElement) === anchorElement);
567 placeData = getPlaceData(anchorFirst);
569 /*jshint bitwise: false*/
570 anchorFirst = selection.anchorNode.compareDocumentPosition(selection.focusNode) & Node.DOCUMENT_POSITION_FOLLOWING;
571 placeData = getPlaceData(anchorFirst);
574 var nodeLen = (placeData.element.sameNode(focusElement) ? selection.focusNode : selection.anchorNode).length;
576 element: placeData.element,
577 offset: placeData.offset,
578 offsetAtBeginning: placeData.offset === 0 || focusElement.getText() === '',
579 offsetAtEnd: nodeLen === placeData.offset || focusElement.getText() === ''
585 fromXMLDocument: function(wlxmlDocument, elements) {
586 return new Canvas(wlxmlDocument, elements);