mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
Fix error on brix framework loading ...
This commit is contained in:
parent
6468f6f0bc
commit
dbed45c802
@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
mindplot.MindmapDesigner = new Class({
|
||||
Extends: Events,
|
||||
initialize: function(profile, divElement) {
|
||||
$assert(profile, "profile must be defined");
|
||||
$assert(profile.zoom, "zoom must be defined");
|
||||
@ -27,8 +28,9 @@ mindplot.MindmapDesigner = new Class({
|
||||
this._actionDispatcher = new mindplot.BrixActionDispatcher(commandContext);
|
||||
// this._actionDispatcher = new mindplot.LocalActionDispatcher(commandContext);
|
||||
this._actionDispatcher.addEvent("modelUpdate", function(event) {
|
||||
this._fireEvent("modelUpdate", event);
|
||||
this.fireEvent("modelUpdate", event);
|
||||
}.bind(this));
|
||||
|
||||
mindplot.ActionDispatcher.setInstance(this._actionDispatcher);
|
||||
this._model = new mindplot.DesignerModel(profile);
|
||||
|
||||
@ -44,9 +46,6 @@ mindplot.MindmapDesigner = new Class({
|
||||
if (!profile.readOnly) {
|
||||
this._registerEvents();
|
||||
}
|
||||
|
||||
this._events = {};
|
||||
|
||||
},
|
||||
|
||||
_registerEvents : function() {
|
||||
@ -119,17 +118,6 @@ mindplot.MindmapDesigner = new Class({
|
||||
|
||||
},
|
||||
|
||||
addEvent : function(eventType, listener) {
|
||||
this._events[eventType] = listener;
|
||||
},
|
||||
|
||||
_fireEvent : function(eventType, event) {
|
||||
var listener = this._events[eventType];
|
||||
if (listener != null) {
|
||||
listener(event);
|
||||
}
|
||||
},
|
||||
|
||||
setViewPort : function(size) {
|
||||
this._workspace.setViewPort(size);
|
||||
var model = this.getModel();
|
||||
@ -388,7 +376,7 @@ mindplot.MindmapDesigner = new Class({
|
||||
|
||||
var properties = {zoom:this.getModel().getZoom(), layoutManager:this._layoutManager.getClassName()};
|
||||
persistantManager.save(mindmap, properties, onSavedHandler, saveHistory);
|
||||
this._fireEvent("save", {type:saveHistory});
|
||||
this.fireEvent("save", {type:saveHistory});
|
||||
|
||||
// Refresh undo state...
|
||||
this._actionRunner.markAsChangeBase();
|
||||
@ -401,8 +389,6 @@ mindplot.MindmapDesigner = new Class({
|
||||
// Place the focus on the Central Topic
|
||||
var centralTopic = this.getModel().getCentralTopic();
|
||||
this.goToNode.attempt(centralTopic, this);
|
||||
|
||||
this._fireEvent("loadsuccess");
|
||||
},
|
||||
|
||||
loadFromXML : function(mapId, xmlContent) {
|
||||
@ -421,8 +407,6 @@ mindplot.MindmapDesigner = new Class({
|
||||
var centralTopic = this.getModel().getCentralTopic();
|
||||
this.goToNode(centralTopic);
|
||||
|
||||
this._fireEvent("loadsuccess");
|
||||
|
||||
},
|
||||
|
||||
load : function(mapId) {
|
||||
@ -440,10 +424,7 @@ mindplot.MindmapDesigner = new Class({
|
||||
// Place the focus on the Central Topic
|
||||
var centralTopic = this.getModel().getCentralTopic();
|
||||
this.goToNode.attempt(centralTopic, this);
|
||||
|
||||
this._fireEvent("loadsuccess");
|
||||
}
|
||||
,
|
||||
},
|
||||
|
||||
_loadMap : function(mapId, mindmapModel) {
|
||||
var designer = this;
|
||||
@ -471,8 +452,6 @@ mindplot.MindmapDesigner = new Class({
|
||||
delete topic.getModel()._finalPosition;
|
||||
});
|
||||
|
||||
this._fireEvent("loadsuccess");
|
||||
|
||||
},
|
||||
|
||||
getMindmap : function() {
|
||||
|
@ -20,7 +20,6 @@ mindplot.collaboration.CollaborationManager = new Class({
|
||||
initialize:function() {
|
||||
this.collaborativeModelReady = false;
|
||||
this.collaborativeModelReady = null;
|
||||
this.wiseReady = false;
|
||||
},
|
||||
|
||||
isCollaborationFrameworkAvailable : function() {
|
||||
@ -30,13 +29,6 @@ mindplot.collaboration.CollaborationManager = new Class({
|
||||
setCollaborativeFramework : function(framework) {
|
||||
this._collaborativeFramework = framework;
|
||||
this.collaborativeModelReady = true;
|
||||
if (this.wiseReady) {
|
||||
buildCollaborativeMindmapDesigner();
|
||||
}
|
||||
},
|
||||
|
||||
setWiseReady:function(ready) {
|
||||
this.wiseReady = ready;
|
||||
},
|
||||
|
||||
isCollaborativeFrameworkReady:function() {
|
||||
@ -58,5 +50,5 @@ mindplot.collaboration.CollaborationManager.getInstance = function() {
|
||||
mindplot.collaboration.CollaborationManager.__collaborationManager = new mindplot.collaboration.CollaborationManager();
|
||||
}
|
||||
return mindplot.collaboration.CollaborationManager.__collaborationManager;
|
||||
}
|
||||
};
|
||||
mindplot.collaboration.CollaborationManager.getInstance();
|
||||
|
@ -41,7 +41,8 @@ mindplot.collaboration.framework.brix.BrixFramework = new Class({
|
||||
});
|
||||
|
||||
instanciated = false;
|
||||
mindplot.collaboration.framework.brix.BrixFramework.instanciate = function() {
|
||||
mindplot.collaboration.framework.brix.BrixFramework.init = function(onload) {
|
||||
$assert(onload, "load function can not be null");
|
||||
if ((typeof isGoogleBrix != "undefined") && !instanciated) {
|
||||
instanciated = true;
|
||||
var app = new goog.collab.CollaborativeApp();
|
||||
@ -50,6 +51,7 @@ mindplot.collaboration.framework.brix.BrixFramework.instanciate = function() {
|
||||
app.addListener('modelLoad', function(model) {
|
||||
var framework = new mindplot.collaboration.framework.brix.BrixFramework(model, app);
|
||||
mindplot.collaboration.CollaborationManager.getInstance().setCollaborativeFramework(framework);
|
||||
onload();
|
||||
}.bind(this));
|
||||
}
|
||||
};
|
||||
@ -80,6 +82,5 @@ mindplot.collaboration.framework.brix.BrixFramework.buildMenu = function(app) {
|
||||
|
||||
app.setMenuBar(menuBar);
|
||||
};
|
||||
mindplot.collaboration.framework.brix.BrixFramework.instanciate();
|
||||
|
||||
|
||||
|
@ -30,13 +30,48 @@
|
||||
<script type='text/javascript' src='/core-js/target/classes/core.js'></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
//Google-Brix framework load callback function
|
||||
collabOnLoad = function() {
|
||||
isGoogleBrix = true;
|
||||
if ($defined(mindplot) && $defined(mindplot.collaboration) && $defined(mindplot.collaboration.framework)) {
|
||||
mindplot.collaboration.framework.brix.BrixFramework.instanciate();
|
||||
}
|
||||
$(document).fireEvent('loadcomplete', 'brix');
|
||||
};
|
||||
|
||||
var brixReady = false;
|
||||
var mindReady = false;
|
||||
var local = false;
|
||||
$(document).addEvent('loadcomplete', function(resource) {
|
||||
brixReady = resource == 'brix' ? true : brixReady;
|
||||
mindReady = resource == 'mind' ? true : mindReady;
|
||||
|
||||
// If both resources has been loaded, start loading the framework...
|
||||
if (brixReady && mindReady) {
|
||||
var designer = buildDesigner();
|
||||
mindplot.collaboration.framework.brix.BrixFramework.init(function() {
|
||||
var collaborationManager = mindplot.collaboration.CollaborationManager.getInstance();
|
||||
if (collaborationManager.isCollaborativeFrameworkReady()) {
|
||||
designer.loadFromCollaborativeModel(collaborationManager);
|
||||
|
||||
}
|
||||
// If not problem has arisen, close the dialog ...
|
||||
if (!window.hasUnexpectedErrors) {
|
||||
waitDialog.deactivate();
|
||||
}
|
||||
});
|
||||
|
||||
} else if (local) {
|
||||
// Only for debug and local development...
|
||||
var desig = buildDesigner();
|
||||
|
||||
var mapId = '1';
|
||||
var mapXml = '<map name="38298" version="pela"><topic central="true" text="test\nThis is working ?" id="1"/></map>';
|
||||
desig.loadFromXML(mapId, mapXml);
|
||||
|
||||
if (!window.hasUnexpectedErrors) {
|
||||
waitDialog.deactivate();
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<link rel="icon" href="../images/favicon.ico" type="image/x-icon">
|
||||
@ -78,13 +113,6 @@
|
||||
waitDialog.changeContent($("errorDialog"), false);
|
||||
return false;
|
||||
});
|
||||
|
||||
// @Todo: This must be persited in the map properties ...
|
||||
var mapId = '1';
|
||||
var mapXml = '<map name="38298" version="pela"><topic central="true" text="test\nThis is working ?" id="1"/></map>';
|
||||
var editorProperties = {zoom:0.85,saveOnLoad:true};
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<div id="colorPalette">
|
||||
|
@ -150,29 +150,23 @@ Tabs.Init();
|
||||
// Hide the content while waiting for the onload event to trigger.
|
||||
var contentId = window.location.hash || "#Introduction";
|
||||
|
||||
function afterMindpotLibraryLoading() {
|
||||
buildMindmapDesigner();
|
||||
function buildDesigner() {
|
||||
|
||||
if ($('helpButton') != null) {
|
||||
var helpPanel = new Panel({panelButton:$('helpButton'), backgroundColor:'black'});
|
||||
helpPanel.setContent(Help.buildHelp(helpPanel));
|
||||
}
|
||||
var container = $('mindplot');
|
||||
container.setStyles({
|
||||
height: parseInt(screen.height),
|
||||
width: parseInt(screen.width)
|
||||
});
|
||||
|
||||
if ($('helpButtonFirstSteps') != null) {
|
||||
var firstStepsPanel = $('helpButtonFirstSteps')
|
||||
firstStepsPanel.addEvent('click', function(event) {
|
||||
var firstStepWindow = window.open("firststeps.htm", "WiseMapping", "width=100px, height=100px");
|
||||
firstStepWindow.focus();
|
||||
firstStepWindow.moveTo(0, 0);
|
||||
firstStepWindow.resizeTo(screen.availWidth, screen.availHeight);
|
||||
});
|
||||
}
|
||||
var editorProperties = {zoom:0.85,saveOnLoad:true};
|
||||
designer = new mindplot.MindmapDesigner(editorProperties, container);
|
||||
designer.setViewPort({
|
||||
height: parseInt(window.innerHeight - 112), // Footer and Header
|
||||
width: parseInt(window.innerWidth)
|
||||
});
|
||||
|
||||
if ($('helpButtonKeyboard') != null) {
|
||||
var keyboardPanel = $('helpButtonKeyboard')
|
||||
keyboardPanel.addEvent('click', function(event) {
|
||||
MOOdalBox.open('keyboard.htm', 'KeyBoard Shortcuts', '500px 400px', false)
|
||||
});
|
||||
if (!mindplot.collaboration.CollaborationManager.getInstance().isCollaborationFrameworkAvailable()) {
|
||||
loadSingleModel(designer);
|
||||
}
|
||||
|
||||
var menu = new mindplot.widget.Menu(designer, 'toolbar');
|
||||
@ -182,50 +176,7 @@ function afterMindpotLibraryLoading() {
|
||||
menu.clear()
|
||||
};
|
||||
|
||||
// If not problem has arisen, close the dialog ...
|
||||
(function() {
|
||||
if (!window.hasUnexpectedErrors) {
|
||||
waitDialog.deactivate();
|
||||
}
|
||||
}).delay(500);
|
||||
}
|
||||
|
||||
function buildMindmapDesigner() {
|
||||
// Initialize message logger ...
|
||||
// var monitor = new core.Monitor($('msgLoggerContainer'), $('msgLogger'));
|
||||
// core.Monitor.setInstance(monitor);
|
||||
|
||||
var container = $('mindplot');
|
||||
|
||||
container.setStyles({
|
||||
height: parseInt(screen.height),
|
||||
width: parseInt(screen.width)
|
||||
});
|
||||
|
||||
designer = new mindplot.MindmapDesigner(editorProperties, container);
|
||||
designer.setViewPort({
|
||||
height: parseInt(window.innerHeight-112), // Footer and Header
|
||||
width: parseInt(window.innerWidth)
|
||||
});
|
||||
|
||||
if (mindplot.collaboration.CollaborationManager.getInstance().isCollaborationFrameworkAvailable()) {
|
||||
buildCollaborativeMindmapDesigner();
|
||||
} else {
|
||||
buildStandaloneMindmapDesigner();
|
||||
}
|
||||
}
|
||||
|
||||
function buildStandaloneMindmapDesigner() {
|
||||
designer.loadFromXML(mapId, mapXml);
|
||||
}
|
||||
|
||||
function buildCollaborativeMindmapDesigner() {
|
||||
var collaborationManager = mindplot.collaboration.CollaborationManager.getInstance();
|
||||
if (collaborationManager.isCollaborativeFrameworkReady()) {
|
||||
designer.loadFromCollaborativeModel(collaborationManager);
|
||||
} else {
|
||||
collaborationManager.setWiseReady(true);
|
||||
}
|
||||
return designer;
|
||||
}
|
||||
|
||||
//######################### Libraries Loading ##################################
|
||||
@ -262,7 +213,6 @@ function JSPomLoader(pomUrl, callback) {
|
||||
callback();
|
||||
} else {
|
||||
var url = urls.pop();
|
||||
// console.log("load url:" + url);
|
||||
Asset.javascript(url, {
|
||||
onLoad: function() {
|
||||
jsRecLoad(urls)
|
||||
@ -285,13 +235,15 @@ var localEnv = true;
|
||||
if (localEnv) {
|
||||
Asset.javascript("../../../../../web2d/target/classes/web2d.svg-min.js", {
|
||||
onLoad: function() {
|
||||
JSPomLoader('../../../../../mindplot/pom.xml', afterMindpotLibraryLoading)
|
||||
JSPomLoader('../../../../../mindplot/pom.xml', function() {
|
||||
$(document).fireEvent('loadcomplete', 'mind')
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
Asset.javascript("../js/mindplot.svg.js", {
|
||||
onLoad: function() {
|
||||
afterMindpotLibraryLoading();
|
||||
onLoad:function() {
|
||||
$(document).fireEvent('loadcomplete', 'mind')
|
||||
}
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue
Block a user