2020-07-22 20:55:52 +09:00
|
|
|
/* Copyright 2020 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-10-28 22:14:27 +09:00
|
|
|
import { objectFromEntries } from "../shared/util.js";
|
|
|
|
|
2020-07-23 05:38:04 +09:00
|
|
|
/**
|
|
|
|
* Key/value storage for annotation data in forms.
|
|
|
|
*/
|
2020-07-22 20:55:52 +09:00
|
|
|
class AnnotationStorage {
|
|
|
|
constructor() {
|
2020-08-10 23:59:16 +09:00
|
|
|
this._storage = new Map();
|
2020-08-19 05:50:23 +09:00
|
|
|
this._modified = false;
|
|
|
|
|
|
|
|
// Callbacks to signal when the modification state is set or reset.
|
|
|
|
// This is used by the viewer to only bind on `beforeunload` if forms
|
|
|
|
// are actually edited to prevent doing so unconditionally since that
|
|
|
|
// can have undesirable efffects.
|
|
|
|
this.onSetModified = null;
|
|
|
|
this.onResetModified = null;
|
2020-07-22 20:55:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the value for a given key if it exists
|
|
|
|
* or store and return the default value
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @memberof AnnotationStorage
|
|
|
|
* @param {string} key
|
|
|
|
* @param {Object} defaultValue
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
getOrCreateValue(key, defaultValue) {
|
2020-08-10 23:59:16 +09:00
|
|
|
if (this._storage.has(key)) {
|
|
|
|
return this._storage.get(key);
|
2020-07-22 20:55:52 +09:00
|
|
|
}
|
|
|
|
|
2020-08-10 23:59:16 +09:00
|
|
|
this._storage.set(key, defaultValue);
|
2020-07-22 20:55:52 +09:00
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value for a given key
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @memberof AnnotationStorage
|
|
|
|
* @param {string} key
|
|
|
|
* @param {Object} value
|
|
|
|
*/
|
|
|
|
setValue(key, value) {
|
2020-11-04 00:04:08 +09:00
|
|
|
const obj = this._storage.get(key);
|
|
|
|
let modified = false;
|
|
|
|
if (obj !== undefined) {
|
|
|
|
for (const [entry, val] of Object.entries(value)) {
|
|
|
|
if (obj[entry] !== val) {
|
|
|
|
modified = true;
|
|
|
|
obj[entry] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._storage.set(key, value);
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
if (modified) {
|
2020-08-23 03:04:25 +09:00
|
|
|
this._setModified();
|
2020-08-19 05:50:23 +09:00
|
|
|
}
|
2020-07-22 20:55:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
getAll() {
|
2020-08-10 23:59:16 +09:00
|
|
|
if (this._storage.size === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-10-28 22:14:27 +09:00
|
|
|
return objectFromEntries(this._storage);
|
2020-08-10 23:59:16 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
get size() {
|
|
|
|
return this._storage.size;
|
2020-07-22 20:55:52 +09:00
|
|
|
}
|
2020-08-19 05:50:23 +09:00
|
|
|
|
2020-08-23 03:04:25 +09:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_setModified() {
|
2020-08-19 05:50:23 +09:00
|
|
|
if (!this._modified) {
|
|
|
|
this._modified = true;
|
|
|
|
if (typeof this.onSetModified === "function") {
|
|
|
|
this.onSetModified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resetModified() {
|
|
|
|
if (this._modified) {
|
|
|
|
this._modified = false;
|
|
|
|
if (typeof this.onResetModified === "function") {
|
|
|
|
this.onResetModified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-22 20:55:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
export { AnnotationStorage };
|