64 lines
2.2 KiB
JavaScript
Raw Normal View History

/*
2015-04-12 00:15:12 -03:00
* 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.
*/
2011-11-28 22:17:55 -03:00
mindplot.LocalStorageManager = new Class({
Extends:mindplot.PersistenceManager,
2013-02-20 14:16:00 -03:00
initialize:function (documentUrl,forceLoad) {
this.parent();
2013-02-03 13:47:31 -03:00
this.documentUrl = documentUrl;
2013-02-20 14:16:00 -03:00
this.forceLoad = forceLoad;
},
2012-09-30 17:15:01 -03:00
saveMapXml:function (mapId, mapXml, pref, saveHistory, events) {
2011-11-28 22:17:55 -03:00
localStorage.setItem(mapId + "-xml", mapXml);
},
2012-09-30 17:15:01 -03:00
discardChanges:function (mapId) {
2012-03-07 20:52:09 -03:00
localStorage.removeItem(mapId + "-xml");
},
2012-09-30 17:15:01 -03:00
loadMapDom:function (mapId) {
2011-11-28 22:17:55 -03:00
var xml = localStorage.getItem(mapId + "-xml");
2013-02-20 14:20:11 -03:00
if (xml == null || this.forceLoad) {
2014-03-16 16:56:44 -03:00
$.ajax({
2014-06-22 23:46:36 -03:00
url: this.documentUrl.replace("{id}", mapId),
2014-09-09 13:50:17 -03:00
headers:{"Content-Type":"text/plain","Accept":"application/xml"},
2014-06-22 23:46:36 -03:00
type:'get',
dataType: "text",
async: false,
success:function (response) {
xml = response;
2011-11-28 22:17:55 -03:00
}
});
// If I could not load it from a file, hard code one.
if (xml == null) {
throw new Error("Map could not be loaded");
}
2011-11-28 22:17:55 -03:00
}
2014-06-22 23:46:36 -03:00
return jQuery.parseXML(xml);
2012-09-30 17:15:01 -03:00
},
unlockMap:function (mindmap) {
// Ignore, no implementation required ...
}
}
);