2011-11-28 21:27:57 -03:00
|
|
|
/*
|
2012-10-04 20:48:01 -03:00
|
|
|
* Copyright [2012] [wisemapping]
|
2011-11-28 21:27:57 -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.
|
|
|
|
*/
|
|
|
|
|
2011-11-28 22:17:55 -03:00
|
|
|
mindplot.LocalStorageManager = new Class({
|
2012-02-02 00:13:29 -03:00
|
|
|
Extends:mindplot.PersistenceManager,
|
2012-09-30 17:15:01 -03:00
|
|
|
initialize:function () {
|
2011-11-28 21:27:57 -03:00
|
|
|
this.parent();
|
|
|
|
},
|
|
|
|
|
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);
|
2011-11-28 21:27:57 -03:00
|
|
|
},
|
|
|
|
|
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");
|
|
|
|
if (xml == null) {
|
|
|
|
// Let's try to open one from the local directory ...
|
|
|
|
var xmlRequest = new Request({
|
2012-09-30 17:15:01 -03:00
|
|
|
url:'samples/' + mapId + '.xml',
|
|
|
|
method:'get',
|
|
|
|
async:false,
|
|
|
|
onSuccess:function (responseText) {
|
2011-11-28 22:17:55 -03:00
|
|
|
xml = responseText;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
xmlRequest.send();
|
2011-11-28 21:27:57 -03:00
|
|
|
|
2011-11-28 22:17:55 -03:00
|
|
|
// If I could not load it from a file, hard code one.
|
|
|
|
if (xml == null) {
|
2012-09-19 20:01:22 -03:00
|
|
|
throw new Error("Map could not be loaded");
|
2011-11-28 21:27:57 -03:00
|
|
|
}
|
2011-11-28 22:17:55 -03:00
|
|
|
}
|
2012-05-27 18:15:46 -03:00
|
|
|
|
|
|
|
var parser = new DOMParser();
|
|
|
|
return parser.parseFromString(xml, "text/xml");
|
2012-09-30 17:15:01 -03:00
|
|
|
},
|
|
|
|
|
|
|
|
unlockMap:function (mindmap) {
|
|
|
|
// Ignore, no implementation required ...
|
2011-11-28 21:27:57 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
|