2021-07-16 11:41:58 -03:00
|
|
|
/*
|
2021-12-25 14:39:34 -08:00
|
|
|
* Copyright [2021] [wisemapping]
|
2021-07-16 11:41:58 -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.
|
|
|
|
*/
|
2021-12-05 08:33:09 -08:00
|
|
|
import $ from 'jquery';
|
2021-12-02 00:41:56 +00:00
|
|
|
import PersistenceManager from './PersistenceManager';
|
2021-07-16 11:41:58 -03:00
|
|
|
|
2021-12-04 15:39:20 -08:00
|
|
|
class LocalStorageManager extends PersistenceManager {
|
2022-01-31 00:05:22 +00:00
|
|
|
private documentUrl: string;
|
|
|
|
|
|
|
|
private forceLoad: boolean;
|
|
|
|
|
2022-01-31 19:24:38 -08:00
|
|
|
constructor(documentUrl: string, forceLoad: boolean) {
|
2021-12-04 15:39:20 -08:00
|
|
|
super();
|
2021-10-04 17:05:34 -07:00
|
|
|
this.documentUrl = documentUrl;
|
|
|
|
this.forceLoad = forceLoad;
|
2021-12-04 15:39:20 -08:00
|
|
|
}
|
2021-07-16 11:41:58 -03:00
|
|
|
|
2022-02-16 22:24:41 -08:00
|
|
|
saveMapXml(mapId: string, mapDoc: Document): void {
|
2022-02-13 18:06:50 -08:00
|
|
|
const mapXml = new XMLSerializer().serializeToString(mapDoc);
|
2021-10-04 17:05:34 -07:00
|
|
|
localStorage.setItem(`${mapId}-xml`, mapXml);
|
2021-12-04 15:39:20 -08:00
|
|
|
}
|
2021-07-16 11:41:58 -03:00
|
|
|
|
2022-01-31 00:05:22 +00:00
|
|
|
discardChanges(mapId: string) {
|
2021-10-04 17:05:34 -07:00
|
|
|
localStorage.removeItem(`${mapId}-xml`);
|
2021-12-04 15:39:20 -08:00
|
|
|
}
|
2021-07-16 11:41:58 -03:00
|
|
|
|
2022-01-31 00:05:22 +00:00
|
|
|
loadMapDom(mapId: string) {
|
2021-10-04 17:05:34 -07:00
|
|
|
let xml = localStorage.getItem(`${mapId}-xml`);
|
|
|
|
if (xml == null || this.forceLoad) {
|
|
|
|
$.ajax({
|
|
|
|
url: this.documentUrl.replace('{id}', mapId),
|
|
|
|
headers: { 'Content-Type': 'text/plain', Accept: 'application/xml' },
|
|
|
|
type: 'get',
|
|
|
|
dataType: 'text',
|
|
|
|
async: false,
|
|
|
|
success(response) {
|
|
|
|
xml = response;
|
2021-07-16 11:41:58 -03:00
|
|
|
},
|
2021-12-25 12:09:02 -08:00
|
|
|
error(xhr, ajaxOptions, thrownError) {
|
|
|
|
console.error(`Request error => status:${xhr.status} ,thrownError: ${thrownError}`);
|
|
|
|
},
|
2021-10-04 17:05:34 -07:00
|
|
|
});
|
|
|
|
// If I could not load it from a file, hard code one.
|
|
|
|
if (xml == null) {
|
2021-12-25 11:40:44 -08:00
|
|
|
throw new Error(`Map could not be loaded with id:${mapId}`);
|
2021-10-04 17:05:34 -07:00
|
|
|
}
|
2021-07-16 11:41:58 -03:00
|
|
|
}
|
2021-10-04 17:05:34 -07:00
|
|
|
|
2021-12-19 09:07:01 -08:00
|
|
|
return $.parseXML(xml);
|
2021-12-04 15:39:20 -08:00
|
|
|
}
|
2021-10-04 17:05:34 -07:00
|
|
|
|
2022-02-16 12:43:53 -08:00
|
|
|
unlockMap(): void {
|
2021-10-04 17:05:34 -07:00
|
|
|
// Ignore, no implementation required ...
|
2021-12-04 15:39:20 -08:00
|
|
|
}
|
|
|
|
}
|
2021-07-16 11:41:58 -03:00
|
|
|
|
|
|
|
export default LocalStorageManager;
|