X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/83754888235eb240748983ec871475a69dfe7a42..2a0f7de048f49f0087caae5962f124dbbb06d69e:/src/editor/modules/metadataEditor/metadataEditor.js diff --git a/src/editor/modules/metadataEditor/metadataEditor.js b/src/editor/modules/metadataEditor/metadataEditor.js deleted file mode 100644 index 5530de9..0000000 --- a/src/editor/modules/metadataEditor/metadataEditor.js +++ /dev/null @@ -1,132 +0,0 @@ -define([ -'libs/jquery', -'libs/underscore', -'./transformations', -'libs/text!./templates/main.html', -'libs/text!./templates/item.html' -], function($, _, transformations, mainTemplate, itemTemplate) { - -'use strict'; - -return function(sandbox) { - - var currentNode; - - var view = { - node: $(_.template(mainTemplate)()), - setup: function() { - var view = this; - var metaTable = this.metaTable = this.node.find('table'); - - this.node.find('.rng-module-metadataEditor-addBtn').click(function() { - var newRow = view._addMetaRow('', ''); - $(newRow.find('td div')[0]).focus(); - }); - - this.metaTable.on('click', '.rng-visualEditor-metaRemoveBtn', function(e) { - $(e.target).closest('tr').remove(); - }); - - this.metaTable.on('keydown', '[contenteditable]', function(e) { - /* globals document */ - if(e.which === 13) { - if($(document.activeElement).hasClass('rng-module-metadataEditor-metaItemKey')) { - metaTable.find('.rng-module-metadataEditor-metaItemValue').focus(); - } else { - var input = $(''); - input.appendTo('body').focus(); - view.node.find('.rng-module-metadataEditor-addBtn').focus(); - input.remove(); - } - e.preventDefault(); - } - }); - - - var onKeyUp = function(e) { - if(e.which !== 13) { - var editable = $(e.target), - myIndex = metaTable.find('.'+editable.attr('class')).index(editable), - isKey = _.last(editable.attr('class').split('-')) === 'metaItemKey', - toSet = {}; - toSet[isKey ? 'key' : 'value'] = editable.text(); - currentNode.setMetadataRow(myIndex, toSet); - } - }; - this.metaTable.on('keyup', '[contenteditable]', _.throttle(onKeyUp, 500)); - }, - getMetadata: function() { - var toret = []; - this.node.find('tr').each(function() { - var inputs = $(this).find('td [contenteditable]'); - var key = $(inputs[0]).text(); - var value = $(inputs[1]).text(); - toret.push({key:key, value: value}); - }); - return toret; - }, - setMetadata: function(node) { - var view = this, - metadata = node.getMetadata(); - this.metaTable.find('tr').remove(); - metadata.forEach(function(row) { - view._addMetaRow(row.key, row.value); - }); - }, - _addMetaRow: function(key, value) { - var newRow = $(_.template(itemTemplate)({key: key || '', value: value || ''})); - newRow.appendTo(this.metaTable); - return newRow; - } - }; - - view.setup(); - - return { - start: function() { - sandbox.publish('ready'); - }, - setDocument: function(document) { - document.on('change', function(event) { - if(event.type === 'nodeMetadataChange' && event.meta.node.sameNode(currentNode)) { - view.setMetadata(currentNode); - } - }); -// view.setMetadata(transformations.getMetadata(xml)); - // sandbox.publish('metadataSet'); to wywalki - }, - setNodeElement: function(node) { - if(currentNode && currentNode.sameNode(node)) { - return; - } - currentNode = node; - view.setMetadata(node); - }, - getMetadata: function() { - return transformations.getXML(view.getMetadata()); - }, - getView: function() { - return view.node; - }, - attachMetadata: function(document) { - var toret = $('
'); - toret.append($(document)); - var meta = $('\n').append(transformations.getXML(view.getMetadata())); - - var metadata = toret.find('metadata'); - if(metadata.length === 0) { - var section = toret.find('section'); - section = section.length ? $(section[0]) : null; - if(section) { - section.prepend(meta); - } - } else { - metadata.replaceWith(meta); - } - return toret.html(); - } - - }; -}; - -}); \ No newline at end of file