summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/graph/assetPopoverObj.ts
blob: e031a32733b0c95ec9b60ed50e5c58b4570e1b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

'use strict';

export class AssetPopoverObj {

    nodeId:string;
    displayName:string;
    menuPosition:Cy.Position;
    menuSide:string;
    isViewOnly:boolean;
    VLArray:Array<any>;
    CPArray:Array<any>;

    constructor(nodeId:string, displayName:string, menuPosition:Cy.Position, menuSide:string, isViewOnly?:boolean, VLArray?:Array<any>, CPArray?:Array<any>) {
        this.nodeId = nodeId;
        this.displayName = displayName;
        this.menuPosition = {x: menuPosition.x, y: menuPosition.y};
        this.menuSide = menuSide;
        this.isViewOnly = isViewOnly || false;
        this.VLArray = VLArray || [];
        this.CPArray = CPArray || [];
    }
}
ss="p">; addOrUpdateAttribute(attribute?:AttributeModel):void; delete(attribute:AttributeModel):void; sort(sortBy:string):void; } export class AttributesViewModel { static '$inject' = [ '$scope', '$filter', '$uibModal', 'ModalsHandler', 'ComponentServiceNg2' ]; constructor(private $scope:IAttributesViewModelScope, private $filter:ng.IFilterService, private $uibModal:ng.ui.bootstrap.IModalService, private ModalsHandler:ModalsHandler, private ComponentServiceNg2: ComponentServiceNg2) { this.initComponentAttributes(); this.$scope.updateSelectedMenuItem(); } private initComponentAttributes = () => { if(this.$scope.component.attributes) { this.initScope(); } else { this.ComponentServiceNg2.getComponentAttributes(this.$scope.component).subscribe((response:ComponentGenericResponse) => { this.$scope.component.attributes = response.attributes; this.initScope(); }); } } private initScope = ():void => { this.$scope.sortBy = 'name'; this.$scope.reverse = false; this.$scope.setValidState(true); this.$scope.tableHeadersList = [ {title: 'Name', property: 'name'}, {title: 'Type', property: 'type'}, {title: 'Default Value', property: 'defaultValue'} ]; this.$scope.sort = (sortBy:string):void => { this.$scope.reverse = (this.$scope.sortBy === sortBy) ? !this.$scope.reverse : false; this.$scope.sortBy = sortBy; }; this.$scope.addOrUpdateAttribute = (attribute?:AttributeModel):void => { this.ModalsHandler.openEditAttributeModal(attribute ? attribute : new AttributeModel(), this.$scope.component); }; this.$scope.delete = (attribute:AttributeModel):void => { let onOk = ():void => { this.$scope.component.deleteAttribute(attribute.uniqueId); }; let title:string = this.$filter('translate')("ATTRIBUTE_VIEW_DELETE_MODAL_TITLE"); let message:string = this.$filter('translate')("ATTRIBUTE_VIEW_DELETE_MODAL_TEXT", "{'name': '" + attribute.name + "'}"); this.ModalsHandler.openConfirmationModal(title, message, false).then(onOk); }; } }