blob: 45dd8dc5be691e385ee0c24cf380d42868ac049c (
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
|
<nz-modal [nzVisible]="showDetail" nzWidth="85%" [nzTitle]="moduleTitle" [nzFooter]="modalFooter"
(nzOnCancel)="handleCancel()">
<nz-spin [nzSpinning]="isSpinning">
<app-basic-info [checkDetail]="checkDetail" [businessRequirement]="businessRequirement" [NSTinfo]="NSTinfo">
</app-basic-info>
<div>
<nz-list class="taskmodel_list" nzBordered [nzHeader]="nssiInfoTile" [nzFooter]="null" *ngIf="slicingInstances">
<ng-template #nssiInfoTile>
<p class="list_title">Matching Shared NSI: </p>
</ng-template>
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8">
<div nz-col nzSpan="12">
NSI ID:
<nz-select nzShowSearch [(ngModel)]="selectedServiceId" (nzOpenChange)="openSlicingInstance($event)"
(nzScrollToBottom)="getNextPageData()" (ngModelChange)="slicingInstanceChange()">
<nz-option nzCustomContent *ngFor="let item of slicingInstances.list" [nzValue]="item.service_instance_id"
[nzLabel]="item.service_instance_id">
<span>{{item.service_instance_name + ' : '}}</span> {{item.service_instance_id}}
</nz-option>
<nz-option *ngIf="slicingInstances.isLoading" nzDisabled nzCustomContent>
<i class="anticon anticon-loading anticon-spin loading-icon"></i>
Loading Data...
</nz-option>
</nz-select>
</div>
<div nz-col nzSpan="8">
NSI Name:{{ selectedServiceName }}
</div>
<div nz-col nzSpan="4">
<button nz-button nzType="primary" (click)="resetSlicingInstance()">
<i nz-icon class="anticon anticon-delete"></i>
</button>
</div>
</nz-list-item>
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8">
<p class="listitem_subtitle" nz-col nzSpan="24">Matching Shared NSSI:</p>
<nz-card *ngFor="let item of slicingSubnet,let i = index" nzType="inner" nz-col nzSpan="24"
[nzTitle]="item.title">
<div nz-row [nzGutter]="8">
<div nz-col nzSpan="12">
NSSI ID:
<nz-select nzShowSearch [nzDisabled]="isDisabled[i]" [(ngModel)]="item.slicingId"
(ngModelChange)="slicingSubnetChange(item)" (nzOpenChange)="openSubnetInstances($event, item)"
(nzScrollToBottom)="getNextPageSubnet(item)">
<nz-option nzCustomContent *ngFor="let item of item.instances" [nzValue]="item.service_instance_id"
[nzLabel]="item.service_instance_id">
<span>{{item.service_instance_name + ' : '}}</span> {{item.service_instance_id}}
</nz-option>
<nz-option *ngIf="item.isLoading" nzDisabled nzCustomContent>
<i class="anticon anticon-loading anticon-spin loading-icon"></i>
Loading Data...
</nz-option>
</nz-select>
</div>
<div nz-col nzSpan="8">
NSSI Name:{{item.slicingName}}
</div>
<div nz-col nzSpan="4">
<button nz-button nzType="primary" (click)="restSubnetInstance(item)" [disabled]='isDisabled[i]'
[attr.disabled]='isDisabled[i]?true:undefined'>
<i nz-icon class="anticon anticon-delete"></i>
</button>
<button nz-button nzType="primary" (click)="showParamsModel(item)">
<i nz-icon class="anticon anticon-setting" nzTheme="outline"></i>
</button>
</div>
</div>
</nz-card>
</nz-list-item>
</nz-list>
</div>
</nz-spin>
</nz-modal>
<ng-template #modalFooter>
<button nz-button (click)="handleCancel()">Cancel</button>
<button nz-button nzType="primary" [nzLoading]='loading' (click)="handleOk()">OK</button>
</ng-template>
<app-subnet-params-model [showModel]="isShowParams" *ngIf="isShowParams" [detailData]="params" [title]="paramsTitle"
(cancel)="isShowParams=$event" (paramsDataChange)="changeParams($event)"
(noPassParaChange)="noPassParaChange($event)">
</app-subnet-params-model>
<app-notification #notification [isServicesList]="false" [parentComponent]="'slicing'"></app-notification>
|