5 'fnpjs/logging/logging',
7 'libs/text!./mainLayout.html',
8 'libs/text!./editingLayout.html',
9 'libs/text!./diffLayout.html',
10 ], function(documentSummary, _, layout, logging, tabs, mainLayoutTemplate, visualEditingLayoutTemplate, diffLayoutTemplate) {
14 return function(sandbox) {
18 var logger = logging.getLogger('editor.modules.rng');
20 function addMainTab(title, slug, view) {
21 views.mainTabs.addTab(title, slug, view);
25 refreshCanvasSelection: function(selection) {
26 var fragment = selection.toDocumentFragment();
27 sandbox.getModule('documentToolbar').setDocumentFragment(fragment);
33 mainLayout: new layout.Layout(mainLayoutTemplate),
34 mainTabs: (new tabs.View()).render(),
35 visualEditing: new layout.Layout(visualEditingLayoutTemplate),
36 diffLayout: new layout.Layout(diffLayoutTemplate)
39 addMainTab(gettext('Editor'), 'editor', views.visualEditing.getAsView());
40 addMainTab(gettext('Source'), 'sourceEditor', '');
41 addMainTab(gettext('History'), 'history', views.diffLayout.getAsView());
43 sandbox.getDOM().append(views.mainLayout.getAsView());
45 var wlxmlDocument, documentIsDirty;
49 var eventHandlers = {};
51 eventHandlers.sourceEditor = {
53 addMainTab(gettext('Source'), 'sourceEditor', sandbox.getModule('sourceEditor').getView());
54 sandbox.getModule('sourceEditor').setDocument(sandbox.getModule('data').getDocument());
58 eventHandlers.data = {
59 ready: function(usingDraft, draftTimestamp, xmlValid) {
60 wlxmlDocument = sandbox.getModule('data').getDocument();
62 views.mainLayout.setView('mainView', views.mainTabs.getAsView());
64 documentSummary.init(sandbox.getConfig().documentSummaryView, wlxmlDocument);
65 documentSummary.render();
66 documentSummary.setDraftField(usingDraft ? (draftTimestamp || '???') : '-');
67 sandbox.getModule('mainBar').setSummaryView(documentSummary.dom);
69 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
70 sandbox.getModule('mainBar').setCommandEnabled('save', usingDraft);
73 var toStart = ['sourceEditor', 'documentToolbar', 'mainBar', 'indicator', 'documentHistory', 'diffViewer', 'statusBar'];
75 toStart.push('documentCanvas');
77 _.each(toStart, function(moduleName) {
78 sandbox.getModule(moduleName).start();
81 documentIsDirty = false;
82 wlxmlDocument.on('change', function() {
83 documentIsDirty = true;
84 sandbox.getModule('mainBar').setCommandEnabled('save', true);
86 wlxmlDocument.on('contentSet', function() {
87 documentIsDirty = true;
90 draftDropped: function() {
91 documentSummary.setDraftField('-');
92 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
93 sandbox.getModule('mainBar').setCommandEnabled('save', false);
95 savingStarted: function(what) {
97 remote: gettext('Saving document'),
98 local: gettext('Saving local copy')
100 sandbox.getModule('mainBar').setCommandEnabled('save', false);
101 sandbox.getModule('indicator').showMessage(msg[what] + '...');
103 savingEnded: function(status, what, data) {
106 remote: gettext('Document saved'),
107 local: gettext('Local copy saved')
109 documentIsDirty = false;
111 sandbox.getModule('indicator').clearMessage({message: msg[what]});
112 if(status === 'success' && what === 'remote') {
113 documentSummary.setDraftField('-');
114 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
115 sandbox.getModule('mainBar').setCommandEnabled('save', false);
117 if(what === 'local') {
118 documentSummary.setDraftField(data.timestamp);
119 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', true);
120 sandbox.getModule('mainBar').setCommandEnabled('save', true);
123 restoringStarted: function(event) {
124 sandbox.getModule('mainBar').setCommandEnabled('save', false);
125 sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...');
127 historyItemAdded: function(item) {
128 sandbox.getModule('documentHistory').addHistory([item], {animate: true});
130 diffFetched: function(diff) {
131 sandbox.getModule('diffViewer').setDiff(diff);
133 documentReverted: function(version) {
134 documentIsDirty = false;
135 sandbox.getModule('indicator').clearMessage({message:'Revision restored'});
137 publishingStarted: function(version) {
138 sandbox.getModule('indicator').showMessage(gettext('Publishing...'));
140 documentPublished: function(version) {
141 sandbox.getModule('indicator').clearMessage({message:'Published.'});
145 eventHandlers.mainBar = {
147 views.mainLayout.setView('topPanel', sandbox.getModule('mainBar').getView());
149 'cmd.save': function() {
150 var sourceEditor = sandbox.getModule('sourceEditor');
151 if(!sourceEditor.changesCommited()) {
152 logger.debug('Source editor has uncommited changes, commiting...');
153 sourceEditor.commitChanges();
155 sandbox.getModule('data').saveDocument();
157 'cmd.drop-draft': function() {
158 sandbox.getModule('data').dropDraft();
162 eventHandlers.indicator = {
164 views.mainLayout.setView('messages', sandbox.getModule('indicator').getView());
170 eventHandlers.documentCanvas = {
172 sandbox.getModule('documentCanvas').setDocument(sandbox.getModule('data').getDocument());
173 views.visualEditing.setView('leftColumn', sandbox.getModule('documentCanvas').getView());
176 selectionChanged: function(selection) {
177 commands.refreshCanvasSelection(selection);
181 eventHandlers.documentToolbar = {
183 views.visualEditing.setView('toolbar', sandbox.getModule('documentToolbar').getView());
184 sandbox.getModule('documentToolbar').setCanvas(sandbox.getModule('documentCanvas').getCanvas());
186 actionExecuted: function(action, ret) {
187 sandbox.getModule('documentCanvas').onAfterActionExecuted(action, ret);
191 eventHandlers.documentHistory = {
193 sandbox.getModule('documentHistory').addHistory(sandbox.getModule('data').getHistory());
194 views.diffLayout.setView('left', sandbox.getModule('documentHistory').getView());
196 compare: function(ver1, ver2) {
197 sandbox.getModule('data').fetchDiff(ver1, ver2);
199 restoreVersion: function(version) {
200 sandbox.getModule('data').restoreVersion(version);
202 displayVersion: function(revision) {
204 //window.open(sandbox.getConfig().documentPreviewUrl(revision), _.uniqueId());
205 window.open(sandbox.getConfig().documentPreviewUrl(revision), 'preview');
207 publishVersion: function(version) {
208 sandbox.getModule('data').publishVersion(version);
212 eventHandlers.diffViewer = {
214 views.diffLayout.setView('right', sandbox.getModule('diffViewer').getView());
218 eventHandlers.statusBar = {
220 views.mainLayout.setView('bottomPanel', sandbox.getModule('statusBar').getView());
224 eventHandlers.__all__ = {
225 actionHovered: function(action) {
226 sandbox.getModule('statusBar').showAction(action);
228 actionOff: function() {
229 sandbox.getModule('statusBar').clearAction();
233 window.addEventListener('beforeunload', function(event) {
234 var txt = gettext('Do you really want to exit?');
235 if(documentIsDirty) {
236 txt += ' ' + gettext('Document contains unsaved changes!');
238 event.returnValue = txt; // FF
239 return txt; // Chrome
246 sandbox.registerActionsAppObject({
247 getUser: function() {
248 return sandbox.getConfig().user;
251 sandbox.getModule('data').start();
253 handleEvent: function(moduleName, eventName, args) {
254 var eventRepr = moduleName + '.' + eventName;
255 if(eventHandlers[moduleName] && eventHandlers[moduleName][eventName]) {
256 logger.debug('Handling event ' + eventRepr);
257 eventHandlers[moduleName][eventName].apply(eventHandlers, args);
261 if(eventHandlers.__all__[eventName]) {
262 logger.debug('Handling event ' + eventRepr);
263 eventHandlers.__all__[eventName].apply(eventHandlers.__all__, args);
267 logger.warning('No event handler for ' + eventRepr);