wisemapping-frontend/packages/mindplot/lib/components/model/FeatureModel.js

92 lines
2.1 KiB
JavaScript
Raw Normal View History

2021-07-16 16:41:58 +02: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.
*/
const FeatureModel = new Class(/** @lends FeatureModel */{
2021-10-05 02:05:34 +02:00
Static: {
_nextUUID() {
if (!$defined(FeatureModel._uuid)) {
FeatureModel._uuid = 0;
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
FeatureModel._uuid += 1;
return FeatureModel._uuid;
2021-07-16 16:41:58 +02:00
},
2021-10-05 02:05:34 +02:00
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @constructs
* @param type
* @throws will throw an exception if type is null or undefined
* assigns a unique id and the given type to the new model
*/
2021-10-05 02:05:34 +02:00
initialize(type) {
$assert(type, 'type can not be null');
this._id = FeatureModel._nextUUID();
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
this._type = type;
this._attributes = {};
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
// Create type method ...
this[`is${$.camelCase(type)}Model`] = function () {
return true;
};
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
getAttributes() {
return Object.clone(this._attributes);
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
setAttributes(attributes) {
for (key in attributes) {
this[`set${key.capitalize()}`](attributes[key]);
}
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
setAttribute(key, value) {
$assert(key, 'key id can not be null');
this._attributes[key] = value;
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
getAttribute(key) {
$assert(key, 'key id can not be null');
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
return this._attributes[key];
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
getId() {
return this._id;
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
setId(id) {
this._id = id;
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
getType() {
return this._type;
},
2021-07-16 16:41:58 +02:00
});
export default FeatureModel;