132 lines
7.1 KiB
HTML
132 lines
7.1 KiB
HTML
<div page-content>
|
|
<div header>
|
|
<ng-content></ng-content>
|
|
<div class="uk-grid uk-flex uk-flex-middle" uk-grid>
|
|
<div class="uk-width-expand@m uk-width-1-1 uk-flex uk-flex-left@m uk-flex-center">
|
|
<ul class="uk-subnav uk-subnav-pill">
|
|
<li [class.uk-active]="showCurrent" (click)="showCurrent = true">
|
|
<a class="uk-text-capitalize">{{role}}s</a>
|
|
</li>
|
|
<li [class.uk-active]="!showCurrent" (click)="showCurrent = false">
|
|
<a>Pending {{role}}s</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div [class.uk-invisible]="loadActive || loadPending"
|
|
class="uk-width-auto@m uk-width-1-1 uk-child-width-auto@m uk-child-width-1-1 uk-grid uk-flex-right@m uk-flex-center" uk-grid>
|
|
<div *ngIf="showCurrent" search-input [control]="filterForm.get('active')" [showSearch]="false" [placeholder]="'Search ' + role + 's'"
|
|
[bordered]="true" colorClass="uk-text-secondary">
|
|
</div>
|
|
<div *ngIf="!showCurrent" search-input [control]="filterForm.get('active')" [showSearch]="false" [placeholder]="'Search invitations'"
|
|
[bordered]="true" colorClass="uk-text-secondary">
|
|
</div>
|
|
<a *ngIf="exists" class="uk-text-uppercase uk-flex uk-flex-middle uk-flex-center" [attr.uk-tooltip]="inviteDisableMessage">
|
|
<button class="uk-icon-button large uk-button-secondary" [disabled]="loadPending || !!inviteDisableMessage" (click)="openInviteModal()">
|
|
<icon name="person_add"></icon>
|
|
</button>
|
|
<button class="uk-button uk-button-link uk-margin-small-left" [class.uk-text-secondary]="!loadPending && !inviteDisableMessage"
|
|
[disabled]="loadPending || !!inviteDisableMessage" (click)="openInviteModal()">
|
|
Invite {{role}}
|
|
</button>
|
|
</a>
|
|
<a *ngIf="!exists && isPortalAdmin" class="uk-text-uppercase uk-flex uk-flex-middle uk-flex-center">
|
|
<button class="uk-icon-button large uk-button-secondary" (click)="openCreateRoleModal()">
|
|
<icon name="person_add"></icon>
|
|
</button>
|
|
<button class="uk-button uk-button-link uk-margin-small-left uk-text-secondary" (click)="openCreateRoleModal()">Create Group</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div inner>
|
|
<div *ngIf="loadActive || loadPending" class="uk-position-center">
|
|
<loading></loading>
|
|
</div>
|
|
<div *ngIf="!loadActive && !loadPending">
|
|
<div *ngIf="(showCurrent && showActive.length == 0) || (!showCurrent && showPending.length == 0)"
|
|
class="uk-card uk-card-default uk-padding-large uk-text-center uk-margin-bottom uk-text-bold">
|
|
<div *ngIf="showCurrent">No {{role}}s found</div>
|
|
<div *ngIf="!showCurrent">No pending {{role}} invitations found</div>
|
|
</div>
|
|
<div *ngIf="(showCurrent && showActive.length > 0) || (!showCurrent && showPending.length > 0)">
|
|
<no-load-paging *ngIf="showCurrent" [type]="(showActive.length > 1)?(role + 's'):role"
|
|
(pageChange)="updateActivePage($event)"
|
|
[page]="activePage" [pageSize]="pageSize"
|
|
[totalResults]="showActive.length">
|
|
</no-load-paging>
|
|
<no-load-paging *ngIf="!showCurrent" [type]="role + ' ' + (showPending.length > 1?'invitations':'invitation')"
|
|
(pageChange)="updatePendingPage($event)"
|
|
[page]="pendingPage" [pageSize]="pageSize"
|
|
[totalResults]="showPending.length">
|
|
</no-load-paging>
|
|
<div class="uk-card uk-card-default uk-card-body uk-text-small uk-margin-bottom"
|
|
*ngFor="let item of (showCurrent)?(currentActivePage):(currentPendingPage)">
|
|
<div class="uk-grid uk-grid-divider uk-flex-middle" uk-grid>
|
|
<div class="uk-width-expand@m uk-width-1-1">
|
|
<div class="uk-padding-small uk-padding-remove-horizontal">
|
|
<span class="uk-text-muted">Email: </span>
|
|
<span class="uk-text-bold">{{(showCurrent) ? item.email : item}}</span>
|
|
</div>
|
|
</div>
|
|
<div *ngIf="isCurator || !showCurrent" class="uk-width-auto@m uk-width-1-1">
|
|
<div class="uk-width-1-1 uk-flex uk-flex-center">
|
|
<div class="uk-padding-small uk-padding-remove-horizontal">
|
|
<button (click)="openDeleteModal(item)" class="uk-button action uk-flex uk-flex-middle" [disabled]="role === 'member' && item.isManager"
|
|
[attr.uk-tooltip]="(role === 'member' && item.isManager)?'This user is a manager and cannot be removed.':null">
|
|
<icon name="remove_circle_outline" [flex]="true"></icon>
|
|
<span class="uk-margin-small-left">{{showCurrent ? ('Remove ' + role) : 'Cancel invitation'}}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<no-load-paging *ngIf="showCurrent" [type]="(showActive.length > 1)?(role + 's'):role"
|
|
(pageChange)="updateActivePage($event)"
|
|
[page]="activePage" [pageSize]="pageSize"
|
|
[totalResults]="showActive.length">
|
|
</no-load-paging>
|
|
<no-load-paging *ngIf="!showCurrent" [type]="role + ' ' + (showPending.length > 1?'invitations':'invitation')"
|
|
(pageChange)="updatePendingPage($event)"
|
|
[page]="pendingPage" [pageSize]="pageSize"
|
|
[totalResults]="showPending.length">
|
|
</no-load-paging>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<modal-alert #inviteModal (alertOutput)="invite()" [okDisabled]="invited && invited.invalid">
|
|
<div class="uk-padding uk-padding-remove-horizontal">
|
|
<div *ngIf="message" class="uk-margin-medium-bottom uk-text-small">
|
|
<div [innerHTML]="message | safeHtml"></div>
|
|
</div>
|
|
<div *ngIf="invited" class="uk-text-center">
|
|
<div dashboard-input [formInput]="invited"
|
|
placeholder="Write an email..."></div>
|
|
</div>
|
|
</div>
|
|
</modal-alert>
|
|
<modal-alert #deleteModal (alertOutput)="deleteActive()">
|
|
<div *ngIf="selectedUser" class="uk-padding-small uk-padding-remove-horizontal">
|
|
Are you sure you want to remove <span class="uk-text-bold">{{selectedUser}}</span> from {{role}}s?
|
|
</div>
|
|
</modal-alert>
|
|
<modal-alert #deletePendingModal (alertOutput)="deletePending()">
|
|
<div *ngIf="selectedUser" class="uk-padding-small uk-padding-remove-horizontal">
|
|
Are you sure you want to cancel {{role}} invitation of <span class="uk-text-bold">{{selectedUser}}</span>?
|
|
</div>
|
|
</modal-alert>
|
|
<modal-alert #createRoleModal (alertOutput)="createGroup()" [okDisabled]="roleFb && roleFb.invalid">
|
|
<div *ngIf="roleFb" class="uk-padding uk-padding-remove-horizontal">
|
|
<div class="uk-grid" uk-grid [formGroup]="roleFb">
|
|
<div dashboard-input [formInput]="roleFb.get('name')"
|
|
label="Name"
|
|
placeholder="Write a name..." class="uk-width-1-1"></div>
|
|
<div dashboard-input [formInput]="roleFb.get('description')"
|
|
label="Description"
|
|
type="textarea"
|
|
placeholder="Write a description..." class="uk-width-1-1"></div>
|
|
</div>
|
|
</div>
|
|
</modal-alert>
|