blob: 952c1dc79304ea8f389ec4cac5f602b229144d3e [file] [log] [blame]
kumaran.m3b4814a2020-05-01 19:48:54 +05301/*
2 Copyright 2020 TATA ELXSI
3
4 Licensed under the Apache License, Version 2.0 (the 'License');
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
17*/
18/**
19 * @file Info VIM Page
20 */
21import { Component, Injector, OnInit } from '@angular/core';
22import { ActivatedRoute, Router } from '@angular/router';
23import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
24import { ERRORDATA } from 'CommonModel';
25import { DataService } from 'DataService';
26import { environment } from 'environment';
27import * as HttpStatus from 'http-status-codes';
28import { RestService } from 'RestService';
29import { isNullOrUndefined } from 'util';
30import { CONFIG, VimAccountDetails, VIMData } from 'VimAccountModel';
31
32/**
33 * Creating component
34 * @Component InfoVimComponent.html as template url
35 */
36@Component({
37 selector: 'app-info-vim',
38 templateUrl: './InfoVimComponent.html',
39 styleUrls: ['./InfoVimComponent.scss']
40})
41/** Exporting a class @exports InfoVimComponent */
42export class InfoVimComponent implements OnInit {
43 /** To inject services @public */
44 public injector: Injector;
45
46 /** vimAccountDetails to populate in InfoVIM Page @private */
47 public vimAccountDetails: VimAccountDetails;
48
49 /** Information Top Left @public */
Barath Kumar Rd477b852020-07-07 15:24:05 +053050 public configParams: {} = {};
kumaran.m3b4814a2020-05-01 19:48:54 +053051
52 /** Showing more details of collapase */
53 public isCollapsed: boolean = true;
54
55 /** Contains vim details @public */
56 public vimDetails: {}[];
57
58 /** Check the Projects loading results @public */
59 public isLoadingResults: boolean = false;
60
61 /** Give the message for the loading @public */
62 public message: string = 'PLEASEWAIT';
63
64 /** variables contains paramsID @private */
65 private paramsID: string;
66
67 /** Instance of the rest service @private */
68 private restService: RestService;
69
70 /** Holds the instance of router class @private */
71 private router: Router;
72
73 /** dataService to pass the data from one component to another @private */
74 private dataService: DataService;
75
76 /** vimId to populate in InfoVIM Page @private */
77 private vimId: string;
78
79 /** Holds teh instance of AuthService class of type AuthService @private */
80 private activatedRoute: ActivatedRoute;
81
82 /** Utilizes modal service for any modal operations @private */
83 private modalService: NgbModal;
84
85 constructor(injector: Injector) {
86 this.injector = injector;
87 this.restService = this.injector.get(RestService);
88 this.dataService = this.injector.get(DataService);
89 this.activatedRoute = this.injector.get(ActivatedRoute);
90 this.modalService = this.injector.get(NgbModal);
91 this.router = this.injector.get(Router);
92 }
93
94 /**
95 * Lifecyle Hooks the trigger before component is instantiate
96 */
97 public ngOnInit(): void {
98 // tslint:disable-next-line:no-backbone-get-set-outside-model
99 this.paramsID = this.activatedRoute.snapshot.paramMap.get('id');
100 this.dataService.currentMessage.subscribe((data: VIMData) => {
101 this.vimId = data.identifier;
102 });
103 this.generateData();
104 }
105
106 /** Routing to VIM Account Details Page @public */
107 public onVimAccountBack(): void {
108 this.router.navigate(['vim/details']).catch(() => {
109 // Error Cached
110 });
111 }
112
113 /** Generate Data function @public */
114 public generateData(): void {
115 this.isLoadingResults = true;
116 this.restService.getResource(environment.VIMACCOUNTS_URL + '/' + this.paramsID)
117 .subscribe((vimAccountsData: VimAccountDetails) => {
118 this.showDetails(vimAccountsData);
SANDHYA.JS40cc37e2023-03-07 11:01:46 +0530119 if (!isNullOrUndefined(vimAccountsData.config)) {
Barath Kumar Rd477b852020-07-07 15:24:05 +0530120 if (vimAccountsData.config.location !== undefined) {
121 const locationArr: string[] = vimAccountsData.config.location.split(',');
122 if (Array.isArray(locationArr)) {
123 vimAccountsData.config.location = locationArr[0];
kumaran.m3b4814a2020-05-01 19:48:54 +0530124 }
125 }
Barath Kumar Rd477b852020-07-07 15:24:05 +0530126 Object.keys(vimAccountsData.config).forEach((key: string) => {
127 if (Array.isArray(vimAccountsData.config[key]) || typeof vimAccountsData.config[key] === 'object') {
128 vimAccountsData.config[key] = JSON.stringify(vimAccountsData.config[key]);
129 }
130 const keyArr: string[] = key.split('_');
131 if (keyArr.length > 1 ) {
132 vimAccountsData.config[key.split('_').join(' ')] = vimAccountsData.config[key];
133 delete vimAccountsData.config[key];
134 }
135 });
136 this.configParams = vimAccountsData.config;
SANDHYA.JS40cc37e2023-03-07 11:01:46 +0530137 }
kumaran.m3b4814a2020-05-01 19:48:54 +0530138 this.isLoadingResults = false;
139 }, (error: ERRORDATA) => {
140 this.isLoadingResults = false;
141 if (error.error.status === HttpStatus.NOT_FOUND || error.error.status === HttpStatus.UNAUTHORIZED) {
142 this.router.navigateByUrl('404', { skipLocationChange: true }).catch();
143 } else {
144 this.restService.handleError(error, 'get');
145 }
146 });
147 }
148
149 /** show general vim detailed information @public */
150 public showDetails(vimAccountsData: VimAccountDetails): void {
151 this.vimDetails = [
152 {
153 title: 'PAGE.VIMDETAILS.NAME',
154 value: vimAccountsData.name
155 },
156 {
157 title: 'PAGE.VIMDETAILS.VIMUSERNAME',
158 value: vimAccountsData.vim_user
159 },
160 {
161 title: 'PAGE.VIMDETAILS.VIMURL',
162 value: vimAccountsData.vim_url
163 },
164 {
165 title: 'PAGE.VIMDETAILS.VIMTYPE',
166 value: vimAccountsData.vim_type
167 },
168 {
169 title: 'PAGE.VIMDETAILS.TENANTNAME',
170 value: vimAccountsData.vim_tenant_name
171 },
172 {
173 title: 'PAGE.VIMDETAILS.DESCRIPTION',
174 value: vimAccountsData.description
175 },
176 {
177 title: 'PAGE.VIMDETAILS.SCHEMATYPE',
178 value: vimAccountsData.schema_type
179 },
180 {
181 title: 'PAGE.VIMDETAILS.SCHEMAVERSION',
182 value: vimAccountsData.schema_version
183 }
184 ];
185 }
kumaran.m3b4814a2020-05-01 19:48:54 +0530186}