Visual editor - grid toggle
[fnpeditor.git] / modules / visualEditor.js
index 702c812..39859a8 100644 (file)
@@ -15,8 +15,8 @@ rng.modules.visualEditor = function(sandbox) {
                 isDirty = true;\r
             });\r
 
-            this.node.on('mouseover', '[wlxml-tag]', function(e) { $(e.target).addClass('rng-hover')});\r
-            this.node.on('mouseout', '[wlxml-tag]', function(e) { $(e.target).removeClass('rng-hover')});\r
+            this.node.on('mouseover', '[wlxml-tag]', function(e) { mediator.nodeHovered($(e.target));});\r
+            this.node.on('mouseout', '[wlxml-tag]', function(e) { mediator.nodeBlured($(e.target));});\r
             this.node.on('click', '[wlxml-tag]', function(e) {\r
                 console.log('clicked node type: '+e.target.nodeType);\r
                 view._markSelected($(e.target));\r
@@ -38,6 +38,7 @@ rng.modules.visualEditor = function(sandbox) {
                     if(anchor[0].nodeType === Node.TEXT_NODE)\r
                         anchor = anchor.parent();\r
                     var newNode = anchor.clone().empty();\r
+                    newNode.attr('id', '');\r
                     anchor.after(newNode);\r
                     view.selectNode(newNode);\r
                 }\r
@@ -72,7 +73,27 @@ rng.modules.visualEditor = function(sandbox) {
                 }\r
                 \r
             });\r
