mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* add stylelint * fix style first part * fix style second part * fix style third part * fix style fourth part * Fix e2e tests first part * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * fix insights * fix style abotu component * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * [ADF-3746] Rebase branch * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * Fix list error * fix new style added * tslint fix * [ADF-3746] Fix scss errors on Process Filters Cloud component
33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
<mat-form-field class="adf-search-text-container">
|
|
<input
|
|
matInput
|
|
placeholder="{{ searchPlaceholder }}"
|
|
type="text"
|
|
id="userSearchText"
|
|
[value]=""
|
|
[formControl]="searchUser"
|
|
data-automation-id="adf-people-search-input">
|
|
</mat-form-field>
|
|
<ng-container *ngIf="users$ | async; let users">
|
|
<div class="adf-search-list-container" id="search-people-list" *ngIf="users.length > 0">
|
|
<adf-people-list [users]="users" (clickRow)="onRowClick($event)">
|
|
<data-columns>
|
|
<data-column key="firstName">
|
|
<ng-template let-entry="$implicit">
|
|
<div *ngIf="!entry.row.obj.pictureId" class="adf-people-pic">
|
|
{{getInitialUserName(entry.row.obj.firstName, entry.row.obj.lastName)}}</div>
|
|
<div>
|
|
<img *ngIf="entry.row.obj.pictureId" class="adf-people-img"
|
|
[src]="peopleProcessService.getUserImage(entry.row.obj)"/>
|
|
</div>
|
|
</ng-template>
|
|
</data-column>
|
|
<data-column key="email" class="adf-full-width">
|
|
<ng-template let-entry="$implicit">
|
|
<div class="adf-people-full-name">{{ getDisplayUser(entry.row.obj.firstName, entry.row.obj.lastName, ' ') }}</div>
|
|
</ng-template>
|
|
</data-column>
|
|
</data-columns>
|
|
</adf-people-list>
|
|
</div>
|
|
</ng-container> |