mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
115 lines
3.5 KiB
JavaScript
115 lines
3.5 KiB
JavaScript
|
/*
|
||
|
* Copyright [2015] [wisemapping]
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
const PersistenceManager = require('../PersistenceManager').default;
|
||
|
|
||
|
const IMenu = new Class({
|
||
|
|
||
|
initialize:function (designer, containerId, mapId) {
|
||
|
$assert(designer, "designer can not be null");
|
||
|
$assert(containerId, "containerId can not be null");
|
||
|
|
||
|
this._designer = designer;
|
||
|
this._toolbarElems = [];
|
||
|
this._containerId = containerId;
|
||
|
this._mapId = mapId;
|
||
|
this._mindmapUpdated = false;
|
||
|
var me = this;
|
||
|
// Register update events ...
|
||
|
this._designer.addEvent('modelUpdate', function () {
|
||
|
me.setRequireChange(true);
|
||
|
});
|
||
|
},
|
||
|
|
||
|
clear:function () {
|
||
|
_.each(this._toolbarElems, function (item) {
|
||
|
item.hide();
|
||
|
});
|
||
|
},
|
||
|
|
||
|
discardChanges:function (designer) {
|
||
|
// Avoid autosave before leaving the page ....
|
||
|
this.setRequireChange(false);
|
||
|
|
||
|
// Finally call discard function ...
|
||
|
var persistenceManager = PersistenceManager.getInstance();
|
||
|
var mindmap = designer.getMindmap();
|
||
|
persistenceManager.discardChanges(mindmap.getId());
|
||
|
|
||
|
// Unlock map ...
|
||
|
this.unlockMap(designer);
|
||
|
|
||
|
// Reload the page ...
|
||
|
window.location.reload();
|
||
|
|
||
|
},
|
||
|
|
||
|
unlockMap:function (designer) {
|
||
|
var mindmap = designer.getMindmap();
|
||
|
var persistenceManager = PersistenceManager.getInstance();
|
||
|
persistenceManager.unlockMap(mindmap);
|
||
|
},
|
||
|
|
||
|
save:function (saveElem, designer, saveHistory, sync) {
|
||
|
// Load map content ...
|
||
|
var mindmap = designer.getMindmap();
|
||
|
var mindmapProp = designer.getMindmapProperties();
|
||
|
|
||
|
// Display save message ..
|
||
|
if (saveHistory) {
|
||
|
$notify($msg('SAVING'));
|
||
|
saveElem.css('cursor', 'wait');
|
||
|
}
|
||
|
|
||
|
// Call persistence manager for saving ...
|
||
|
var menu = this;
|
||
|
var persistenceManager = PersistenceManager.getInstance();
|
||
|
persistenceManager.save(mindmap, mindmapProp, saveHistory, {
|
||
|
onSuccess:function () {
|
||
|
if (saveHistory) {
|
||
|
saveElem.css('cursor', 'pointer');
|
||
|
$notify($msg('SAVE_COMPLETE'));
|
||
|
}
|
||
|
menu.setRequireChange(false);
|
||
|
},
|
||
|
|
||
|
onError:function (error) {
|
||
|
if (saveHistory) {
|
||
|
saveElem.css('cursor', 'pointer');
|
||
|
|
||
|
if (error.severity != "FATAL") {
|
||
|
$notify(error.message);
|
||
|
} else {
|
||
|
$notifyModal(error.message);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}, sync);
|
||
|
|
||
|
},
|
||
|
|
||
|
isSaveRequired:function () {
|
||
|
return this._mindmapUpdated;
|
||
|
},
|
||
|
|
||
|
setRequireChange:function (value) {
|
||
|
this._mindmapUpdated = value;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default IMenu
|