RIFT-14705 - UI Composer: Add IVLD to VNFD is broken
[osm/UI.git] / skyquake / plugins / composer / src / src / libraries / model / descriptors / InternalConnectionPoint.js
1 /*
2 *
3 * Copyright 2016 RIFT.IO Inc
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19 'use strict';
20
21 import Position from '../../graph/Position';
22 import DescriptorModel from '../DescriptorModel';
23 import DescriptorModelFactory from '../DescriptorModelFactory';
24 import InternalConnectionPointRef from './InternalConnectionPointRef';
25
26 export default class InternalConnectionPoint extends DescriptorModel {
27
28 static get type() {
29 return 'internal-connection-point';
30 }
31
32 static get className() {
33 return 'InternalConnectionPoint';
34 }
35
36 static get qualifiedType() {
37 return 'vnfd.vdu.' + InternalConnectionPoint.type;
38 }
39
40 constructor(model, parent) {
41 super(model, parent);
42 // evil type collides with the YANG property 'type' for this object
43 this.type = 'internal-connection-point';
44 this.uiState['qualified-type'] = InternalConnectionPoint.qualifiedType;
45 this.className = 'InternalConnectionPoint';
46 this.location = 'bottom-left';
47 this.position = new Position(parent.position.value());
48 this.position.top = parent.position.bottom;
49 this.position.width = 14;
50 this.position.height = 14;
51 }
52
53 get key() {
54 return this.id;
55 }
56
57 get id() {
58 return this.model.id;
59 }
60
61 get name() {
62 return this.model.name
63 }
64
65 get idRef() {
66 return this.parent.idRef;
67 }
68
69 get cpNumber() {
70 return this.uiState.cpNumber;
71 }
72
73 set cpNumber(n) {
74 this.uiState.cpNumber = n;
75 }
76
77 toInternalConnectionPointRef() {
78 const ref = new InternalConnectionPointRef({});
79 ref.idRef = this.id;
80 // ref.cpNumber = this.cpNumber;
81 return ref;
82 }
83
84 canConnectTo(obj) {
85 return DescriptorModelFactory.isInternalVirtualLink(obj) || (DescriptorModelFactory.isInternalConnectionPoint(obj) && obj.parent !== this.parent);
86 }
87
88 remove() {
89 return this.parent.removeInternalConnectionPoint(this);
90 }
91
92 }