summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/services/onboard-vnf-vm/onboard-vnf-vm.component.html
blob: 9ada2aefed97b7eb3516e5ceb4d3f401b5dd5b04 (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
<!--
    Copyright (C) 2018 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"> Onboard VNF </h3>
<nz-upload nzType="drag" [(nzFileList)]="fileList" [nzBeforeUpload]="beforeUpload">
    <p class="ant-upload-drag-icon">
      <i nz-icon type="inbox" class="anticon anticon-inbox"></i>
    </p>
    <p class="ant-upload-text">Click or drag file to this area to upload</p>
    <p class="ant-upload-hint">Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files</p>
</nz-upload>
<button nz-button [nzLoading]="uploading" (click)="handleUpload()" [disabled]="fileList.length == 0"
    style="margin-top: 16px">
    {{ uploading ? 'Uploading' : 'Start Upload' }}
</button>
<!-- <button nz-button nzType="primary" (click)="showModal()">
    <i class="anticon anticon-plus-circle-o"></i><span> Create </span>
</button>
<nz-modal [(nzVisible)]="isVisible" nzTitle="Modal Title" (nzOnCancel)="handleCancel()" (nzOnOk)="handleOk()"
    [nzOkLoading]="isOkLoading">
    <p>
        <input nz-input placeholder="??��?��?key" [(ngModel)]="value1">
    </p>
    <p>
        <input nz-input placeholder="??��?��?value" [(ngModel)]="value2">
    </p>
</nz-modal> -->

<!-- <nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">
    <nz-tab *ngFor="let tab of tabs" [nzTitle]="tab">
        Content of Tab Pane {{ tab }}
    </nz-tab>
</nz-tabset> -->

<nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">
        <nz-tab *ngFor="let tab of tabs" [nzTitle]="tab" (nzClick)="handleTabChange(tab)">
                <div class="list">
                        <nz-table #nzTable [nzData]="tableData" 
                            nzShowSizeChanger
                            [nzFrontPagination]="true" 
                            [nzShowQuickJumper]="true" 
                            [nzPageSizeOptions]="[5,10,15,20]" 
                            [nzTotal]= 'total'
                            [(nzPageSize)]="pageSize" 
                            [(nzPageIndex)]='pageIndex'
                            [nzLoading]="loading"
                            nzSize="middle"
                            (nzPageIndexChange)="searchData()"
                            (nzPageSizeChange)="searchData(true)">
                            <thead (nzSortChange)="sort($event)" nzSingleSort>
                                <tr>
                                <th nzWidth="5%">NO</th>
                                <th nzWidth="20%" nzShowSort nzSortKey="name"> Name </th>
                                <th nzWidth="20%">Type</th>
                                <th nzWidth="20%">Version</th>
                                <th nzWidth="15%">Onboarding State</th>
                                <th nzWidth="20%">Operational State</th>
                                </tr>
                            </thead>
                            <tbody>
                                <!-- <ng-template ngFor let-data [ngForOf]="nzTable.data" let-i="index"> -->
                                <tr *ngFor="let item of nzTable.data; let i = index; ">
                                    <!-- <td>{{i+1}}</td> -->
                                    <td>{{item.id}}</td>
                                    <td>{{item.name}}</td>
                                    <td>{{item.type}}</td>
                                    <td>{{item.version}}</td>
                                    <td>
                                        <span [ngClass]="{'onboarding':item.status=='Onboarding','onboarded':item.status=='Onboarded',
                                            'updating':item.status=='Updating','deleting':item.status=='Deleting','invalid':item.status=='Invalid'}">{{item.status}}</span>
                                        <nz-progress *ngIf="item.status!='Onboarded' && item.status!='Invalid'" [nzPercent]="item.progress"></nz-progress>
                                    </td>
                                    <td>
                                        <!-- <i class="anticon anticon-cloud-upload-o" (click)="updataService()"></i> -->
                                        <i class="anticon anticon-upload upicon" #upload_icon (click)="updataService(item.id)" *ngIf="item.uuid"></i>
                                        <i class="anticon anticon-download" (click)="downloadService(item.id)"></i>
                                        <i class="anticon anticon-delete" (click)="deleteService(i,item.id)" id="{{ item.id }}"></i>
                                    </td>
                                </tr>
                                <!-- </ng-template> -->
                            </tbody>
                        </nz-table>
                    </div>
        </nz-tab>
    </nz-tabset>