aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.html
blob: e32a0b60f59307e1948a8006723bb85f7b3ba486 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!--
    ~ Copyright © 2016-2018 European Support Limited
    ~
    ~ 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.
    -->
    
<div class="interface-operation">
    <loader [display]="isLoading" [size]="'large'" [relative]="true"></loader>

    <div
        class="top-add-btn add-btn"
        *ngIf="!isListEmpty()"
        [ngClass]="{'disabled': readonly}"
        data-tests-id="add-operation"
        (click)="onEditOperation()">
        {{ 'INTERFACE_ADD_OPERATION' | translate }}
    </div>

    <div class="operation-list">

        <div
            class="empty-list-container"
            *ngIf="isListEmpty() && !isLoading">
            <div
                class="empty-list-add-btn"
                data-tests-id="add-operation"
                [ngClass]="{'disabled': readonly}"
                (click)="onEditOperation()">
                <svg-icon
                    name="plus-circle"
                    mode="primary"
                    size="x_large"
                    [disabled]="readonly">
                </svg-icon>
                <div class="button-text">{{ 'INTERFACE_ADD_OPERATION' | translate }}</div>
            </div>
        </div>

        <div *ngIf="!isListEmpty()">

            <div class="expand-collapse">
                <a
                    class="link"
                    data-tests-id="expand-all"
                    [ngClass]="{'disabled': isAllExpanded()}"
                    (click)="collapseAll(false)">
                    {{ 'INTERFACE_EXPAND_ALL' | translate }}
                </a> |
                <a
                    class="link"
                    data-tests-id="collapse-all"
                    [ngClass]="{'disabled': isAllCollapsed()}"
                    (click)="collapseAll()">
                    {{ 'INTERFACE_COLLAPSE_ALL' | translate }}
                </a>
            </div>

            <div
                class="interface-row"
                *ngFor="let interface of interfaces"
                [attr.data-tests-id]="'interface-' + interface.displayType()">

                <div
                    class="interface-accordion"
                    [attr.data-tests-id]="'interface-' + interface.displayType() + '-toggle'"
                    (click)="interface.toggleCollapse()">
                    <span
                        class="chevron-container"
                        [ngClass]="{'isCollapsed': interface.isCollapsed}">
                        <svg-icon
                            name="caret1-down-o"
                            mode="primary"
                            size="small">
                        </svg-icon>
                    </span>
                    <span class="interface-name">{{interface.displayType()}}</span>
                </div>

                <div
                    class="generic-table"
                    *ngIf="!interface.isCollapsed">
                    <div class="header-row table-row">
                        <span
                            class="cell header-cell field-name header-name">
                            {{ 'INTERFACE_HEADER_NAME' | translate }}
                        </span>
                        <span
                            class="cell header-cell field-description header-description">
                            {{ 'INTERFACE_HEADER_DESCRIPTION' | translate }}
                        </span>
                        <span
                            class="cell header-cell field-actions header-actions">
                            ●●●
                        </span>
                    </div>

                    <div
                        class="data-row"
                        *ngFor="let operation of interface.operations"
                        [attr.data-tests-id]="'operation-' + operation.name"
                        (click)="onEditOperation(operation)">
                        <span
                            class="cell field-name"
                            [attr.data-tests-id]="'operation-' + operation.name + '-name'">
                            {{operation.name}}
                        </span>
                        <span
                            class="cell field-description"
                            [ngClass]="{'collapsed': operation.isCollapsed}"
                            [attr.data-tests-id]="'operation-' + operation.name + '-description'">
                            {{operation.getDescriptionEllipsis()}}
                            <span
                                class="more-or-less link"
                                (click)="operation.toggleCollapsed($event)"
                                [attr.data-tests-id]="'operation-' + operation.name + '-ellipsis'">
                                {{!operation.isEllipsis ? '' : operation.isCollapsed ? 'More' : 'Less'}}
                            </span>
                        </span>
                        <span class="cell field-actions">
                            <span
                                class="delete-action"
                                [attr.data-tests-id]="'remove-operation-' + operation.name"
                                (click)="onRemoveOperation($event, operation)">
                                <svg-icon
                                    *ngIf="!readonly"
                                    name="trash-o"
                                    mode="info"
                                    size="small"
                                    [clickable]="true">
                                </svg-icon>
                            </span>
                        </span>
                    </div>

                </div>
            </div>
        </div>

    </div>

</div>