Cleaning documentElement/genericElement interfaces
[fnpeditor.git] / src / editor / modules / documentCanvas / canvas / canvas.js
1 define([
2 'libs/jquery',
3 'libs/underscore',
4 'libs/backbone',
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) {
13     
14 'use strict';
15 /* global document:false, window:false, Node:false, gettext */
16
17 var logger = logging.getLogger('canvas');
18
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);
23         // return;
24         // if(!this.node) {
25         //     this.node = node;
26         // }
27         // if(this.node.sameNode(node)) {
28         //     this._ping(text);
29         // } else {
30         //     this.flush();
31         //     this.node = node;
32         //     this._ping(text);
33         // }
34     },
35     _ping: _.throttle(function(text) {
36         this.buffer = text;
37         this.flush();
38     }, 1000),
39     flush: function() {
40         if(this.buffer !== null) {
41             this.setText(this.buffer, this.node);
42             this.buffer = null;
43         }
44     },
45     setText: function(text, node) {
46         //this.canvas.wlxmlDocument.transform('setText', {node:node, text: text});
47         node.document.transaction(function() {
48             node.setText(text);
49         }, {
50             metadata:{
51                 description: gettext('Changing text')
52             }
53         });
54
55     }
56
57 });
58
59
60 var Canvas = function(wlxmlDocument, elements) {
61     this.elementsRegister = new ElementsRegister(documentElement.DocumentNodeElement, genericElement);
62
63     elements = [
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 || []);
70
71     (elements).forEach(function(elementDesc) {
72         this.elementsRegister.register(elementDesc);
73     }.bind(this));
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);
80 };
81
82 $.extend(Canvas.prototype, Backbone.Events, {
83
84     loadWlxmlDocument: function(wlxmlDocument) {
85         if(!wlxmlDocument) {
86             return false;
87         }
88
89         this.wlxmlListener.listenTo(wlxmlDocument);
90         this.wlxmlDocument = wlxmlDocument;
91         this.reloadRoot();
92     },
93
94     createElement: function(wlxmlNode) {
95         var Factory;
96         if(wlxmlNode.nodeType === Node.TEXT_NODE) {
97             Factory = documentElement.DocumentTextElement;
98         } else {
99             Factory = this.elementsRegister.getElement({tag: wlxmlNode.getTagName(), klass: wlxmlNode.getClass()});
100         }
101         return new Factory(wlxmlNode, this);
102     },
103
104     getDocumentElement: function(htmlElement) {
105         /* globals HTMLElement, Text */
106         if(!htmlElement || !(htmlElement instanceof HTMLElement || htmlElement instanceof Text)) {
107             return null;
108         }
109         var $element = $(htmlElement);
110         if(htmlElement.nodeType === Node.ELEMENT_NODE && $element.attr('document-node-element') !== undefined) {
111             return $element.data('canvas-element');
112         }
113
114         if(htmlElement.nodeType === Node.TEXT_NODE && $element.parent().attr('document-text-element') !== undefined) {
115             $element = $element.parent();
116         }
117
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');
121         }
122     },
123
124     reloadRoot: function() {
125         this.rootElement = this.createElement(this.wlxmlDocument.root);
126         this.wrapper.empty();
127         this.wrapper.append(this.rootElement.dom);
128     },
129
130     setupEventHandling: function() {
131         var canvas = this;
132
133         this.wrapper.on('keyup keydown keypress', function(e) {
134             keyboard.handleKey(e, canvas);
135         });
136
137         this.wrapper.on('mouseup', function() {
138             canvas.triggerSelectionChanged();
139         });
140
141         var mouseDown;
142         this.wrapper.on('mousedown', '[document-node-element], [document-text-element]', function(e) {
143             mouseDown = e.target;
144         });
145
146         this.wrapper.on('click', '[document-node-element], [document-text-element]', function(e) {
147             e.stopPropagation();
148             if(e.originalEvent.detail === 3) {
149                 e.preventDefault();
150                 canvas._moveCaretToTextElement(canvas.getDocumentElement(e.currentTarget), 'whole');
151             } else {
152                 if(mouseDown === e.target) {
153                     canvas.setCurrentElement(canvas.getDocumentElement(e.currentTarget), {caretTo: false});
154                 }
155             }
156         });
157
158         this.wrapper.on('paste', function(e) {
159             e.preventDefault();
160
161             var clipboardData = e.originalEvent.clipboardData;
162             if(!clipboardData || !clipboardData.getData) {
163                 return; // TODO: alert
164             }
165
166             var text = clipboardData.getData('text/plain').replace(/\r?\n|\r/g, ' '),
167                 cursor = canvas.getCursor(),
168                 element = cursor.getPosition().element,
169                 lhs, rhs;
170             
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});
176             } else {
177                 /* jshint noempty:false */
178                 // TODO: alert
179             }
180         });
181
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;
189                     }
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');
193                     }
194                     observer.observe(canvas.wrapper[0], config);
195
196                     var textElement = canvas.getDocumentElement(mutation.target),
197                         toSet = mutation.target.data !== utils.unicode.ZWS ? mutation.target.data : '';
198
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);
203                     }
204                 }
205             });
206         });
207         var config = { attributes: false, childList: false, characterData: true, subtree: true, characterDataOldValue: true};
208         observer.observe(this.wrapper[0], config);
209
210
211         this.wrapper.on('mouseover', '[document-node-element], [document-text-element]', function(e) {
212             var el = canvas.getDocumentElement(e.currentTarget);
213             if(!el) {
214                 return;
215             }
216             e.stopPropagation();
217             if(el instanceof documentElement.DocumentTextElement) {
218                 el = el.parent();
219             }
220             el.toggleLabel(true);
221         });
222         this.wrapper.on('mouseout', '[document-node-element], [document-text-element]', function(e) {
223             var el = canvas.getDocumentElement(e.currentTarget);
224             if(!el) {
225                 return;
226             }
227             e.stopPropagation();
228             if(el instanceof documentElement.DocumentTextElement) {
229                 el = el.parent();
230             }
231             el.toggleLabel(false);
232         });
233
234         this.eventBus.on('elementToggled', function(toggle, element) {
235             if(!toggle) {
236                 canvas.setCurrentElement(canvas.getPreviousTextElement(element));
237             }
238         });
239     },
240
241     view: function() {
242         return this.wrapper;
243     },
244
245     doc: function() {
246         return this.rootElement;
247     },
248
249     toggleElementHighlight: function(node, toggle) {
250         var element = utils.getElementForNode(node);
251         element.toggleHighlight(toggle);
252     },
253
254     getCursor: function() {
255         return new Cursor(this);
256     },
257
258     
259     getCurrentNodeElement: function() {
260         var htmlElement = this.wrapper.find('.current-node-element').parent()[0];
261         if(htmlElement) {
262             return this.getDocumentElement(htmlElement);
263         }
264     },
265
266     getCurrentTextElement: function() {
267         var htmlElement = this.wrapper.find('.current-text-element')[0];
268         if(htmlElement) {
269             return this.getDocumentElement(htmlElement);
270         }
271     },
272
273     getPreviousTextElement: function(relativeToElement, includeInvisible) {
274         return this.getNearestTextElement('above', relativeToElement, includeInvisible);
275     },
276
277     getNextTextElement: function(relativeToElement, includeInvisible) {
278         return this.getNearestTextElement('below', relativeToElement, includeInvisible);
279     },
280
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]));
285     },
286
287     contains: function(element) {
288         return element.dom.parents().index(this.wrapper) !== -1;
289     },
290
291     triggerSelectionChanged: function() {
292         this.trigger('selectionChanged', this.getSelection());
293     },
294
295     getSelection: function() {
296         return new Selection(this);
297     },
298
299     setCurrentElement: function(element, params) {
300         if(!element) {
301             logger.debug('Invalid element passed to setCurrentElement: ' + element);
302             return;
303         }
304
305         if(!(element instanceof documentElement.DocumentElement)) {
306             element = utils.getElementForNode(element);
307         }
308
309         if(!element || !this.contains(element)) {
310             logger.warning('Cannot set current element: element doesn\'t exist on canvas');
311             return;
312         }
313
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)) {
318                 return byBrowser;
319             }
320             return e.getVerticallyFirstTextElement();
321         }.bind(this);
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');
326             } else {
327                 this.wrapper.find('.current-node-element').removeClass('current-node-element');
328                 element._container().addClass('current-node-element');
329             }
330         }.bind(this);
331
332
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();
338
339         if(currentTextElement && !(currentTextElement.sameNode(textElementToLand))) {
340             this.wrapper.find('.current-text-element').removeClass('current-text-element');
341         }
342
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?
347             }
348         } else {
349             document.getSelection().removeAllRanges();
350         }
351
352         if(!(currentNodeElement && currentNodeElement.sameNode(nodeElementToLand))) {
353             _markAsCurrent(nodeElementToLand);
354         }
355         this.triggerSelectionChanged();
356     },
357
358     _moveCaretToTextElement: function(element, where) {
359         var range = document.createRange(),
360             node = element.dom.contents()[0];
361
362         if(typeof where !== 'number') {
363             range.selectNodeContents(node);
364         } else {
365             range.setStart(node, Math.min(node.data.length, where));
366         }
367         
368         if(where !== 'whole') {
369             var collapseArg = true;
370             if(where === 'end') {
371                 collapseArg = false;
372             }
373             range.collapse(collapseArg);
374         }
375         var selection = document.getSelection();
376
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.
380     },
381
382     setCursorPosition: function(position) {
383         if(position.element) {
384             this._moveCaretToTextElement(position.element, position.offset);
385         }
386     },
387
388     toggleGrid: function() {
389         this.wrapper.toggleClass('grid-on');
390         this.trigger('changed');
391     },
392     isGridToggled: function() {
393         return this.wrapper.hasClass('grid-on');
394     }
395 });
396
397
398 var isText = function(node) {
399     return node && node.nodeType === Node.TEXT_NODE && $(node.parentNode).is('[document-text-element]');
400 };
401
402 var Selection = function(canvas) {
403     this.canvas = canvas;
404     var nativeSelection = this.nativeSelection = window.getSelection();
405     Object.defineProperty(this, 'type', {
406         get: function() {
407             if(nativeSelection.focusNode) {
408                 if(nativeSelection.isCollapsed && isText(nativeSelection.focusNode)) {
409                     return 'caret';
410                 }
411                 if(isText(nativeSelection.focusNode) && isText(nativeSelection.anchorNode)) {
412                     return 'textSelection';
413                 }
414             }
415             if(canvas.getCurrentNodeElement()) {
416                 return 'node';
417             }
418         }
419     });
420 };
421
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});
431         }
432         if(this.type === 'textSelection') {
433             if(anchorNode.isSiblingOf(focusNode)) {
434                 return doc.createFragment(doc.TextRangeFragment, {
435                     node1: anchorNode,
436                     offset1: this.nativeSelection.anchorOffset,
437                     node2: focusNode,
438                     offset2: this.nativeSelection.focusOffset,
439                 });
440             }
441             else {
442                 var siblingParents = doc.getSiblingParents({node1: anchorNode, node2: focusNode});
443                 return doc.createFragment(doc.RangeFragment, {
444                     node1: siblingParents.node1,
445                     node2: siblingParents.node2
446                 });
447             }
448         }
449         if(this.type === 'node') {
450             return doc.createFragment(doc.NodeFragment, {node: this.canvas.getCurrentNodeElement().wlxmlNode});
451         }
452     },
453     sameAs: function(other) {
454         void(other);
455     }
456 });
457
458 var Cursor = function(canvas) {
459     this.canvas = canvas;
460     this.selection = window.getSelection();
461 };
462
463 $.extend(Cursor.prototype, {
464     sameAs: function(other) {
465         var same = true;
466         if(!other) {
467             return false;
468         }
469
470         ['focusNode', 'focusOffset', 'anchorNode', 'anchorOffset'].some(function(prop) {
471             same = same && this.selection[prop] === other.selection[prop];
472             if(!same) {
473                 return true; // break
474             }
475         }.bind(this));
476
477         return same;
478     },
479     isSelecting: function() {
480         var selection = window.getSelection();
481         return !selection.isCollapsed;
482     },
483     isSelectingWithinElement: function() {
484         return this.isSelecting() && this.getSelectionStart().element.sameNode(this.getSelectionEnd().element);
485     },
486     isWithinElement: function() {
487         return !this.isSelecting() || this.isSelectingWithinElement();
488     },
489     isSelectingSiblings: function() {
490         return this.isSelecting() && this.getSelectionStart().element.parent().sameNode(this.getSelectionEnd().element.parent());
491     },
492     getPosition: function() {
493         return this.getSelectionAnchor();
494     },
495     getSelectionStart: function() {
496         return this.getSelectionBoundry('start');
497     },
498     getSelectionEnd: function() {
499         return this.getSelectionBoundry('end');
500     },
501     getSelectionAnchor: function() {
502         return this.getSelectionBoundry('anchor');
503     },
504     getSelectionFocus: function() {
505         return this.getSelectionBoundry('focus');
506     },
507     getSelectionBoundry: function(which) {
508         /* globals window */
509         var selection = window.getSelection(),
510             anchorElement = this.canvas.getDocumentElement(selection.anchorNode),
511             focusElement = this.canvas.getDocumentElement(selection.focusNode);
512         
513         if((!anchorElement) || (anchorElement instanceof documentElement.DocumentNodeElement) || (!focusElement) || focusElement instanceof documentElement.DocumentNodeElement) {
514             return {};
515         }
516
517         if(which === 'anchor') {
518             return {
519                 element: anchorElement,
520                 offset: selection.anchorOffset,
521                 offsetAtBeginning: selection.anchorOffset === 0 || anchorElement.getText() === '',
522                 offsetAtEnd: selection.anchorNode.data.length === selection.anchorOffset || anchorElement.getText() === ''
523             };
524         }
525         if(which === 'focus') {
526             return {
527                 element: focusElement,
528                 offset: selection.focusOffset,
529                 offsetAtBeginning: selection.focusOffset === 0 || focusElement.getText() === '',
530                 offsetAtEnd: selection.focusNode.data.length === selection.focusOffset || focusElement.getText() === '',
531             };
532         }
533         
534         var getPlaceData = function(anchorFirst) {
535             var element, offset;
536             if(anchorFirst) {
537                 if(which === 'start') {
538                     element = anchorElement;
539                     offset = selection.anchorOffset;
540                 }
541                 else if(which === 'end') {
542                     element = focusElement;
543                     offset = selection.focusOffset;
544                 }
545             } else {
546                 if(which === 'start') {
547                     element = focusElement;
548                     offset = selection.focusOffset;
549                 }
550                 else if(which === 'end') {
551                     element = anchorElement;
552                     offset = selection.anchorOffset;
553                 }
554             }
555             return {element: element, offset: offset};
556         };
557
558         var anchorFirst, placeData, parent;
559
560         if(anchorElement.parent().sameNode(focusElement.parent())) {
561             parent = anchorElement.parent();
562             if(selection.anchorNode === selection.focusNode) {
563                 anchorFirst = selection.anchorOffset <= selection.focusOffset;
564             } else {
565                 anchorFirst = (parent.getFirst(anchorElement, focusElement) === anchorElement);
566             }
567             placeData = getPlaceData(anchorFirst);
568         } else {
569             /*jshint bitwise: false*/
570             anchorFirst = selection.anchorNode.compareDocumentPosition(selection.focusNode) & Node.DOCUMENT_POSITION_FOLLOWING;
571             placeData = getPlaceData(anchorFirst);
572         }
573
574         var nodeLen = (placeData.element.sameNode(focusElement) ? selection.focusNode : selection.anchorNode).length;
575         return {
576             element: placeData.element,
577             offset: placeData.offset,
578             offsetAtBeginning: placeData.offset === 0 || focusElement.getText() === '',
579             offsetAtEnd: nodeLen === placeData.offset || focusElement.getText() === ''
580         };
581     }
582 });
583
584 return {
585     fromXMLDocument: function(wlxmlDocument, elements) {
586         return new Canvas(wlxmlDocument, elements);
587     }
588 };
589
590 });