Introducing Ace as the source editor
[fnpeditor.git] / modules / visualEditor.js
index d8b30b7..38f3302 100644 (file)
@@ -3,6 +3,32 @@ rng.modules.visualEditor = function(sandbox) {
 \r
     var view = {\r
         node: $(sandbox.getTemplate('main')()),\r
 \r
     var view = {\r
         node: $(sandbox.getTemplate('main')()),\r
+        setup: function() {\r
+            var view = this;\r
+
+            this.node.find('#rng-visualEditor-content').on('keyup', function() {\r
+                isDirty = true;\r
+            });\r
+            \r
+            this.node.find('#rng-visualEditor-meta').on('keyup', function() {\r
+                isDirty = true;\r
+            });\r
+
+            this.node.on('mouseover', '.rng', function(e) { $(e.target).addClass('rng-hover')});\r
+            this.node.on('mouseout', '.rng', function(e) { $(e.target).removeClass('rng-hover')});\r
+            this.node.on('click', '.rng', function(e) {\r
+                view._markSelected($(e.target));\r
+            });\r
+\r
+            this.node.on('keyup', function(e) {\r
+                var anchor = $(window.getSelection().anchorNode);\r
+                if(anchor[0].nodeType === Node.TEXT_NODE)\r
+                    anchor = anchor.parent();\r
+                if(!anchor.hasClass('rng'))\r
+                    return;\r
+                view._markSelected(anchor);\r
+            });
+        },\r
         getMetaData: function() {\r
             var toret = {};\r
             this.node.find('#rng-visualEditor-meta table tr').each(function() {\r
         getMetaData: function() {\r
             var toret = {};\r
             this.node.find('#rng-visualEditor-meta table tr').each(function() {\r
@@ -25,21 +51,18 @@ rng.modules.visualEditor = function(sandbox) {
             this.node.find('#rng-visualEditor-content').html(HTMLTree);\r
         },\r
         getBody: function() {\r
             this.node.find('#rng-visualEditor-content').html(HTMLTree);\r
         },\r
         getBody: function() {\r
-            return this.find('#rng-visualEditor-content').html();\r
-        }   \r
+            return this.node.find('#rng-visualEditor-content').html();\r
+        }, \r
+        _markSelected: function(node) {\r
+            this.node.find('.rng').removeClass('rng-current');\r
+            node.addClass('rng-current');\r
+        }\r
     };\r
     };\r
+    view.setup();\r
     \r
     var isDirty = false;\r
     \r
     \r
     \r
     var isDirty = false;\r
     \r
     \r
-    $('#rng-visualEditor-content', view).on('keyup', function() {\r
-        isDirty = true;\r
-    });\r
-    \r
-    $('#rng-visualEditor-meta', view).on('keyup', function() {\r
-        isDirty = true;\r
-    });\r
-    \r
     return {\r
         start: function() {\r
             sandbox.publish('ready');\r
     return {\r
         start: function() {\r
             sandbox.publish('ready');\r