-
+            \r
+            \r
+            var observer = new MutationObserver(function(mutations) {\r
+              mutations.forEach(function(mutation) {\r
+                if(mutation.addedNodes.length > 0) {\r
+                    console.log(mutation.addedNodes);\r
+                }\r
+                _.each(mutation.addedNodes, function(node) {\r
+                    node = $(node);\r
+                    node.parent().find('[wlxml-tag]').each(function() {\r
+                        tag = $(this);\r
+                        if(!tag.attr('id'))\r
+                            tag.attr('id', 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);}));\r
+                    });\r
+                });\r
+              });    \r
+            });\r
+            var config = { attributes: true, childList: true, characterData: true, subtree: true };\r
+            observer.observe(this.node.find('#rng-visualEditor-contentWrapper')[0], config);\r
+            \r
+            this.gridToggled = false;
         },\r
         getMetaData: function() {\r
             var toret = {};\r
@@ -115,6 +136,29 @@ rng.modules.visualEditor = function(sandbox) {
             selection.removeAllRanges()\r
             selection.addRange(range);\r
         },\r
+        selectNodeById: function(id) {\r
+            var node = this.node.find('#'+id);\r
+            if(node)\r
+                this.selectNode(node);\r
+        },\r
+        highlightNode: function(node) {\r
+            if(!this.gridToggled)\r
+                node.addClass('rng-hover');\r
+        },\r
+        dimNode: function(node) {\r
+            if(!this.gridToggled)\r
+                node.removeClass('rng-hover');\r
+        },\r
+        highlightNodeById: function(id) {\r
+            var node = this.node.find('#'+id);\r
+            if(node)\r
+                this.highlightNode(node);\r
+        },\r
+        dimNodeById: function(id) {\r
+            var node = this.node.find('#'+id);\r
+            if(node)\r
+                this.dimNode(node);\r
+        },\r
         selectFirstNode: function() {\r
             var firstNodeWithText = this.node.find('[wlxml-tag]').filter(function() {\r
                 return $(this).clone().children().remove().end().text().trim() !== '';\r
@@ -131,6 +175,10 @@ rng.modules.visualEditor = function(sandbox) {
             var newRow = $(sandbox.getTemplate('metaItem')({key: key || '', value: value || ''}));\r
             newRow.appendTo(this.metaTable);\r
             return newRow;\r
+        },\r
+        toggleGrid: function(toggle) {\r
+            this.node.find('[wlxml-tag]').toggleClass('rng-hover', toggle);\r
+            this.gridToggled = toggle;\r
         }\r
     };\r
     \r
@@ -178,6 +226,21 @@ rng.modules.visualEditor = function(sandbox) {
                     isDirty = true;\r
                 }\r
             });\r
+            \r
+            view.node.on('click', '.rng-visualEditor-editPaneSurrouding a', function(e) {\r
+                var target = $(e.target);\r
+                mediator.nodeDimmedById(target.attr('data-id'));\r
+                mediator.nodeSelectedById(target.attr('data-id'));\r
+            });\r
+            \r
+            view.node.on('mouseenter', '.rng-visualEditor-editPaneSurrouding a', function(e) {\r
+                var target = $(e.target);\r
+                mediator.nodeHighlightedById(target.attr('data-id')); \r
+            });\r
+            view.node.on('mouseleave', '.rng-visualEditor-editPaneSurrouding a', function(e) {\r
+                var target = $(e.target);\r
+                mediator.nodeDimmedById(target.attr('data-id')); \r
+            });\r
         },\r
         selectTab: function(id) {\r
            this.node.find('.rng-visualEditor-sidebarContentItem').hide();\r
@@ -189,11 +252,47 @@ rng.modules.visualEditor = function(sandbox) {
         updateEditPane: function(node) {\r
             var pane = this.node.find('#rng-visualEditor-edit');\r
             pane.html( $(sandbox.getTemplate('editPane')({tag: node.attr('wlxml-tag'), klass: node.attr('wlxml-class')})));\r
+            \r
+            var parent = {\r
+                repr: node.parent().attr('wlxml-tag') + ' / ' + (node.parent().attr('wlxml-class') || '[[no class]]'),\r
+                id: node.parent().attr('id')\r
+            }\r
+            var children = [];\r
+            node.children().each(function() {\r
+                var child = $(this);\r
+                children.push({repr: child.attr('wlxml-tag') + ' / ' + (child.attr('wlxml-class') || '[[no class]]'), id: child.attr('id')});\r
+            });\r
+            var naviTemplate = sandbox.getTemplate('editPaneNavigation')({parent: parent, children: children});\r
+            pane.find('.rng-visualEditor-editPaneSurrouding > div').html($(naviTemplate));\r
+        },\r
+        highlightNode: function(id) {\r
+            var pane = this.node.find('#rng-visualEditor-edit');\r
+            pane.find('a[data-id="'+id+'"]').addClass('rng-hover');\r
+        },\r
+        dimNode: function(id) {\r
+            var pane = this.node.find('#rng-visualEditor-edit');\r
+            pane.find('a[data-id="' +id+'"]').removeClass('rng-hover');\r
+        }\r
+    }\r
+    \r
+    var toolbarView = {\r
+        node: view.node.find('#rng-visualEditor-toolbar'),\r
+        setup: function() {\r
+            var view = this;\r
+            \r
+            view.node.find('button').click(function(e) {\r
+                var btn = $(e.currentTarget);\r
+                if(btn.attr('data-btn-type') === 'toggle') {\r
+                    btn.toggleClass('active')\r
+                    mediator.toolbarButtonToggled(btn.attr('data-btn'), btn.hasClass('active'));\r
+                }\r
+            });\r
         }\r
     }\r
     \r
     view.setup();\r
     sideBarView.setup();\r
+    toolbarView.setup();\r
     \r
     var mediator = {\r
         getCurrentNode: function() {\r
@@ -205,7 +304,29 @@ rng.modules.visualEditor = function(sandbox) {
         },\r
         nodeSelected: function(node) {\r
             sideBarView.updateEditPane(node);\r
+        },\r
+        nodeSelectedById: function(id) {\r
+            view.selectNodeById(id);\r
+        },\r
+        nodeHighlightedById: function(id) {\r
+            view.highlightNodeById(id);\r
+        },\r
+        nodeDimmedById: function(id) {\r
+            view.dimNodeById(id);\r
+        },\r
+        toolbarButtonToggled: function(btn, toggle) {\r
+            if(btn === 'grid')\r
+                view.toggleGrid(toggle);\r
+        },\r
+        nodeHovered: function(node) {\r
+            view.highlightNode(node);\r
+            sideBarView.highlightNode(node.attr('id'));\r
+        },\r
+        nodeBlured: function(node) {\r
+            view.dimNode(node);\r
+            sideBarView.dimNode(node.attr('id'));\r
         }\r
+        \r
     }\r
     \r
     var isDirty = false;\r