summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/header/header.component.html
blob: 45b4e9f9c89041acfca9b987391f03c563443ccc (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
<!--
  ============LICENSE_START==========================================
  ONAP Portal
  ===================================================================
  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
  ===================================================================
 
  Unless otherwise specified, all software contained herein is licensed
  under the Apache License, Version 2.0 (the "License");
  you may not use this software 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.
 
  Unless otherwise specified, all documentation contained herein is licensed
  under the Creative Commons License, Attribution 4.0 Intl. (the "License");
  you may not use this documentation except in compliance with the License.
  You may obtain a copy of the License at
 
              https://creativecommons.org/licenses/by/4.0/
 
  Unless required by applicable law or agreed to in writing, documentation
  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.
 
  ============LICENSE_END============================================
 
  
  -->

<div style="bottom: tabBottom; display: flex; height: 100%; overflow: hidden">
    <nav class="navbar navbar-expand-lg fixed-top">
        <a class="navbar-brand" href=""> <img src="assets/images/global.logo" style="width:14%"/> &nbsp; ONAP Portal</a>
        <div class="header-menu-display">
            <app-header-menu></app-header-menu>
        </div>
        <button class="navbar-toggler" type="button" (click)="toggleSidebar()">
            <i class="icon ion-md-menu" style="color:white;"></i>
        </button>
        <div class="collapse navbar-collapse">
            <ul class="navbar-nav ml-auto">
                <app-global-search></app-global-search>
                <li class="nav-item dropdown" ngbDropdown>
                    <a href="javascript:void(0)" class="nav-link" ngbDropdownToggle>
                        <i class="icon ion-md-bulb"></i> <b class="caret"></b><span class="sr-only"></span>
                    </a>
                    <div class="custom-dropdown-item" ngbDropdownMenu>

                <li class="dropdown-divider"></li>
        </div>
        </li>
        <li class="nav-item dropdown" ngbDropdown>
            <a href="javascript:void(0)" class="nav-link" ngbDropdownToggle>
                <i class="icon ion-md-flag"></i> <b class="caret"></b><span class="sr-only"></span>
            </a>
            <div class="dropdown-menu-right" ngbDropdownMenu>
                <a style="margin-left: 8%;" id="application-role" [routerLink]="['/recentNotifications']"
                    href="javascript:void(0);">
                    {{ 'View All Recent Notifications' }} </a>
        <li class="dropdown-divider"></li>
</div>
</li>
<li class="nav-item dropdown" ngbDropdown>
    <a href="javascript:void(0)" class="nav-link" ngbDropdownToggle>
        <i class="icon ion-md-person"></i> {{firstName}} <b class="caret"></b>
    </a>
    <div class="dropdown-menu-right" ngbDropdownMenu>
<li class="dropdown-item" style="font-weight: lighter">
    {{firstName}}, {{lastName}}
</li>
<li class="dropdown-item">
    <span class="dropdown-item-name"> {{ 'Email'}}: </span>
    <div>
        <span class="dropdown-item-value">
            {{loginSnippetEmail}}
        </span>
    </div>
</li>
<li class="dropdown-item">
    <span class="dropdown-item-name"> {{ 'User Id' }}: </span>
    <div>
        <span class="dropdown-item-value">
            {{loginSnippetUserid}}
        </span>
    </div>
</li>
<li class="dropdown-item">
    <span class="dropdown-item-name"> {{ 'Last login' }}: </span>
    <div>
        <span class="dropdown-item-value">
            {{lastLogin | date:'medium'}}
        </span>
    </div>
</li>
<li class="custom-display-item">
    <a (click)="getUserApplicationRoles()" href="javascript:void(0);"><span><i class="icon ion-md-add-circle-outline"
                [ngClass]="{true: 'icon ion-md-add-circle-outline', false: 'icon ion-md-remove-circle-outline'}[ !displayUserAppRoles]"></i>
            {{ 'Applications and Roles' }} </span></a>
    <span class="onap-spinner" *ngIf="isLoading"></span>
</li> <br>
<div class="custom-display-item approles" [hidden]="!displayUserAppRoles">
    <div *ngFor="let ua of userapproles ; index as i">
        <div class="reg-userApp-value">
            <span class="dropdown-item-name">{{ua.App}}:</span>
        </div>
        <div *ngFor="let role of ua.Roles ; index as i" class="reg-userAppRoles-value">
            <span *ngIf="role.indexOf('global_')!=-1" id="required" style="color: Red;" visible="false">
                *</span> <span class="dropdown-item-value">{{role}}</span>
        </div>
        <br>
    </div>
</div>
<hr>
<div id="reg-logout-div" >
<button type="button" class="btn btn-primary"  (click)="allAppsLogout()">
    <i class="icon ion-md-log-out"></i> {{ 'Log Out' }} </button></div>
</div>
</li>
</ul>
</div>
</nav>
</div>