aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/alarm/alarm.component.html
blob: b1f49949aba4e33d7d5fbfd96fb7024a2ac5070a (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
110
111
112
113
114
115
116
117
<!--
    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"> <span (click)="detailHide()" style="cursor:pointer;">Alarm</span> <span *ngIf="detailshow">>
    Details</span> </h3>
<hr>
<div class="select" [@showHideAnimate]="state">
<div class="query_criteria">
    <span>Source Name: </span>
    <nz-dropdown [nzTrigger]="'click'" [nzPlacement]="'bottomLeft'">
        <button nz-button nz-dropdown><span>{{sourceNameSelected}}</span> <i class="anticon anticon-down"></i></button>
        <ul nz-menu>
            <li nz-menu-item (click)="choseSourceName(item)" *ngFor="let item of sourceNameList">
                <a>{{item}}</a>
            </li>
        </ul>
    </nz-dropdown>
    &nbsp;&nbsp;
    <span>Priority: </span>
    <nz-dropdown [nzTrigger]="'click'" [nzPlacement]="'bottomLeft'">
        <button nz-button nz-dropdown><span>{{prioritySelected}}</span> <i class="anticon anticon-down"></i></button>
        <ul nz-menu>
            <li nz-menu-item (click)="chosePriority(item)" *ngFor="let item of priorityList">
                <a>{{item}}</a>
            </li>
        </ul>
    </nz-dropdown>
    &nbsp;&nbsp;
    <span>Status: </span>
    <nz-dropdown [nzTrigger]="'click'" [nzPlacement]="'bottomLeft'">
        <button nz-button nz-dropdown><span>{{statusSelected}}</span> <i class="anticon anticon-down"></i></button>
        <ul nz-menu>
            <li nz-menu-item (click)="choseStatus(item)" *ngFor="let item of statusList">
                <a>{{item}}</a>
            </li>
        </ul>
    </nz-dropdown>
    <br> <br>
    <span>Report Time: </span>
    <nz-range-picker [(ngModel)]="dateRange" (ngModelChange)="onChange($event)" nzShowTime></nz-range-picker>

    <button class="search" nz-button [nzType]="'primary'" (click)="getAlarmFormData()"><i class="anticon anticon-search"></i><span>Search</span></button>
</div>
</div>
<div class="content" [@showHideAnimate]="state">
<div class="title">
    <ul>
        <li>
            <h5>All</h5>
            <p>{{alarmList.all }}</p>
        </li>
        <li>
            <h5>Closed</h5>
            <p>{{alarmList.closed }}</p>
        </li>
        <li>
            <h5>Active</h5>
            <p>{{alarmList.activeNum }}</p>
        </li>
    </ul>
</div>
<div class="chart">
    <h3>Alarm Chart</h3>
    <nz-radio-group [(ngModel)]="size">
        <label nz-radio-button nzValue="day" (click)="day()"> day </label>
        <label nz-radio-button nzValue="month" (click)="month()">month</label>
    </nz-radio-group>
    <div class="AlarmChart" [ngClass]="{'alarmChart-active':alarmShow}">
        <app-line [initData]="alarmChartInit" [chartData]="alarmChartData"></app-line>
    </div>
    <button class="open-close" [ngClass]="{'open-close-active':alarmShow}" (click)="alarmShow=!alarmShow"></button>
</div>
<div class="tablelist">
    <nz-table #nzTable [nzData]="list" [(nzPageSize)]="pageSize" nzShowSizeChanger nzShowQuickJumper [nzPageSizeOptions]="[5,10,15,20]"
        nzSize="middle">
        <thead (nzSortChange)="sort($event)" nzSingleSort>
            <tr>
                <th nzWidth="5%">NO</th>
                <th nzWidth="20%">Source Name</th>
                <th nzWidth="10%">Priority</th>
                <th nzWidth="20%">SpecificProblem</th>
                <th nzWidth="20%">Report Time</th>
                <th nzWidth="20%">Report Time</th>
                <th nzWidth="15%">Status</th>
                <th nzWidth="10%">Action</th>
            </tr>
        </thead>
        <tbody>
            <tr *ngFor="let item of nzTable.data; let i = index;">
                <td>{{i+1}}</td>
                <td>{{item.sourceName}}</td>
                <td>{{item.priority}}</td>
                <td>{{item.specificProblem}}</td>
                <td>{{item.startEpochMicrosec}}</td>
                <td>{{item.startEpochMicrosecCleared}}</td>
                <td>{{item.status}}</td>
                <td class="action"><a (click)="detailShow(item)"><i class="details"></i></a></td>
            </tr>
        </tbody>
    </nz-table>
</div>
</div>
<div [@showHideAnimate]="state2">
<app-details [detailId]="detailId"></app-details>
</div>