7fc788bf932457aed7dd3de3ffddfd52e160adf8
[sdc.git] / catalog-ui / src / app / models / data-types.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * Created by rcohen on 9/25/2016.
23  */
24 'use strict';
25 import {PropertyBEModel} from "./properties-inputs/property-be-model";
26 import {AttributeBEModel} from "./attributes-outputs/attribute-be-model";
27 import {Model} from "./model";
28 import {PROPERTY_DATA} from "../utils/constants";
29
30 export class DataTypeModel {
31
32     //server data
33     name:string;
34     uniqueId:string;
35     derivedFromName:string;
36     derivedFrom:DataTypeModel;
37     creationTime:string;
38     modificationTime:string;
39     properties: Array<PropertyBEModel>;
40     attributes: Array<AttributeBEModel>;
41     model: Model;
42
43     constructor(dataType: DataTypeModel) {
44         if (dataType) {
45             this.uniqueId = dataType.uniqueId;
46             this.name = dataType.name;
47             this.derivedFromName = dataType.derivedFromName;
48             if (dataType.derivedFrom) {
49                 this.derivedFrom = new DataTypeModel(dataType.derivedFrom);
50             }
51             this.creationTime = dataType.creationTime;
52             this.modificationTime = dataType.modificationTime;
53             if (dataType.properties) {
54                 this.properties = [];
55                 dataType.properties.forEach(property => {
56                     this.properties.push(new PropertyBEModel(property));
57                 });
58             }
59             this.attributes = dataType.attributes;
60             this.model = dataType.model;
61         }
62     }
63
64     public toJSON = ():any => {
65
66         return this;
67     };
68
69     /**
70      * Parses the default value to JSON.
71      */
72     public parseDefaultValueToJson(): any {
73         if (PROPERTY_DATA.TYPES.indexOf(this.name) > -1) {
74             return undefined;
75         }
76         const defaultValue = {};
77         if (this.properties) {
78             this.properties.forEach(property => {
79                 const propertyDefaultValue = property.parseDefaultValueToJson();
80                 if (propertyDefaultValue != undefined) {
81                     defaultValue[property.name] = propertyDefaultValue;
82                 }
83             });
84         }
85
86         return defaultValue === {} ? undefined : defaultValue;
87     }
88 }
89