6 'fnpjs/logging/logging',
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) {
15 return function(sandbox) {
19 var logger = logging.getLogger('editor.modules.rng');
21 function addMainTab(title, slug, view) {
22 views.mainTabs.addTab(title, slug, view);
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);
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);
42 jumpToDocumentElement: function(element) {
43 sandbox.getModule('documentCanvas').jumpToElement(element);
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);
52 updateCurrentTextElement: function(textElement) {
53 sandbox.getModule('nodeFamilyTree').setElement(textElement);
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)
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());
72 sandbox.getDOM().append(views.mainLayout.getAsView());
74 views.visualEditingSidebar.addTab({icon: 'pencil'}, 'edit', views.currentNodePaneLayout.getAsView());
76 var wlxmlDocument, documentIsDirty;
80 var eventHandlers = {};
82 eventHandlers.sourceEditor = {
84 addMainTab(gettext('Source'), 'sourceEditor', sandbox.getModule('sourceEditor').getView());
85 sandbox.getModule('sourceEditor').setDocument(sandbox.getModule('data').getDocument());
89 eventHandlers.data = {
90 ready: function(usingDraft, draftTimestamp) {
91 views.mainLayout.setView('mainView', views.mainTabs.getAsView());
93 documentSummary.init(sandbox.getConfig().documentSummaryView);
94 documentSummary.render(sandbox.getModule('data').getDocumentProperties());
95 documentSummary.setDraftField(usingDraft ? (draftTimestamp || '???') : '-');
96 views.currentNodePaneLayout.appendView(documentSummary.dom);
98 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', usingDraft);
100 _.each(['sourceEditor', 'documentCanvas', 'documentToolbar', 'nodePane', 'metadataEditor', 'nodeFamilyTree', 'nodeBreadCrumbs', 'mainBar', 'indicator', 'documentHistory', 'diffViewer'], function(moduleName) {
101 sandbox.getModule(moduleName).start();
104 wlxmlDocument = sandbox.getModule('data').getDocument();
105 documentIsDirty = false;
106 wlxmlDocument.on('change', function() {
107 documentIsDirty = true;
109 wlxmlDocument.on('contentSet', function() {
110 documentIsDirty = true;
113 draftDropped: function() {
114 documentSummary.setDraftField('-');
115 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
117 savingStarted: function(what) {
119 remote: gettext('Saving document'),
120 local: gettext('Saving local copy')
122 sandbox.getModule('mainBar').setCommandEnabled('save', false);
123 sandbox.getModule('indicator').showMessage(msg[what] + '...');
125 savingEnded: function(status, what, data) {
128 remote: gettext('Document saved'),
129 local: gettext('Local copy saved')
131 documentIsDirty = false;
132 sandbox.getModule('mainBar').setCommandEnabled('save', true);
133 sandbox.getModule('indicator').clearMessage({message: msg[what]});
134 if(status === 'success' && what === 'remote') {
135 sandbox.getModule('mainBar').setVersion(data.version);
136 documentSummary.render(data);
137 documentSummary.setDraftField('-');
138 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', false);
140 if(what === 'local') {
141 documentSummary.setDraftField(data.timestamp);
142 sandbox.getModule('mainBar').setCommandEnabled('drop-draft', true);
145 restoringStarted: function(event) {
146 sandbox.getModule('mainBar').setCommandEnabled('save', false);
147 sandbox.getModule('indicator').showMessage(gettext('Restoring version ') + event.version + '...');
149 historyItemAdded: function(item) {
150 sandbox.getModule('documentHistory').addHistory([item], {animate: true});
152 diffFetched: function(diff) {
153 sandbox.getModule('diffViewer').setDiff(diff);
155 documentReverted: function(version) {
156 documentIsDirty = false;
157 sandbox.getModule('mainBar').setCommandEnabled('save', true);
158 sandbox.getModule('indicator').clearMessage({message:'Wersja ' + version + ' przywrócona'});
159 sandbox.getModule('mainBar').setVersion(version);
163 eventHandlers.mainBar = {
165 sandbox.getModule('mainBar').setVersion(sandbox.getModule('data').getDocumentProperties().version);
166 views.mainLayout.setView('topPanel', sandbox.getModule('mainBar').getView());
168 'cmd.save': function() {
169 var sourceEditor = sandbox.getModule('sourceEditor');
170 if(!sourceEditor.changesCommited()) {
171 logger.debug('Source editor has uncommited changes, commiting...');
172 sourceEditor.commitChanges();
174 sandbox.getModule('data').saveDocument();
176 'cmd.drop-draft': function() {
177 sandbox.getModule('data').dropDraft();
181 eventHandlers.indicator = {
183 views.mainLayout.setView('messages', sandbox.getModule('indicator').getView());
189 eventHandlers.documentCanvas = {
191 sandbox.getModule('documentCanvas').setDocument(sandbox.getModule('data').getDocument());
192 views.visualEditing.setView('leftColumn', sandbox.getModule('documentCanvas').getView());
195 currentTextElementSet: function(textElement) {
196 commands.updateCurrentTextElement(textElement);
199 currentNodeElementSet: function(nodeElement) {
200 commands.updateCurrentNodeElement(nodeElement);
203 currentNodeElementChanged: function(nodeElement) {
204 commands.updateCurrentNodeElement(nodeElement);
207 nodeHovered: function(canvasNode) {
208 commands.highlightDocumentNode(canvasNode);
211 nodeBlured: function(canvasNode) {
212 commands.dimDocumentNode(canvasNode);
216 eventHandlers.nodePane = {
218 views.currentNodePaneLayout.appendView(sandbox.getModule('nodePane').getView());
221 nodeElementChange: function(attr, value) {
222 sandbox.getModule('documentCanvas').modifyCurrentNodeElement(attr, value);
226 eventHandlers.metadataEditor = {
228 sandbox.getModule('metadataEditor').setDocument(sandbox.getModule('data').getDocument());
229 views.visualEditingSidebar.addTab({icon: 'info-sign'}, 'metadataEditor', sandbox.getModule('metadataEditor').getView());
233 eventHandlers.nodeFamilyTree = {
235 views.currentNodePaneLayout.appendView(sandbox.getModule('nodeFamilyTree').getView());
237 nodeEntered: function(node) {
238 commands.highlightDocumentElement(node, 'nodeFamilyTree');
240 nodeLeft: function(node) {
241 commands.dimDocumentElement(node, 'nodeFamilyTree');
243 nodeClicked: function(node) {
244 commands.jumpToDocumentElement(node);
248 eventHandlers.documentToolbar = {
250 views.visualEditing.setView('toolbar', sandbox.getModule('documentToolbar').getView());
252 command: function(cmd, params) {
253 sandbox.getModule('documentCanvas').command(cmd, params);
257 eventHandlers.nodeBreadCrumbs = {
259 views.visualEditing.setView('statusBar', sandbox.getModule('nodeBreadCrumbs').getView());
261 elementEntered: function(element) {
262 commands.highlightDocumentElement(element, 'nodeBreadCrumbs');
264 elementLeft: function(element) {
265 commands.dimDocumentElement(element, 'nodeBreadCrumbs');
267 elementClicked: function(element) {
268 commands.jumpToDocumentElement(element);
272 eventHandlers.documentHistory = {
274 sandbox.getModule('documentHistory').addHistory(sandbox.getModule('data').getHistory());
275 views.diffLayout.setView('left', sandbox.getModule('documentHistory').getView());
277 compare: function(ver1, ver2) {
278 sandbox.getModule('data').fetchDiff(ver1, ver2);
280 restoreVersion: function(version) {
281 sandbox.getModule('data').restoreVersion(version);
283 displayVersion: function(event) {
285 window.open('/' + gettext('editor') + '/' + sandbox.getModule('data').getDocumentId() + '?version=' + event.version, _.uniqueId());
289 eventHandlers.diffViewer = {
291 views.diffLayout.setView('right', sandbox.getModule('diffViewer').getView());
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!');
300 event.returnValue = txt; // FF
301 return txt; // Chrome
308 sandbox.getModule('data').start();
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);
316 logger.warning('No event handler for ' + eventRepr);