2021-03-01 15:45:30 +01:00
|
|
|
<ion-toolbar class="bg-blue pb-10">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="mobile d-flex div-top-header justify-space-between">
|
2021-04-08 17:25:47 +01:00
|
|
|
<div class="div-search">
|
|
|
|
|
<button class="btn-no-color" (click)="openSearch()">
|
|
|
|
|
<ion-icon class="font-45" src='assets/images/icons-search.svg'></ion-icon>
|
|
|
|
|
</button>
|
2021-03-01 15:45:30 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="div-logo height-fit-content">
|
|
|
|
|
<img src='assets/images/logo-no-bg.png' alt='logo'>
|
|
|
|
|
</div>
|
2021-04-08 17:25:47 +01:00
|
|
|
<div class="div-profile">
|
|
|
|
|
<button class="btn-no-color" (click)="openProfile()">
|
|
|
|
|
<ion-icon class="font-45" *ngIf="profile == 'mdgpr' " src='assets/images/icons-profile.svg'></ion-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<button class="btn-no-color" (click)="openProfile()">
|
|
|
|
|
<ion-icon class="font-45" *ngIf="profile == 'pr' " src='assets/images/icons-profile-pr-header.svg'></ion-icon>
|
|
|
|
|
</button>
|
2021-03-01 15:45:30 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="desktop mx-20">
|
2021-03-01 15:45:30 +01:00
|
|
|
<div class="d-flex justify-space-between align-center">
|
|
|
|
|
<div tab="events" class="div-logo height-fit-content">
|
|
|
|
|
<img src='assets/images/logo-no-bg.png' alt='logo'>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="d-flex flex-1 pr-20 pl-50">
|
|
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="tab mr-20 d-flex align-center" (click)="changeRoute('/home/events')" [class.active]="locationPathname() == '/home/events'">
|
2021-03-01 15:45:30 +01:00
|
|
|
<ion-icon class="font-40" src='assets/images/icons-nav-home-active.svg'></ion-icon>
|
|
|
|
|
<span>Ínicio</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="tab mr-20 d-flex align-center" (click)="changeRoute('/home/agenda')" [class.active]="locationPathname() == '/home/agenda'">
|
2021-03-01 15:45:30 +01:00
|
|
|
<ion-icon class="font-40" src='assets/images/icons-nav-agenda-inactive.svg'></ion-icon>
|
|
|
|
|
<span>Agenda</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="tab mr-20 d-flex align-center" (click)="changeRoute('/home/gabinete-digital')" [class.active]="locationPathname() == '/home/gabinete-digital'">
|
2021-03-01 15:45:30 +01:00
|
|
|
<ion-icon class="font-40" src='assets/images/icons-nav-home-dk.svg'></ion-icon>
|
|
|
|
|
<span>Gabinete</span>
|
2020-12-29 10:17:34 +01:00
|
|
|
</div>
|
2021-03-01 15:45:30 +01:00
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="tab mr-20 d-flex align-center" (click)="changeRoute('/home/publications')" [class.active]="locationPathname() == '/home/publications'">
|
2021-03-01 15:45:30 +01:00
|
|
|
<ion-icon class="font-40" src='assets/images/icons-nav-a-es-inactive.svg'></ion-icon>
|
2021-04-01 15:35:05 +01:00
|
|
|
<span>Acções</span>
|
2020-12-29 10:17:34 +01:00
|
|
|
</div>
|
2021-03-01 15:45:30 +01:00
|
|
|
|
|
|
|
|
|
2021-03-02 14:46:38 +01:00
|
|
|
<div class="tab mr-20 d-flex align-center" (click)="changeRoute('/home/chat')" [class.active]="locationPathname() == '/home/chat'">
|
|
|
|
|
<ion-icon class="font-40" src='assets/images/icons-nav-grupos-inactive-dk-white.svg'></ion-icon>
|
2021-03-01 15:45:30 +01:00
|
|
|
<span>Chat</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="d-flex">
|
2021-03-05 14:54:10 +01:00
|
|
|
<div class="mr-10 d-flex align-center">
|
2021-04-08 19:25:59 +01:00
|
|
|
<button (click)="openSearch()" *ngIf="!showSearch" class="btn-no-color" (click)="showSearch=true">
|
|
|
|
|
<ion-icon class="font-45" src='assets/images/icons-search.svg'></ion-icon>
|
2021-04-08 17:25:47 +01:00
|
|
|
</button>
|
|
|
|
|
<button class="btn-no-color" (click)="closeSearch()" *ngIf="showSearch" (click)="showSearch=false">
|
|
|
|
|
<ion-icon class="font-40" name="restaurant-outline" src="assets/images/icons-search-close.svg"></ion-icon>
|
|
|
|
|
</button>
|
|
|
|
|
|
2021-03-05 14:54:10 +01:00
|
|
|
<ion-form *ngIf="showSearch">
|
|
|
|
|
<div class="d-flex search-input-container ml-10 justify-between" *ngIf="showSearch" >
|
|
|
|
|
<div class="icon" (click)="basicSearch()">
|
|
|
|
|
<ion-icon class="icon-z" slot="end" name="search"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input-text d-flex ion-align-items-center">
|
|
|
|
|
<ion-input [(ngModel)]='searchSubject' (ngModelChange)="dynamicSearch($event)" class="search-input text-black" type="search" placeholder="Pesquisar"></ion-input>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="icon" (click)="clearSearchInput()">
|
|
|
|
|
<ion-icon name="restaurant-outline" src="assets/images/icons-search-close.svg"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-form>
|
2021-03-01 15:45:30 +01:00
|
|
|
</div>
|
2021-03-02 19:00:55 +01:00
|
|
|
|
|
|
|
|
<div class="div-profile justify-end d-flex" (click)="openProfile()">
|
2021-03-02 14:46:38 +01:00
|
|
|
<ion-icon class="font-45" *ngIf="profile == 'mdgpr' " src='assets/images/icons-profile.svg'></ion-icon>
|
|
|
|
|
<ion-icon class="font-45" *ngIf="profile == 'pr' " src='assets/images/icons-profile-pr-header.svg'></ion-icon>
|
2020-12-29 10:17:34 +01:00
|
|
|
</div>
|
2021-03-01 15:45:30 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2020-12-29 10:17:34 +01:00
|
|
|
|
2020-12-10 11:22:06 +01:00
|
|
|
</ion-toolbar>
|
2020-12-29 10:17:34 +01:00
|
|
|
|