X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/efe36f4f1b5df351eeb4d40a54c3900cf9a7079b..0990bc1dc7fad5165148a8993901138de9e22d0e:/src/editor/modules/sourceEditor/sourceEditor.js diff --git a/src/editor/modules/sourceEditor/sourceEditor.js b/src/editor/modules/sourceEditor/sourceEditor.js index e88e5e1..a2ec127 100644 --- a/src/editor/modules/sourceEditor/sourceEditor.js +++ b/src/editor/modules/sourceEditor/sourceEditor.js @@ -1,23 +1,45 @@ -define(function() { +define(['libs/jquery'], function($) { 'use strict'; return function(sandbox) { - var view = $(sandbox.getTemplate('main')()); + var view = $(sandbox.getTemplate('main')()), + documentIsDirty = true, + documentEditedHere = false, + wlxmlDocument; + + view.onShow = function() { + if(documentIsDirty) { + editor.setValue(wlxmlDocument.toXML()); + editor.gotoLine(0); + documentEditedHere = false; + + sandbox.publish('documentSet'); + documentIsDirty = false; + } + }; + + view.onHide = function() { + if(documentEditedHere) { + documentEditedHere = false; + wlxmlDocument.loadXML(editor.getValue()); + } + }; + /* globals ace */ var editor = ace.edit(view.find('#rng-sourceEditor-editor')[0]), session = editor.getSession(); - editor.setTheme("ace/theme/chrome"); - session.setMode("ace/mode/xml") + editor.setTheme('ace/theme/chrome'); + session.setMode('ace/mode/xml'); session.setUseWrapMode(true); $('textarea', view).on('keyup', function() { - sandbox.publish('xmlChanged'); + documentEditedHere = true; }); editor.getSession().on('change', function() { - sandbox.publish('xmlChanged'); + documentEditedHere = true; }); return { start: function() { @@ -27,9 +49,10 @@ return function(sandbox) { return view; }, setDocument: function(document) { - editor.setValue(document); - editor.gotoLine(0); - sandbox.publish('documentSet'); + wlxmlDocument = document; + wlxmlDocument.on('change', function() { + documentIsDirty = true; + }); }, getDocument: function() { return editor.getValue();