203 lines
6.2 KiB
JavaScript
Raw Normal View History

2012-02-21 15:37:15 -03:00
/*
2015-04-12 00:15:12 -03:00
* Copyright [2015] [wisemapping]
2012-02-21 15:37:15 -03:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var designer = null;
2014-03-16 18:12:21 -03:00
/*
2015-04-09 23:37:39 -03:00
* Disclaimer: this global variable is a temporary workaround to Mootools' Browser class
* We need to avoid browser detection and replace it with feature detection,
* jquery recommends: http://www.modernizr.com/
*/
2014-03-16 18:12:21 -03:00
Browser = {
firefox: window.globalStorage,
ie: document.all && !window.opera,
ie6: !window.XMLHttpRequest,
ie7: document.all && window.XMLHttpRequest && !XDomainRequest && !window.opera,
2015-04-09 23:37:39 -03:00
ie8: document.documentMode == 8,
ie11: document.documentMode == 11,
2014-03-16 18:12:21 -03:00
opera: Boolean(window.opera),
chrome: Boolean(window.chrome),
safari: window.getComputedStyle && !window.globalStorage && !window.opera,
Platform: {
mac: navigator.platform.indexOf('Mac') != -1
}
};
2012-02-21 15:37:15 -03:00
function buildDesigner(options) {
2015-04-09 23:37:39 -03:00
var container = $("#" + options.container);
2012-02-21 15:37:15 -03:00
$assert(container, 'container could not be null');
// Register load events ...
designer = new mindplot.Designer(options, container);
2012-07-01 17:21:02 -03:00
designer.addEvent('loadSuccess', function () {
2014-03-09 05:42:44 -03:00
window.waitDialog.close();
window.waitDialog = null;
window.mindmapLoadReady = true;
2012-02-21 15:37:15 -03:00
});
2014-03-04 20:47:23 -03:00
var onerrorFn = function (message, url, lineNo) {
2012-09-23 10:39:56 -03:00
// Ignore errors ...
if (message === "Script error." && lineNo == 0) {
2012-09-23 10:30:42 -03:00
// http://stackoverflow.com/questions/5913978/cryptic-script-error-reported-in-javascript-in-chrome-and-firefox
return;
}
2012-11-04 23:20:21 -03:00
// Transform error ...
2012-09-23 10:39:56 -03:00
var errorMsg = message;
if (typeof(message) === 'object' && message.srcElement && message.target) {
if (message.srcElement == '[object HTMLScriptElement]' && message.target == '[object HTMLScriptElement]') {
errorMsg = 'Error loading script';
} else {
errorMsg = 'Event Error - target:' + message.target + ' srcElement:' + message.srcElement;
}
}
2012-09-23 10:39:56 -03:00
errorMsg = errorMsg.toString();
2014-08-03 17:07:48 -03:00
$.ajax({
2015-04-09 23:37:39 -03:00
method: 'post',
url: "/c/restful/logger/editor",
headers: {"Content-Type": "application/json", "Accept": "application/json"},
2015-04-10 00:28:45 -03:00
data: JSON.stringify({
2015-04-09 23:37:39 -03:00
jsErrorMsg: "Message: '" + errorMsg + "', line:'" + lineNo + "', url: :" + url,
jsStack: window.event.error.stack || window.errorStack,
2015-04-09 23:37:39 -03:00
userAgent: navigator.userAgent,
mapId: options.mapId
2015-04-10 00:28:45 -03:00
})
2014-08-03 17:07:48 -03:00
});
2012-09-23 10:39:56 -03:00
// Close loading dialog ...
if (window.waitDialog) {
2014-03-09 05:42:44 -03:00
window.waitDialog.close();
2012-09-23 10:39:56 -03:00
window.waitDialog = null;
}
// Open error dialog only in case of mindmap loading errors. The rest of the error are reported but not display the dialog.
// Remove this in the near future.
if (!window.mindmapLoadReady) {
2012-11-05 21:55:19 -03:00
$notifyModal($msg('UNEXPECTED_ERROR_LOADING'));
}
2012-03-08 00:11:54 -03:00
};
2015-04-09 23:37:39 -03:00
window.onerror = onerrorFn;
2014-03-04 20:47:23 -03:00
2012-02-21 15:37:15 -03:00
// Configure default persistence manager ...
var persistence;
if (options.persistenceManager) {
if (options.persistenceManager instanceof String) {
persistence = eval("new " + options.persistenceManager + "()");
2012-02-21 15:37:15 -03:00
}
else {
persistence = options.persistenceManager;
2012-02-21 15:37:15 -03:00
}
} else {
2013-02-03 13:47:31 -03:00
persistence = new mindplot.LocalStorageManager("samples/{id}.xml");
2012-02-21 15:37:15 -03:00
}
mindplot.PersistenceManager.init(persistence);
// Register toolbar event ...
if ($('#toolbar')) {
var menu = new mindplot.widget.Menu(designer, 'toolbar', options.mapId, "");
2012-02-21 15:37:15 -03:00
// If a node has focus, focus can be move to another node using the keys.
2012-07-01 17:21:02 -03:00
designer._cleanScreen = function () {
2015-04-09 23:37:39 -03:00
menu.clear();
2012-02-21 15:37:15 -03:00
};
}
return designer;
}
function loadDesignerOptions(jsonConf) {
// Load map options ...
var result;
2014-08-03 17:07:48 -03:00
var me = this;
2012-02-21 15:37:15 -03:00
if (jsonConf) {
2014-08-03 17:07:48 -03:00
$.ajax({
url: jsonConf,
2015-01-31 15:32:09 -03:00
dataType: 'json',
2014-08-03 17:07:48 -03:00
async: false,
method: 'get',
success: function (options) {
me.options = options;
2012-02-21 15:37:15 -03:00
}
2014-08-03 17:07:48 -03:00
});
2012-02-21 15:37:15 -03:00
result = this.options;
}
else {
// Set workspace screen size as default. In this way, resize issues are solved.
var containerSize = {
2015-04-09 23:37:39 -03:00
height: parseInt(screen.height),
width: parseInt(screen.width)
2012-02-21 15:37:15 -03:00
};
var viewPort = {
2015-04-09 23:37:39 -03:00
height: parseInt(window.innerHeight - 70), // Footer and Header
width: parseInt(window.innerWidth)
};
result = {
readOnly: false,
zoom: 0.85,
saveOnLoad: true,
size: containerSize,
viewPort: viewPort,
container: 'mindplot',
locale: 'en'
2012-02-21 15:37:15 -03:00
};
}
return result;
}
editor = {};
2014-03-09 05:42:44 -03:00
editor.WaitDialog = new Class({
2015-04-09 23:37:39 -03:00
initialize: function () {
2014-03-09 05:42:44 -03:00
this.panel = this._buildPanel();
},
2015-04-09 23:37:39 -03:00
_buildPanel: function () {
var result = $('#load');
var content = result.find('.modal-content');
var winH = $(window).height();
2014-03-09 05:42:44 -03:00
//Set the popup window to center
2015-04-09 23:37:39 -03:00
content.css('margin-top', winH / 2 - content.height() / 2);
2014-03-09 05:42:44 -03:00
return result;
},
2015-04-09 23:37:39 -03:00
show: function () {
this.panel.modal({
backdrop: 'static'
});
2014-03-09 05:42:44 -03:00
},
2015-04-09 23:37:39 -03:00
close: function () {
2014-03-15 03:55:57 -03:00
this.panel.modal('hide');
2014-03-09 05:42:44 -03:00
}
});
2012-02-21 15:37:15 -03:00
// Show loading dialog ...
2014-03-09 05:42:44 -03:00
waitDialog = new editor.WaitDialog();
waitDialog.show();
2012-02-21 15:37:15 -03:00
// Loading libraries ...
2014-03-04 22:48:31 -03:00
jQuery.getScript("js/mindplot-min.js");