2021-03-04 18:50:26 +01:00
|
|
|
<ion-header class="ion-no-border">
|
|
|
|
|
<ion-toolbar class="header-toolbar">
|
|
|
|
|
<div class="main-header">
|
|
|
|
|
<div class="title-content">
|
2021-10-27 09:49:50 +01:00
|
|
|
<div class="back-icon cursor-pointer">
|
2021-04-09 09:40:32 +01:00
|
|
|
<button class="btn-no-color" (click)="close()">
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="end" src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
2021-10-27 14:42:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end" src='assets/images/theme/gov/icons-calendar-arrow-left.svg'></ion-icon>
|
2021-04-09 09:40:32 +01:00
|
|
|
</button>
|
2021-03-04 18:50:26 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="div-title">
|
|
|
|
|
<ion-label class="title">Contactos</ion-label>
|
|
|
|
|
</div>
|
2021-10-27 15:09:10 +01:00
|
|
|
<app-btn-seguinte (click)="groupMessages()" class="cursor-pointer"></app-btn-seguinte>
|
2021-03-04 18:50:26 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
<ion-toolbar class="toolbar-search">
|
|
|
|
|
<div class="search">
|
2021-08-19 09:10:48 +01:00
|
|
|
<ion-searchbar (ionChange)="onChange($event)" placeholder="Pesquisar por contacto" ></ion-searchbar>
|
2021-03-04 18:50:26 +01:00
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
|
|
|
|
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
|
|
|
|
<ion-refresher-content>
|
|
|
|
|
</ion-refresher-content>
|
|
|
|
|
</ion-refresher>
|
|
|
|
|
<div class="main-content">
|
2021-08-19 09:10:48 +01:00
|
|
|
|
2021-03-04 18:50:26 +01:00
|
|
|
<!-- <ion-list>
|
|
|
|
|
<ion-item *ngFor="let user of searchedItem">
|
|
|
|
|
{{user.name}}
|
|
|
|
|
</ion-item>
|
|
|
|
|
</ion-list> -->
|
|
|
|
|
|
|
|
|
|
<ion-virtual-scroll [items]="users" approxItemHeight="70px" [headerFn]="separateLetter">
|
2021-08-19 09:10:48 +01:00
|
|
|
|
2021-03-04 18:50:26 +01:00
|
|
|
<div class="item-divider" *virtualHeader="let header">
|
|
|
|
|
<ion-label>{{header}}</ion-label>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *virtualItem="let user" class="item-checkbox">
|
|
|
|
|
<ion-checkbox color="primary"></ion-checkbox>
|
|
|
|
|
<p>{{user.first}} {{user.last}}</p>
|
|
|
|
|
<ion-icon name="ellipse"></ion-icon>
|
|
|
|
|
</div>
|
2021-08-19 09:10:48 +01:00
|
|
|
|
2021-03-04 18:50:26 +01:00
|
|
|
</ion-virtual-scroll>
|
2021-08-19 09:10:48 +01:00
|
|
|
|
|
|
|
|
</div>
|
2021-03-04 18:50:26 +01:00
|
|
|
</ion-content>
|
|
|
|
|
|
|
|
|
|
|