X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/a09318d74185278fa556af4a997e94b0d6999193..051d2e8a2e6cebc453bb855eb7bd4ff5bf0d3451:/modules/visualEditor.js diff --git a/modules/visualEditor.js b/modules/visualEditor.js index 38f3302..dc0b801 100644 --- a/modules/visualEditor.js +++ b/modules/visualEditor.js @@ -14,37 +14,70 @@ rng.modules.visualEditor = function(sandbox) { isDirty = true; }); - this.node.on('mouseover', '.rng', function(e) { $(e.target).addClass('rng-hover')}); - this.node.on('mouseout', '.rng', function(e) { $(e.target).removeClass('rng-hover')}); - this.node.on('click', '.rng', function(e) { + this.node.on('mouseover', '[wlxml-tag]', function(e) { $(e.target).addClass('rng-hover')}); + this.node.on('mouseout', '[wlxml-tag]', function(e) { $(e.target).removeClass('rng-hover')}); + this.node.on('click', '[wlxml-tag]', function(e) { + console.log('clicked node type: '+e.target.nodeType); 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(); - if(!anchor.hasClass('rng')) + if(!anchor.is('[wlxml-tag]')) return; view._markSelected(anchor); - }); + }); + + + var metaTable = this.metaTable = this.node.find('#rng-visualEditor-meta table'); + + this.metaTable.find('.rng-visualEditor-metaAddBtn').click(function() { + var newRow = view._addMetaRow('', ''); + $(newRow.find('td div')[0]).focus(); + isDirty = true; + }); + + this.metaTable.on('click', '.rng-visualEditor-metaRemoveBtn', function(e) { + $(e.target).closest('tr').remove(); + isDirty = true; + }); + + this.metaTable.on('keydown', '[contenteditable]', function(e) { + console.log(e.which); + if(e.which === 13) { + if($('*:focus').hasClass('rng-visualEditor-metaItemKey')) { + metaTable.find('.rng-visualEditor-metaItemValue').focus(); + } else { + var input = $(''); + input.appendTo('body').focus() + metaTable.find('.rng-visualEditor-metaAddBtn').focus(); + input.remove(); + } + e.preventDefault(); + } + + }); + }, getMetaData: function() { var toret = {}; - this.node.find('#rng-visualEditor-meta table tr').each(function() { + this.metaTable.find('tr').not('.rng-visualEditor-addMetaRow').each(function() { var tr = $(this); - var key = $(tr.find('td')[0]).html(); - var value = $(tr.find('td input')[0]).val(); + var inputs = $(this).find('td [contenteditable]'); + var key = $(inputs[0]).text(); + var value = $(inputs[1]).text(); toret[key] = value; }); console.log(toret); return toret; }, setMetaData: function(metadata) { - var table = this.node.find('#rng-visualEditor-meta table'); - table.empty(); + var view = this; + this.metaTable.find('tr').not('.rng-visualEditor-addMetaRow').remove(); _.each(_.keys(metadata), function(key) { - $(sandbox.getTemplate('metaItem')({key: key, value: metadata[key]})).appendTo(table); + view._addMetaRow(key, metadata[key]); }); }, setBody: function(HTMLTree) { @@ -54,8 +87,14 @@ rng.modules.visualEditor = function(sandbox) { return this.node.find('#rng-visualEditor-content').html(); }, _markSelected: function(node) { - this.node.find('.rng').removeClass('rng-current'); + this.node.find('.rng-current').removeClass('rng-current'); node.addClass('rng-current'); + }, + _addMetaRow: function(key, value) { + var addRow = this.metaTable.find('.rng-visualEditor-addMetaRow'); + var newRow = $(sandbox.getTemplate('metaItem')({key: key || '', value: value || ''})); + newRow.insertBefore(addRow); + return newRow; } }; view.setup();