editor: remove unused code
[fnpeditor.git] / src / editor / modules / rng / rng.js
1 define([
2 './documentSummary',
3 'libs/underscore',
4 'fnpjs/layout',
5 'fnpjs/vbox',
6 'fnpjs/logging/logging',
7 'views/tabs/tabs',
8 'libs/text!./mainLayout.html',
9 'libs/text!./editingLayout.html',
10 'libs/text!./diffLayout.html',
11 ], function(documentSummary, _, layout, vbox, logging, tabs, mainLayoutTemplate, visualEditingLayoutTemplate, diffLayoutTemplate) {
12
13 'use strict';
14
15 return function(sandbox) {
16
17     /* globals gettext */
18
19     var logger = logging.getLogger('editor.modules.rng');
20     
21     function addMainTab(title, slug, view) {
22         views.mainTabs.addTab(title, slug, view);
23     }
24      
25     var commands = {
26         highlightDocumentElement: function(element, origin) {
27             ///'nodeBreadCrumbs', 'nodeFamilyTree'
28             ['documentCanvas', 'nodeFamilyTree'].forEach(function(moduleName) {
29                 if(!origin || moduleName !== origin) {
30                     sandbox.getModule(moduleName).highlightElement(element);
31                 }
32             });
33         },
34         dimDocumentElement: function(element, origin) {
35             //'nodeBreadCrumbs', 'nodeFamilyTree'
36             ['documentCanvas', 'nodeFamilyTree'].forEach(function(moduleName) {
37                 if(!origin || moduleName !== origin) {
38                     sandbox.getModule(moduleName).dimElement(element);
39                 }
40             });
41         },
42         jumpToDocumentElement: function(element) {
43             sandbox.getModule('documentCanvas').jumpToElement(element);
44         },
45         updateCurrentNodeElement: function(nodeElement) {
46             sandbox.getModule('nodePane').setNodeElement(nodeElement);
47             sandbox.getModule('nodeFamilyTree').setElement(nodeElement);
48             sandbox.getModule('nodeBreadCrumbs').setNodeElement(nodeElement);
49             sandbox.getModule('documentToolbar').setNodeElement(nodeElement);
50             sandbox.getModule('metadataEditor').setNodeElement(nodeElement);
51         },
52         updateCurrentTextElement: function(textElement) {
53             sandbox.getModule('nodeFamilyTree').setElement(textElement);
54         }
55     };
56     
57
58     var views = {
59         mainLayout: new layout.Layout(mainLayoutTemplate),
60         mainTabs: (new tabs.View()).render(),
61         visualEditing: new layout.Layout(visualEditingLayoutTemplate),
62         visualEditingSidebar: (new tabs.View({stacked: true})).render(),
63         currentNodePaneLayout: new vbox.VBox(),
64         diffLayout: new layout.Layout(diffLayoutTemplate)
65     };
66     
67     views.visualEditing.setView('rightColumn', views.visualEditingSidebar.getAsView());
68     addMainTab(gettext('Editor'), 'editor', views.visualEditing.getAsView());
69     addMainTab(gettext('Source'), 'sourceEditor',  '');
70     addMainTab(gettext('History'), 'history', views.diffLayout.getAsView());
71     
72     sandbox.getDOM().append(views.mainLayout.getAsView());
73     
74     views.visualEditingSidebar.addTab({icon: 'pencil'}, 'edit', views.currentNodePaneLayout.getAsView());
75
76     var wlxmlDocument, documentIsDirty;
77     
78     /* Events handling */
79     
80     var eventHandlers = {};
81      
82     eventHandlers.sourceEditor = {
83         ready: function() {
84             addMainTab(gettext('Source'), 'sourceEditor',  sandbox.getModule('sourceEditor').getView());
85             sandbox.getModule('sourceEditor').setDocument(sandbox.getModule('data').getDocument());
86         }
87     };
88     
89     eventHandlers.data = {
90         ready: function(usingDraft, draftTimestamp) {
91             views.mainLayout.setView('mainView', views.mainTabs.getAsView());
92             
93             documentSummary.init(sandbox.getConfig().documentSummaryView);
94             documentSummary.render(sandbox.getModule('data').getDocumentProperties());
95             documentSummary.setDraftField(usingDraft ? (draftTimestamp || '???') : '-');
96             views.currentNodePaneLayout.appendView(documentSummary.dom);
97
98             sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
99             sandbox.getModule('mainBar').setCommandEnabled('save', usingDraft);
100
101             _.each(['sourceEditor', 'documentCanvas', 'documentToolbar', 'metadataEditor', 'nodeBreadCrumbs', 'mainBar', 'indicator', 'documentHistory', 'diffViewer'], function(moduleName) {
102                 sandbox.getModule(moduleName).start();
103             });
104             
105             wlxmlDocument = sandbox.getModule('data').getDocument();
106             documentIsDirty = false;
107             wlxmlDocument.on('change', function() {
108                 documentIsDirty = true;
109                 sandbox.getModule('mainBar').setCommandEnabled('save', true);
110             });
111             wlxmlDocument.on('contentSet', function() {
112                 documentIsDirty = true;
113             });
114         },
115         draftDropped: function() {
116             documentSummary.setDraftField('-');
117             sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
118             sandbox.getModule('mainBar').setCommandEnabled('save', false);
119         },
120         savingStarted: function(what) {
121             var msg = {
122                 remote: gettext('Saving document'),
123                 local: gettext('Saving local copy')
124             };
125             sandbox.getModule('mainBar').setCommandEnabled('save', false);
126             sandbox.getModule('indicator').showMessage(msg[what] + '...');
127         },
128         savingEnded: function(status, what, data) {
129             void(status);
130             var msg = {
131                 remote: gettext('Document saved'),
132                 local: gettext('Local copy saved')
133             };
134             documentIsDirty = false;
135             
136             sandbox.getModule('indicator').clearMessage({message: msg[what]});
137             if(status === 'success' && what === 'remote') {
138                 sandbox.getModule('mainBar').setVersion(data.version);
139                 documentSummary.render(data);
140                 documentSummary.setDraftField('-');
141                 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
142                 sandbox.getModule('mainBar').setCommandEnabled('save', false);
143             }
144             if(what === 'local') {
145                 documentSummary.setDraftField(data.timestamp);
146                 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', true);
147                 sandbox.getModule('mainBar').setCommandEnabled('save', true);
148             }
149         },
150         restoringStarted: function(event) {
151             sandbox.getModule('mainBar').setCommandEnabled('save', false);
152             sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...');
153         },
154         historyItemAdded: function(item) {
155             sandbox.getModule('documentHistory').addHistory([item], {animate: true});
156         },
157         diffFetched: function(diff) {
158             sandbox.getModule('diffViewer').setDiff(diff);
159         },
160         documentReverted: function(version) {
161             documentIsDirty = false;
162             sandbox.getModule('indicator').clearMessage({message:'Wersja ' + version + ' przywrócona'});
163             sandbox.getModule('mainBar').setVersion(version);
164         }
165     };
166     
167     eventHandlers.mainBar = {
168         ready: function() {
169             sandbox.getModule('mainBar').setVersion(sandbox.getModule('data').getDocumentProperties().version);
170             views.mainLayout.setView('topPanel', sandbox.getModule('mainBar').getView());
171         },
172         'cmd.save': function() {
173             var sourceEditor = sandbox.getModule('sourceEditor');
174             if(!sourceEditor.changesCommited()) {
175                 logger.debug('Source editor has uncommited changes, commiting...');
176                 sourceEditor.commitChanges();
177             }
178             sandbox.getModule('data').saveDocument();
179         },
180         'cmd.drop-draft': function() {
181             sandbox.getModule('data').dropDraft();
182         }
183     };
184     
185     eventHandlers.indicator = {
186         ready: function() {
187             views.mainLayout.setView('messages', sandbox.getModule('indicator').getView());
188         }
189     };
190     
191
192     
193     eventHandlers.documentCanvas = {
194         ready: function() {
195             sandbox.getModule('documentCanvas').setDocument(sandbox.getModule('data').getDocument());
196             views.visualEditing.setView('leftColumn', sandbox.getModule('documentCanvas').getView());
197         },
198         
199         currentTextElementSet: function(textElement) {
200             commands.updateCurrentTextElement(textElement);
201         },
202
203         currentNodeElementSet: function(nodeElement) {
204             commands.updateCurrentNodeElement(nodeElement);
205         },
206         
207         currentNodeElementChanged: function(nodeElement) {
208             commands.updateCurrentNodeElement(nodeElement);
209         },
210
211         nodeHovered: function(canvasNode) {
212             commands.highlightDocumentNode(canvasNode);
213         },
214         
215         nodeBlured: function(canvasNode) {
216             commands.dimDocumentNode(canvasNode);
217         }
218     };
219
220     eventHandlers.nodePane = {
221         ready: function() {
222             views.currentNodePaneLayout.appendView(sandbox.getModule('nodePane').getView());
223         }
224     };
225     
226     eventHandlers.metadataEditor = {
227         ready: function() {
228             sandbox.getModule('metadataEditor').setDocument(sandbox.getModule('data').getDocument());
229             views.visualEditingSidebar.addTab({icon: 'info-sign'}, 'metadataEditor', sandbox.getModule('metadataEditor').getView());
230         }
231     };
232     
233     eventHandlers.nodeFamilyTree = {
234         ready: function() {
235             views.currentNodePaneLayout.appendView(sandbox.getModule('nodeFamilyTree').getView());
236         },
237         nodeEntered: function(node) {
238             commands.highlightDocumentElement(node, 'nodeFamilyTree');
239         },
240         nodeLeft: function(node) {
241             commands.dimDocumentElement(node, 'nodeFamilyTree');
242         },
243         nodeClicked: function(node) {
244             commands.jumpToDocumentElement(node);
245         }
246     };
247     
248     eventHandlers.documentToolbar = {
249         ready: function() {
250             views.visualEditing.setView('toolbar', sandbox.getModule('documentToolbar').getView());
251         },
252         command: function(cmd, params) {
253             sandbox.getModule('documentCanvas').command(cmd, params);
254         }
255     };
256     
257     eventHandlers.nodeBreadCrumbs = {
258         ready: function() {
259             views.visualEditing.setView('statusBar', sandbox.getModule('nodeBreadCrumbs').getView());
260         },
261         elementEntered: function(element) {
262             commands.highlightDocumentElement(element, 'nodeBreadCrumbs');
263         },
264         elementLeft: function(element) {
265             commands.dimDocumentElement(element, 'nodeBreadCrumbs');
266         },
267         elementClicked: function(element) {
268             commands.jumpToDocumentElement(element);
269         }
270     };
271     
272     eventHandlers.documentHistory = {
273         ready: function() {
274             sandbox.getModule('documentHistory').addHistory(sandbox.getModule('data').getHistory());
275             views.diffLayout.setView('left', sandbox.getModule('documentHistory').getView());
276         },
277         compare: function(ver1, ver2) {
278             sandbox.getModule('data').fetchDiff(ver1, ver2);
279         },
280         restoreVersion: function(version) {
281             sandbox.getModule('data').restoreVersion(version);
282         },
283         displayVersion: function(event) {
284             /* globals window */
285             window.open('/' + gettext('editor') + '/' + sandbox.getModule('data').getDocumentId() + '?version=' + event.version, _.uniqueId());
286         }
287     };
288     
289     eventHandlers.diffViewer = {
290         ready: function() {
291             views.diffLayout.setView('right', sandbox.getModule('diffViewer').getView());
292         }
293     };
294
295     window.addEventListener('beforeunload', function(event) {
296         var txt = gettext('Do you really want to exit?');
297         if(documentIsDirty) {
298             txt += ' ' + gettext('Document contains unsaved changes!');
299         }
300         event.returnValue = txt; // FF
301         return txt; // Chrome
302     });
303     
304     /* api */
305     
306     return {
307         start: function() {
308             sandbox.getModule('data').start();
309         },
310         handleEvent: function(moduleName, eventName, args) {
311             var eventRepr = moduleName + '.' + eventName;
312             if(eventHandlers[moduleName] && eventHandlers[moduleName][eventName]) {
313                 logger.debug('Handling event ' + eventRepr);
314                 eventHandlers[moduleName][eventName].apply(eventHandlers, args);
315             } else {
316                 logger.warning('No event handler for ' + eventRepr);
317             }
318
319         }
320     };
321 };
322
323 });