'use strict';
/* global gettext, alert, window */
-var logger = logging.getLogger('editor.modules.data'),
- stubDocument = '<section><div>' + gettext('This is an empty document.') + '</div></section>';
+var logger = logging.getLogger('editor.modules.data');
return function(sandbox) {
var documentDirty = false;
var draftDirty = false;
- var documentProperties = {};
var data = sandbox.getBootstrappedData();
- Object.keys(data)
- .filter(function(key) {
- return key !== 'history' && key !== 'document';
- })
- .forEach(function(key) {
- documentProperties[key] = data[key];
- });
+ var document_version = data.version;
+
var wlxmlDocument, text;
var loadDocument = function(text, isDraft, draftTimestamp) {
logger.debug('loading document');
+ var xmlValid = true;
try {
- wlxmlDocument = wlxml.WLXMLDocumentFromXML(text, {editorConfig: sandbox.getConfig()}, Document);
+ wlxmlDocument = wlxml.WLXMLDocumentFromXML(text, {editorConfig: sandbox.getConfig()}, Document.Document);
} catch(e) {
logger.exception(e);
- alert(gettext('This document contains errors and can\'t be loaded. :(')); // TODO
- wlxmlDocument = wlxml.WLXMLDocumentFromXML(stubDocument, {}, Document);
+ alert(gettext('The content of this document seems to be invalid - only XML source editing will be possible. :(')); // TODO
+ wlxmlDocument = wlxml.WLXMLDocumentFromXML(text, {}, Document.DumbDocument);
+ xmlValid = false;
}
+ Object.keys(data)
+ .filter(function(key) {
+ return key !== 'history' && key !== 'document';
+ })
+ .forEach(function(key) {
+ wlxmlDocument.setProperty(key, data[key]);
+ });
+
wlxmlDocument.registerExtension(listExtension);
sandbox.getPlugins().forEach(function(plugin) {
if(plugin.documentExtension) {
}
}, sandbox.getConfig().autoSaveInterval || 2500);
}
- sandbox.publish('ready', isDraft, draftTimestamp);
+ sandbox.publish('ready', isDraft, draftTimestamp, xmlValid);
};
function readCookie(name) {
});
};
- var getLocalStorageKey = function() {
- var base = 'draft-id:' + document_id + '-ver:' + documentProperties.version;
+ var getLocalStorageKey = function(forVersion) {
+ var base = 'draft-id:' + document_id + '-ver:' + (forVersion || wlxmlDocument.properties.version);
return {
content: base,
contentTimestamp: base + '-content-timestamp'
return {
start: function() {
if(window.localStorage) {
- text = window.localStorage.getItem(getLocalStorageKey().content);
+ text = window.localStorage.getItem(getLocalStorageKey(document_version).content);
- var timestamp = window.localStorage.getItem(getLocalStorageKey().contentTimestamp),
+ var timestamp = window.localStorage.getItem(getLocalStorageKey(document_version).contentTimestamp),
usingDraft;
if(text) {
logger.debug('Local draft exists');
var formData = event.formData;
formData[documentSaveForm.content_field_name] = wlxmlDocument.toXML();
- formData[documentSaveForm.version_field_name] = documentProperties.version;
+ formData[documentSaveForm.version_field_name] = wlxmlDocument.properties.version;
if(sandbox.getConfig().jsonifySentData) {
formData = JSON.stringify(formData);
}
return key !== 'text';
})
.forEach(function(key) {
- documentProperties[key] = data[key];
+ wlxmlDocument.setProperty(key, data[key]);
});
reloadHistory();
return key !== 'document';
})
.forEach(function(key) {
- documentProperties = data[key];
+ wlxmlDocument.setProperty(key, data[key]);
});
reloadHistory();
wlxmlDocument.loadXML(data.document);
},
getDocumentId: function() {
return document_id;
- },
- getDocumentProperties: function() {
- return documentProperties;
}
};
};