Refactoring
[fnpeditor.git] / modules / documentCanvas / canvas / canvas.js
index 1b39183..1efd687 100644 (file)
@@ -3,8 +3,9 @@ define([
 'libs/underscore-min',
 'libs/backbone-min',
 'modules/documentCanvas/canvas/documentElement',
+'modules/documentCanvas/canvas/keyboard',
 'modules/documentCanvas/canvas/utils'
-], function($, _, Backbone, documentElement, utils) {
+], function($, _, Backbone, documentElement, keyboard, utils) {
     
 'use strict';
 
@@ -141,176 +142,9 @@ $.extend(Canvas.prototype, {
             
             this.d = this.wrapper.children(0);
 
-            var KEYS = {
-                ENTER: 13,
-                ARROW_LEFT: 37,
-                ARROW_UP: 38,
-                ARROW_RIGHT: 39,
-                ARROW_DOWN: 40,
-                BACKSPACE: 8,
-                DELETE: 46,
-                X: 88
-            }
-
-            this.wrapper.on('keyup', function(e) {
-                if(e.which >= 37 && e.which <= 40) {
-                    var element = canvas.getCursor().getPosition().element,
-                        caretTo = false;
-                    if(!element) {
-                        // Chrome hack
-                        var direction;
-                        if(e.which === KEYS.ARROW_LEFT  || e.which === KEYS.ARROW_UP) {
-                            direction = 'above';
-                            caretTo = 'end';
-                        } else {
-                            direction = 'below';
-                            caretTo = 'start';
-                        }
-                        element = canvas.getDocumentElement(utils.nearestInDocumentOrder('[document-text-element]:visible', direction, window.getSelection().focusNode));
-                    }
-                    canvas.setCurrentElement(element, {caretTo: caretTo});
-                }
-            });
-         
-            this.wrapper.on('keydown', function(e) {
-                var cursor = canvas.getCursor(),
-                    position = canvas.getCursor().getPosition(),
-                    element = position.element;
-                if(e.which >= 37 && e.which <= 40) {
-
-                    if(element && (element instanceof documentElement.DocumentTextElement)) {
-                        if(element.isEmpty()) {
-                            var direction, caretTo;
-                            if(e.which === KEYS.ARROW_LEFT  || e.which === KEYS.ARROW_UP) {
-                                direction = 'above';
-                                caretTo = 'end';
-                            } else {
-                                direction = 'below';
-                                caretTo = 'start';
-                            }
-                            var el = canvas.getDocumentElement(utils.nearestInDocumentOrder('[document-text-element]', direction, window.getSelection().focusNode))
-                            canvas.setCurrentElement(element, {caretTo: caretTo});
-                        } else {
-                            var txt = element.dom().contents()[0].data;
-                            if(e.which === KEYS.ARROW_LEFT && position.offset > 1 && txt.charAt(position.offset-2) === utils.unicode.ZWS) {
-                                e.preventDefault();
-                                canvas._moveCaretToTextElement(element, position.offset-2);
-                            }
-                            if(e.which === KEYS.ARROW_RIGHT && position.offset < txt.length - 1 && txt.charAt(position.offset+1) === utils.unicode.ZWS) {
-                                e.preventDefault();
-                                canvas._moveCaretToTextElement(element, position.offset+2);
-                            }
-                        }
-                    }
-
-
-                }
-
-                var selectsWholeTextElement = function() {
-                    if(cursor.isSelecting() && cursor.getSelectionStart().offsetAtBeginning && cursor.getSelectionEnd().offsetAtEnd)
-                        return true;
-                    return false;
-                }
-
-                if(e.which === KEYS.X && e.ctrlKey && selectsWholeTextElement()) {
-                    e.preventDefault();
-                }
-
-                if(e.which === KEYS.BACKSPACE || e.which === KEYS.DELETE) {
-                    if(cursor.isSelecting() && !cursor.isSelectingWithinElement()) {
-                        e.preventDefault();
-                        return;
-                    }
-                        
-                    var cursorAtOperationEdge = position.offsetAtBeginning;
-                    if(e.which === KEYS.DELETE) {
-                        cursorAtOperationEdge = position.offsetAtEnd;
-                    }
-
-                    var willDeleteWholeText = function() {
-                        return element.getText().length === 1 || selectsWholeTextElement();
-                    }
-
-                    if(willDeleteWholeText()) {
-                        e.preventDefault();
-                        element.setText('');
-                    }
-                    else if(element.isEmpty()) {
-
-                        var direction = 'above',
-                            caretTo = 'end';
-                            
-                        if(e.which === KEYS.DELETE) {
-                            direction = 'below';
-                            caretTo = 'start';
-                        }
-
-                        e.preventDefault();
-
-                        var parent = element.parent(),
-                            grandParent = parent ? parent.parent() : null,
-                            goto;
-                        if(parent.children().length === 1 && parent.children()[0].sameNode(element)) {
-                            if(grandParent && grandParent.children().length === 1) {
-                                goto = grandParent.append({text: ''});
-                            } else {
-                                goto = canvas.getDocumentElement(utils.nearestInDocumentOrder('[document-text-element]', direction, element.dom()[0]));
-                            }
-                            parent.detach();
-                        } else {
-                            goto = canvas.getDocumentElement(utils.nearestInDocumentOrder('[document-text-element]', direction, element.dom()[0]));
-                            element.detach();
-                        }
-                        canvas.setCurrentElement(goto, {caretTo: caretTo});
-                        canvas.publisher('contentChanged');
-                    }
-                    else if(cursorAtOperationEdge) {
-                        // todo
-                        e.preventDefault();
-                    }
-                }
-
-                if(e.which === KEYS.ENTER) {
-                    e.preventDefault();
-                    var cursor = canvas.getCursor(),
-                        position = cursor.getPosition(),
-                        element = position.element;
-
-                    if(!cursor.isSelecting()) {
-                        if(e.ctrlKey) {
-                            var added = element.after({tag: 'block'});
-                            added.append({text:''});
-                            canvas.setCurrentElement(added, {caretTo: 'start'});
-
-                        } else {
-
-                            if(!(element.parent().parent())) {
-                                return false; // top level element is unsplittable
-                            }
-
-                            var elements = position.element.split({offset: position.offset}),
-                                newEmpty,
-                                goto,
-                                gotoOptions;
-
-                            if(position.offsetAtBeginning)
-                                newEmpty = elements.first;
-                            else if(position.offsetAtEnd)
-                                newEmpty = elements.second;
-                            
-                            if(newEmpty) {
-                                goto = newEmpty.append(documentElement.DocumentTextElement.create({text: ''}, this));
-                                gotoOptions = {};
-                            } else {
-                                goto = elements.second;
-                                gotoOptions = {caretTo: 'start'};
-                            }
-
-                            canvas.setCurrentElement(goto, gotoOptions);
-                        }
-                    }
-                }
-            });
+            this.wrapper.on('keyup keydown keypress', function(e) {
+                keyboard.handleKey(e, this);
+            }.bind(this));
 
             this.wrapper.on('click', '[document-node-element], [document-text-element]', function(e) {
                 e.stopPropagation();
@@ -320,8 +154,14 @@ $.extend(Canvas.prototype, {
             var observer = new MutationObserver(function(mutations) {
                 mutations.forEach(function(mutation) {
                     if(documentElement.DocumentTextElement.isContentContainer(mutation.target)) {
+                        observer.disconnect();
                         if(mutation.target.data === '')
                             mutation.target.data = utils.unicode.ZWS;
+                        else if(mutation.oldValue === utils.unicode.ZWS) {
+                            mutation.target.data = mutation.target.data.replace(utils.unicode.ZWS, '');
+                            canvas._moveCaretToTextElement(canvas.getDocumentElement(mutation.target), 'end');
+                        }
+                        observer.observe(canvas.d[0], config);
                         canvas.publisher('contentChanged');
                     }
                 });
@@ -351,8 +191,7 @@ $.extend(Canvas.prototype, {
 
             this.eventBus.on('elementToggled', function(toggle, element) {
                 if(!toggle) {
-                    element = canvas.getDocumentElement(utils.nearestInDocumentOrder('[document-text-element]:visible', 'above', element.dom()[0]));
-                    canvas.setCurrentElement(element);
+                    canvas.setCurrentElement(element.getPreviousTextElement());
                 }
             })
 
@@ -388,7 +227,7 @@ $.extend(Canvas.prototype, {
             suffixOutside = textNode2.getText().substr(params.offsetEnd)
         ;
         
-        var wrapperElement = documentElement.DocumentNodeElement.create({tag: params._with.tag, klass: params._with.klass});
+        var wrapperElement = documentElement.DocumentNodeElement.create({tag: params._with.tag, klass: params._with.klass}, this);
         textNode1.after(wrapperElement);
         textNode1.detach();
         
@@ -739,40 +578,23 @@ $.extend(Cursor.prototype, {
             anchorElement = this.canvas.getDocumentElement(selection.anchorNode),
             focusElement = this.canvas.getDocumentElement(selection.focusNode);
         
-        var getOffset = function(where) {
-            var toret, node;
-            if(where === 'anchor') {
-                node = selection.anchorNode;
-                toret = selection.anchorOffset;
-            } else {
-                node = selection.focusNode;
-                toret = selection.focusOffset;
-            }
-                        
-            if(toret === 1 && node.data.charAt(0) === utils.unicode.ZWS)
-                toret = 0;
-            else if((toret === node.data.length - 1) && (node.data.charAt(node.data.length - 1) === utils.unicode.ZWS))
-                toret++;
-            return toret;
-        }
-
         if((!anchorElement) || (anchorElement instanceof documentElement.DocumentNodeElement) || (!focusElement) || focusElement instanceof documentElement.DocumentNodeElement)
             return {};
 
         if(which === 'anchor') {
             return {
                 element: anchorElement,
-                offset: getOffset('anchor'),
-                offsetAtBeginning: getOffset('anchor') === 0,
-                offsetAtEnd: selection.anchorNode.data.length === getOffset('anchor')
+                offset: selection.anchorOffset,
+                offsetAtBeginning: selection.anchorOffset === 0,
+                offsetAtEnd: selection.anchorNode.data.length === selection.anchorOffset
             };
         }
         if(which === 'focus') {
             return {
                 element: focusElement,
-                offset: getOffset('focus'),
-                offsetAtBeginning: getOffset('focus') === 0,
-                offsetAtEnd: selection.focusNode.data.length === getOffset('focus')
+                offset: selection.focusOffset,
+                offsetAtBeginning: selection.focusOffset === 0,
+                offsetAtEnd: selection.focusNode.data.length === selection.focusOffset
             };
         }
         
@@ -785,30 +607,30 @@ $.extend(Cursor.prototype, {
             if(anchorFirst) {
                 if(which === 'start') {
                     element = anchorElement;
-                    offset = getOffset('anchor')
+                    offset = selection.anchorOffset
                 }
                 else if(which === 'end') {
                     element = focusElement,
-                    offset = getOffset('focus')
+                    offset = selection.focusOffset
                 }
             } else {
                 if(which === 'start') {
                     element = focusElement,
-                    offset = getOffset('focus')
+                    offset = selection.focusOffset
                 }
                 else if(which === 'end') {
                     element = anchorElement;
-                    offset = getOffset('anchor')
+                    offset = selection.anchorOffset
                 }
             }
         } else {
             // TODO: Handle order via https://developer.mozilla.org/en-US/docs/Web/API/Node.compareDocumentPosition
             if(which === 'start') {
                 element = anchorElement;
-                offset = getOffset('anchor')
+                offset = selection.anchorOffset
             } else {
                 element = focusElement;
-                offset = getOffset('focus')
+                offset = selection.focusOffset
             }
         }