2021-07-16 16:41:58 +02:00
|
|
|
/*
|
2021-12-25 23:39:34 +01:00
|
|
|
* Copyright [2021] [wisemapping]
|
2021-07-16 16:41:58 +02: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.
|
|
|
|
*/
|
2022-01-02 23:01:50 +01:00
|
|
|
import { $assert } from '@wisemapping/core-js';
|
2022-02-04 08:07:34 +01:00
|
|
|
import FeatureType from './FeatureType';
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-12-03 19:58:25 +01:00
|
|
|
class FeatureModel {
|
2022-01-02 23:01:50 +01:00
|
|
|
static _next_id = 0;
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-01-03 06:04:37 +01:00
|
|
|
private _id: number;
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-01-03 06:04:37 +01:00
|
|
|
private _type: FeatureType;
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-02-01 04:24:38 +01:00
|
|
|
private _attributes;
|
2022-01-02 23:01:50 +01: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
|
|
|
|
*/
|
2022-01-02 23:01:50 +01:00
|
|
|
constructor(type: FeatureType) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$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 ...
|
2021-12-15 06:34:40 +01:00
|
|
|
this[`is${FeatureModel.capitalize(type)}Model`] = () => true;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
getAttributes() {
|
2021-12-14 18:06:09 +01:00
|
|
|
return { ...this._attributes };
|
|
|
|
}
|
|
|
|
|
2022-01-03 17:31:50 +01:00
|
|
|
static capitalize(str: string) {
|
2021-12-15 06:34:40 +01:00
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
setAttributes(attributes) {
|
2021-12-15 06:34:40 +01:00
|
|
|
Object.keys(attributes).forEach((attr) => {
|
|
|
|
const funName = `set${FeatureModel.capitalize(attr)}`;
|
2021-12-14 18:06:09 +01:00
|
|
|
const value = attributes[attr];
|
|
|
|
this[funName](value);
|
2021-12-15 06:34:40 +01:00
|
|
|
});
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-13 17:13:05 +01:00
|
|
|
setAttribute(key: string, value: unknown) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$assert(key, 'key id can not be null');
|
|
|
|
this._attributes[key] = value;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-03 17:31:50 +01:00
|
|
|
getAttribute(key: string) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$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-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-03 17:31:50 +01:00
|
|
|
getId(): number {
|
2021-10-05 02:05:34 +02:00
|
|
|
return this._id;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-03 17:31:50 +01:00
|
|
|
setId(id: number) {
|
2021-12-16 02:59:51 +01:00
|
|
|
$assert(Number.isFinite(id));
|
2021-10-05 02:05:34 +02:00
|
|
|
this._id = id;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-02 23:01:50 +01:00
|
|
|
getType(): FeatureType {
|
2021-10-05 02:05:34 +02:00
|
|
|
return this._type;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-02 23:01:50 +01:00
|
|
|
static _nextUUID(): number {
|
|
|
|
const result = FeatureModel._next_id + 1;
|
|
|
|
FeatureModel._next_id = result;
|
|
|
|
return result;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
2022-01-02 23:01:50 +01:00
|
|
|
}
|
2021-12-02 01:41:56 +01:00
|
|
|
|
2021-07-16 16:41:58 +02:00
|
|
|
export default FeatureModel;
|