summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/shared/components/e2e-detail/e2e-detail.component.html
blob: 976a9f6c86f2d0a09c3c10d2cc763c3c38796e6b (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!--
    Copyright (C) 2019 CMCC, Inc. and others. 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.
-->
<!--<h3 class="title"> Services List </h3>-->
<div class="model creation-model">

  <div class="top-title">
    <h3 class="title fl">{{serviceInstanceName}} Instance Detail</h3>
    <div class="fl" style="width: 20%">
      <button class="back" nz-button (click)="goback()"></button>
    </div>
  </div>
  <div class="detaildata fl">
    <div *ngIf="detailParams.serviceDomain == 'E2E Service'" class="baseparms clearfix">
      <div class="vnf-box">
        <h3> {{"i18nTextDefine_Base" | translate}} </h3>
        <ul class="clearfix">
          <li>
            <span style="width:15%">Name:</span>
            <span class="input-content">{{service.name}}</span>
          </li>
          <li>
            <span style="width:25%">Description:</span>
            <span class="input-content">{{service.description}}</span>
          </li>
        </ul>
      </div>
      <div class="vnf-box" *ngIf="getKeys(e2e_requestInputs).length>0">
        <h3>{{"i18nTextDefine_templateInputs" | translate}}</h3>
        <ul class="clearfix">
          <li *ngFor="let key of getKeys(e2e_requestInputs);">
            <span title="{{key}}">{{key}}:</span>
            <span class="input-content">{{e2e_requestInputs[key]}}</span>
          </li>
        </ul>
      </div>
      <div class="vnf-box" *ngFor="let template of e2e_nestedTemplates;">
        <h3>{{template.name}}</h3>
        <ul class="clearfix">
          <li *ngFor="let input of template.vnfs; let i = index;">
            <span style="width: 26%;min-width: 80px!important"> vf_location: </span>
            <span class="input-content">{{input["vf_location"]}}</span>
          </li>
        </ul>
      </div>
    </div>

    <div *ngIf="detailParams.serviceDomain=='Network Service'" class="baseparms clearfix">
      <div class="vnf-box">
        <h3> {{"i18nTextDefine_Base" | translate}} </h3>
        <ul class="clearfix">
          <li>
            <span style="width:15%">Name:</span>
            <span class="input-content">{{ns_service.name}}</span>
          </li>
          <li>
            <span style="width:25%">Description:</span>
            <span class="input-content">{{ns_service.description}}</span>
          </li>
        </ul>
      </div>
      <div class="vnf-box" *ngIf="getKeys(ns_requestInputs).length>0">
        <h4>{{"i18nTextDefine_templateInputs" | translate}}</h4>
        <ul>
          <li *ngFor="let key of getKeys(ns_requestInputs);">
            <span title="{{key}}">{{key}}:</span>
            <span class="input-content">{{ns_requestInputs[key]}}</span>
          </li>
        </ul>
      </div>
      <div class="vnf-box" *ngIf="ns_nestedTemplates.length>0">
        <h4>vnfs Inputs</h4>
        <ul>
          <li *ngFor="let vnf of ns_nestedTemplates;">
            <h5>
              <span style="width: 26%;min-width: 80px!important"> id: </span>
              <span class="input-content"> {{vnf.vnfInstanceId}}</span>
            </h5>
           <h5>
             <span style="width: 26%;min-width: 80px!important"> vf_location: </span>
             <span class="input-content">{{vnf["vnfInstanceName"]}}</span>
           </h5>
          </li>
        </ul>
      </div>
    </div>
  </div>

  <!-- chart -->
  <div class="chart fr">
    <div id="createChart">
      <svg width="100%" height="100%">
      </svg>
    </div>
  </div>

</div>