mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

# Conflicts: # src/app/access-control/bulk-access/browse/bulk-access-browse.component.html # src/app/access-control/epeople-registry/epeople-registry.component.html # src/app/access-control/epeople-registry/eperson-form/eperson-form.component.html # src/app/access-control/group-registry/group-form/members-list/members-list.component.html # src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.html # src/app/process-page/overview/process-overview.component.html # src/app/shared/object-select/collection-select/collection-select.component.html # src/app/shared/object-select/collection-select/collection-select.component.ts # src/app/shared/object-select/item-select/item-select.component.html # src/app/shared/object-select/item-select/item-select.component.ts # src/app/shared/object-select/object-select/object-select.component.ts # src/app/shared/pagination/pagination.component.ts
95 lines
4.4 KiB
HTML
95 lines
4.4 KiB
HTML
<div class="container">
|
|
<div class="epeople-registry row">
|
|
<div class="col-12">
|
|
<div class="d-flex justify-content-between border-bottom mb-3">
|
|
<h1 id="header" class="pb-2">{{labelPrefix + 'head' | translate}}</h1>
|
|
|
|
<div>
|
|
<button class="mr-auto btn btn-success addEPerson-button"
|
|
[routerLink]="'create'">
|
|
<i class="fas fa-plus"></i>
|
|
<span class="d-none d-sm-inline ml-1">{{labelPrefix + 'button.add' | translate}}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 id="search" class="border-bottom pb-2">
|
|
{{labelPrefix + 'search.head' | translate}}
|
|
</h2>
|
|
<form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)" class="d-flex justify-content-between">
|
|
<div>
|
|
<select name="scope" id="scope" formControlName="scope" class="form-control" aria-label="Search scope">
|
|
<option value="metadata">{{labelPrefix + 'search.scope.metadata' | translate}}</option>
|
|
<option value="email">{{labelPrefix + 'search.scope.email' | translate}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="flex-grow-1 mr-3 ml-3">
|
|
<div class="form-group input-group">
|
|
<input type="text" name="query" id="query" formControlName="query"
|
|
class="form-control" [attr.aria-label]="labelPrefix + 'search.placeholder' | translate"
|
|
[placeholder]="(labelPrefix + 'search.placeholder' | translate)">
|
|
<span class="input-group-append">
|
|
<button type="submit" class="search-button btn btn-primary">
|
|
<i class="fas fa-search"></i> {{ labelPrefix + 'search.button' | translate }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button (click)="clearFormAndResetResult();"
|
|
class="search-button btn btn-secondary">{{labelPrefix + 'button.see-all' | translate}}</button>
|
|
</div>
|
|
</form>
|
|
|
|
<ds-themed-loading *ngIf="searching$ | async"></ds-themed-loading>
|
|
<ds-pagination
|
|
*ngIf="(pageInfoState$ | async)?.totalElements > 0 && (searching$ | async) !== true"
|
|
[paginationOptions]="config"
|
|
[collectionSize]="(pageInfoState$ | async)?.totalElements"
|
|
[hideGear]="true"
|
|
[hidePagerWhenSinglePage]="true">
|
|
|
|
<div class="table-responsive">
|
|
<table id="epeople" class="table table-striped table-hover table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{{labelPrefix + 'table.id' | translate}}</th>
|
|
<th scope="col">{{labelPrefix + 'table.name' | translate}}</th>
|
|
<th scope="col">{{labelPrefix + 'table.email' | translate}}</th>
|
|
<th>{{labelPrefix + 'table.edit' | translate}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let epersonDto of (ePeopleDto$ | async)?.page"
|
|
[ngClass]="{'table-primary' : isActive(epersonDto.eperson) | async}">
|
|
<td>{{epersonDto.eperson.id}}</td>
|
|
<td>{{ dsoNameService.getName(epersonDto.eperson) }}</td>
|
|
<td>{{epersonDto.eperson.email}}</td>
|
|
<td>
|
|
<div class="btn-group edit-field">
|
|
<button [routerLink]="getEditEPeoplePage(epersonDto.eperson.id)"
|
|
class="btn btn-outline-primary btn-sm access-control-editEPersonButton"
|
|
title="{{labelPrefix + 'table.edit.buttons.edit' | translate: { name: dsoNameService.getName(epersonDto.eperson) } }}">
|
|
<i class="fas fa-edit fa-fw"></i>
|
|
</button>
|
|
<button *ngIf="epersonDto.ableToDelete" (click)="deleteEPerson(epersonDto.eperson)"
|
|
class="delete-button btn btn-outline-danger btn-sm access-control-deleteEPersonButton"
|
|
title="{{labelPrefix + 'table.edit.buttons.remove' | translate: { name: dsoNameService.getName(epersonDto.eperson) } }}">
|
|
<i class="fas fa-trash-alt fa-fw"></i>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</ds-pagination>
|
|
|
|
<div *ngIf="(pageInfoState$ | async)?.totalElements === 0" class="alert alert-info w-100 mb-2" role="alert">
|
|
{{labelPrefix + 'no-items' | translate}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|