'libs/underscore',
'fnpjs/layout',
'fnpjs/vbox',
+'fnpjs/logging/logging',
'views/tabs/tabs',
'libs/text!./mainLayout.html',
'libs/text!./editingLayout.html',
'libs/text!./diffLayout.html',
-], function(_, layout, vbox, tabs, mainLayoutTemplate, visualEditingLayoutTemplate, diffLayoutTemplate) {
+], function(_, layout, vbox, logging, tabs, mainLayoutTemplate, visualEditingLayoutTemplate, diffLayoutTemplate) {
'use strict';
return function(sandbox) {
/* globals gettext */
+
+ var logger = logging.getLogger('editor.modules.rng');
function addMainTab(title, slug, view) {
views.mainTabs.addTab(title, slug, view);
sandbox.getModule('nodePane').setNodeElement(nodeElement);
sandbox.getModule('nodeFamilyTree').setElement(nodeElement);
sandbox.getModule('nodeBreadCrumbs').setNodeElement(nodeElement);
+ sandbox.getModule('documentToolbar').setNodeElement(nodeElement);
+ sandbox.getModule('metadataEditor').setNodeElement(nodeElement);
},
updateCurrentTextElement: function(textElement) {
sandbox.getModule('nodeFamilyTree').setElement(textElement);
};
views.visualEditing.setView('rightColumn', views.visualEditingSidebar.getAsView());
- addMainTab('Edytor', 'editor', views.visualEditing.getAsView());
+ addMainTab(gettext('Editor'), 'editor', views.visualEditing.getAsView());
addMainTab(gettext('Source'), 'sourceEditor', '');
- addMainTab('Historia', 'history', views.diffLayout.getAsView());
+ addMainTab(gettext('History'), 'history', views.diffLayout.getAsView());
sandbox.getDOM().append(views.mainLayout.getAsView());
views.visualEditingSidebar.addTab({icon: 'pencil'}, 'edit', views.currentNodePaneLayout.getAsView());
+ var wlxmlDocument, documentIsDirty;
/* Events handling */
_.each(['sourceEditor', 'documentCanvas', 'documentToolbar', 'nodePane', 'metadataEditor', 'nodeFamilyTree', 'nodeBreadCrumbs', 'mainBar', 'indicator', 'documentHistory', 'diffViewer'], function(moduleName) {
sandbox.getModule(moduleName).start();
});
+
+ wlxmlDocument = sandbox.getModule('data').getDocument();
+ documentIsDirty = false;
+ wlxmlDocument.on('change', function() {
+ documentIsDirty = true;
+ });
+ wlxmlDocument.on('contentSet', function() {
+ documentIsDirty = true;
+ });
},
- savingStarted: function() {
+ savingStarted: function(what) {
+ var msg = {
+ remote: gettext('Saving document'),
+ local: gettext('Saving local copy')
+ };
sandbox.getModule('mainBar').setCommandEnabled('save', false);
- sandbox.getModule('indicator').showMessage(gettext('Saving...'));
+ sandbox.getModule('indicator').showMessage(msg[what] + '...');
},
- savingEnded: function(status, current_version) {
+ savingEnded: function(status, what, current_version) {
void(status);
+ var msg = {
+ remote: gettext('Document saved'),
+ local: gettext('Local copy saved')
+ };
+ documentIsDirty = false;
sandbox.getModule('mainBar').setCommandEnabled('save', true);
- sandbox.getModule('indicator').clearMessage({message:'Dokument zapisany'});
+ sandbox.getModule('indicator').clearMessage({message: msg[what]});
sandbox.getModule('mainBar').setVersion(current_version);
},
restoringStarted: function(event) {
diffFetched: function(diff) {
sandbox.getModule('diffViewer').setDiff(diff);
},
- documentReverted: function(event) {
+ documentReverted: function(version) {
+ documentIsDirty = false;
sandbox.getModule('mainBar').setCommandEnabled('save', true);
- sandbox.getModule('indicator').clearMessage({message:'Wersja ' + event.reverted_version + ' przywrócona'});
- sandbox.getModule('mainBar').setVersion(event.current_version);
+ sandbox.getModule('indicator').clearMessage({message:'Wersja ' + version + ' przywrócona'});
+ sandbox.getModule('mainBar').setVersion(version);
}
};
views.mainLayout.setView('topPanel', sandbox.getModule('mainBar').getView());
},
'cmd.save': function() {
+ var sourceEditor = sandbox.getModule('sourceEditor');
+ if(!sourceEditor.changesCommited()) {
+ logger.debug('Source editor has uncommited changes, commiting...');
+ sourceEditor.commitChanges();
+ }
sandbox.getModule('data').saveDocument();
+ },
+ 'cmd.drop-draft': function() {
+ sandbox.getModule('data').dropDraft();
}
};
compare: function(ver1, ver2) {
sandbox.getModule('data').fetchDiff(ver1, ver2);
},
- restoreVersion: function(event) {
- sandbox.getModule('data').restoreVersion(event);
+ restoreVersion: function(version) {
+ sandbox.getModule('data').restoreVersion(version);
},
displayVersion: function(event) {
/* globals window */
views.diffLayout.setView('right', sandbox.getModule('diffViewer').getView());
}
};
+
+ window.addEventListener('beforeunload', function(event) {
+ var txt = gettext('Do you really want to exit?');
+ if(documentIsDirty) {
+ txt += ' ' + gettext('Document contains unsaved changes!');
+ }
+ event.returnValue = txt; // FF
+ return txt; // Chrome
+ });
/* api */
sandbox.getModule('data').start();
},
handleEvent: function(moduleName, eventName, args) {
+ var eventRepr = moduleName + '.' + eventName;
if(eventHandlers[moduleName] && eventHandlers[moduleName][eventName]) {
+ logger.debug('Handling event ' + eventRepr);
eventHandlers[moduleName][eventName].apply(eventHandlers, args);
+ } else {
+ logger.warning('No event handler for ' + eventRepr);
}
+
}
};
};