X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/ebaba7ac4948ae4280dea0a623045ffb6d5a722f..c0e11a8f6d0d9a4c030aa90fe91f0fc49cd05e0e:/modules/visualEditor.js
diff --git a/modules/visualEditor.js b/modules/visualEditor.js
index 5833b71..f3c0a5c 100644
--- a/modules/visualEditor.js
+++ b/modules/visualEditor.js
@@ -3,6 +3,7 @@ rng.modules.visualEditor = function(sandbox) {
var view = {
node: $(sandbox.getTemplate('main')()),
+ currentNode: null,
setup: function() {
var view = this;
@@ -21,7 +22,7 @@ rng.modules.visualEditor = function(sandbox) {
view._markSelected($(e.target));
});
- this.node.on('keyup', function(e) {
+ this.node.on('keyup', '#rng-visualEditor-contentWrapper', function(e) {
var anchor = $(window.getSelection().anchorNode);
if(anchor[0].nodeType === Node.TEXT_NODE)
anchor = anchor.parent();
@@ -31,10 +32,11 @@ rng.modules.visualEditor = function(sandbox) {
});
- this.metaTable = this.node.find('#rng-visualEditor-meta table');
+ var metaTable = this.metaTable = this.node.find('#rng-visualEditor-meta table');
- this.metaTable.find('.rng-visualEditor-metaAddBtn').click(function() {
- view._addMetaRow();
+ this.node.find('.rng-visualEditor-metaAddBtn').click(function() {
+ var newRow = view._addMetaRow('', '');
+ $(newRow.find('td div')[0]).focus();
isDirty = true;
});
@@ -42,15 +44,31 @@ rng.modules.visualEditor = function(sandbox) {
$(e.target).closest('tr').remove();
isDirty = true;
});
+
+ this.metaTable.on('keydown', '[contenteditable]', function(e) {
+ console.log(e.which);
+ if(e.which === 13) {
+ if($(document.activeElement).hasClass('rng-visualEditor-metaItemKey')) {
+ metaTable.find('.rng-visualEditor-metaItemValue').focus();
+ } else {
+ var input = $('');
+ input.appendTo('body').focus()
+ view.node.find('.rng-visualEditor-metaAddBtn').focus();
+ input.remove();
+ }
+ e.preventDefault();
+ }
+
+ });
},
getMetaData: function() {
var toret = {};
- this.metaTable.find('tr').not('.rng-visualEditor-addMetaRow').each(function() {
+ this.metaTable.find('tr').each(function() {
var tr = $(this);
- var inputs = $(this).find('td input');
- var key = $(inputs[0]).val()
- var value = $(inputs[1]).val()
+ var inputs = $(this).find('td [contenteditable]');
+ var key = $(inputs[0]).text();
+ var value = $(inputs[1]).text();
toret[key] = value;
});
console.log(toret);
@@ -58,7 +76,7 @@ rng.modules.visualEditor = function(sandbox) {
},
setMetaData: function(metadata) {
var view = this;
- this.metaTable.find('tr').not('.rng-visualEditor-addMetaRow').remove();
+ this.metaTable.find('tr').remove();
_.each(_.keys(metadata), function(key) {
view._addMetaRow(key, metadata[key]);
});
@@ -72,15 +90,114 @@ rng.modules.visualEditor = function(sandbox) {
_markSelected: function(node) {
this.node.find('.rng-current').removeClass('rng-current');
node.addClass('rng-current');
+ this.currentNode = node;
+ mediator.nodeSelected(node);
+ },
+ selectNode: function(node) {
+ view._markSelected(node);
+ var range = document.createRange();
+ range.selectNodeContents(node[0]);
+ range.collapse(false);
+
+ var selection = document.getSelection();
+ selection.removeAllRanges()
+ selection.addRange(range);
+ },
+ selectFirstNode: function() {
+ var firstNodeWithText = this.node.find('[wlxml-tag]').filter(function() {
+ return $(this).clone().children().remove().end().text().trim() !== '';
+ }).first();
+ var node;
+ if(firstNodeWithText.length)
+ node = $(firstNodeWithText[0])
+ else {
+ node = this.node.find('[wlxml-class|="p"]')
+ }
+ this.selectNode(node);
},
_addMetaRow: function(key, value) {
- var addRow = this.metaTable.find('.rng-visualEditor-addMetaRow');
- $(sandbox.getTemplate('metaItem')({key: key || '', value: value || ''})).insertBefore(addRow);
+ var newRow = $(sandbox.getTemplate('metaItem')({key: key || '', value: value || ''}));
+ newRow.appendTo(this.metaTable);
+ return newRow;
}
};
+
+
+ var sideBarView = {
+ node: view.node.find('#rng-visualEditor-sidebar'),
+ setup: function() {
+ var view = this;
+ this.node.find('#rng-visualEditor-sidebarButtons a').click(function(e) {
+ e.preventDefault();
+ var target = $(e.currentTarget);
+ if(!target.attr('data-content-id'))
+ return;
+ view.selectTab(target.attr('data-content-id'));
+ });
+ view.selectTab('rng-visualEditor-edit');
+
+ view.node.on('change', '.rng-visualEditor-editPaneNodeForm select', function(e) {
+ var target = $(e.target);
+ var attr = target.attr('id').split('-')[2].split('editPane')[1].substr(0,3) === 'Tag' ? 'tag' : 'class';
+ mediator.getCurrentNode().attr('wlxml-'+attr, target.val());
+ isDirty = true;
+ });
+
+ view.node.on('change', '.rng-visualEditor-editPaneSelectionForm select', function(e) {
+ var target = $(e.target);
+ var selection = window.getSelection();
+ if(selection.anchorNode === selection.focusNode && selection.anchorNode.nodeType === Node.TEXT_NODE) {
+ var startOffset = selection.anchorOffset;
+ var endOffset = selection.focusOffset;
+ if(startOffset > endOffset) {
+ var tmp = startOffset;
+ startOffset = endOffset;
+ endOffset = tmp;
+ }
+ var node = selection.anchorNode;
+ var prefix = node.data.substr(0, startOffset);
+ var suffix = node.data.substr(endOffset);
+ var core = node.data.substr(startOffset, endOffset - startOffset);
+ var newNode = $('' + core + '');
+ $(node).replaceWith(newNode);
+ newNode.before(prefix);
+ newNode.after(suffix);
+ mediator.nodeCreated(newNode);
+ isDirty = true;
+ }
+ });
+ },
+ selectTab: function(id) {
+ this.node.find('.rng-visualEditor-sidebarContentItem').hide();
+ this.node.find('#'+id).show();
+ this.node.find('#rng-visualEditor-sidebarButtons li').removeClass('active');
+ this.node.find('#rng-visualEditor-sidebarButtons li a[data-content-id=' + id + ']').parent().addClass('active');
+
+ },
+ updateEditPane: function(node) {
+ var pane = this.node.find('#rng-visualEditor-edit');
+ pane.html( $(sandbox.getTemplate('editPane')({tag: node.attr('wlxml-tag'), klass: node.attr('wlxml-class')})));
+ }
+ }
+
view.setup();
+ sideBarView.setup();
+
+ var mediator = {
+ getCurrentNode: function() {
+ return view.currentNode;
+ },
+ nodeCreated: function(node) {
+ view.selectNode(node);
+
+ },
+ nodeSelected: function(node) {
+ sideBarView.updateEditPane(node);
+ }
+ }
var isDirty = false;
+ var wasShownAlready = false;
return {
@@ -104,6 +221,12 @@ rng.modules.visualEditor = function(sandbox) {
},
setDirty: function(dirty) {
isDirty = dirty;
+ },
+ onShowed: function() {
+ if(!wasShownAlready) {
+ wasShownAlready = true;
+ view.selectFirstNode();
+ }
}
}