120 lines
5.7 KiB
HTML
120 lines
5.7 KiB
HTML
<div page-content class="admin-pages">
|
|
<div header>
|
|
<admin-tabs tab="portal"></admin-tabs>
|
|
<div *ngIf="!errorMessage && !showLoading" class="uk-grid" uk-grid>
|
|
<div class="uk-width-1-1">
|
|
<ul class="uk-subnav uk-subnav-pill">
|
|
<li [class.uk-active]="filterForm.get('type').value === 'all'" class="uk-margin-small-bottom"><a
|
|
(click)="filterForm.get('type').setValue('all')"><span
|
|
class="title">All portals</span></a></li>
|
|
<li *ngFor="let type of portalUtils.portalTypes; let i=index"
|
|
[class.uk-active]="filterForm.get('type').value === type.value" class="uk-margin-small-bottom"><a
|
|
(click)="filterForm.get('type').setValue(type.value)"><span
|
|
class="title">{{type.label}}</span></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="uk-width-1-1 uk-flex uk-flex-right@m uk-flex-center uk-flex-wrap uk-flex-middle uk-grid" uk-grid>
|
|
<div #searchInputComponent search-input [control]="filterForm.controls.keyword" [showSearch]="false" placeholder="Search portal"
|
|
[selected]="selectedKeyword" (closeEmitter)="onSearchClose()" (resetEmitter)="reset()"
|
|
[bordered]="true" colorClass="uk-text-secondary" class="uk-width-1-3@xl uk-width-2-5@l uk-width-1-2@m uk-width-1-1"></div>
|
|
<div class="show-options">
|
|
<button class="uk-button uk-button-secondary">Bulk Actions</button>
|
|
<div uk-dropdown="mode: click">
|
|
<ul class="uk-nav uk-dropdown-nav"
|
|
[attr.uk-tooltip]="getSelectedPortals().length == 0 ? 'pos:left; cls: uk-active' : 'cls: uk-invisible'"
|
|
title="Select at least one portal">
|
|
<li><a [class]="getSelectedPortals().length == 0 ? 'uk-disabled' : ''"
|
|
(click)="confirmDeleteSelectedPortals()"><i></i> Delete </a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<a (click)="newPortal()"
|
|
class="uk-flex uk-flex-middle uk-text-uppercase">
|
|
<button class="large uk-icon-button uk-button-secondary">
|
|
<icon name="add"></icon>
|
|
</button>
|
|
<button class="uk-button uk-button-link uk-margin-small-left uk-text-secondary">Add portal</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div inner>
|
|
<loading *ngIf="showLoading" class="uk-margin-large-top"></loading>
|
|
<div *ngIf="!showLoading">
|
|
<div *ngIf="updateErrorMessage" class="uk-alert-danger" uk-alert>
|
|
<a class="uk-alert-close" uk-close></a>
|
|
{{updateErrorMessage}}
|
|
</div>
|
|
<div *ngIf="errorMessage" class="uk-alert uk-alert-danger uk-margin-large-top"
|
|
role="alert">{{errorMessage}}</div>
|
|
<div class=" uk-margin-medium-bottom" *ngIf="!errorMessage">
|
|
<div class="uk-overflow-container">
|
|
<table class="uk-table uk-table-striped uk-table-hover">
|
|
<thead class="uk-card-header">
|
|
<tr>
|
|
<th><input id="allCommunityCheckbox" type="checkbox" (change)="toggleCheckBoxes($event)"></th>
|
|
<th>Name</th>
|
|
<th>Type</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let check of checkboxes; let i=index">
|
|
<td><input id="{{check.portal._id}}" class="checkBox" type="checkbox"
|
|
name="communitiescb[]" value="{{check.portal._id}}" [(ngModel)]="check.checked">
|
|
</td>
|
|
<td>
|
|
<div class="name" href="#">{{check.portal.name}}</div>
|
|
</td>
|
|
<td>
|
|
<div class="type" href="#">{{check.portal.type}}</div>
|
|
</td>
|
|
<td>
|
|
<div class="actions" href="#">
|
|
<i class="clickable" uk-icon="pencil" (click)="editPortal(i)"></i>
|
|
<i class="clickable uk-text-danger" uk-icon="trash"
|
|
(click)="confirmDeletePortal(check.portal._id)"></i>
|
|
</div>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
<div *ngIf="checkboxes.length==0" class="col-md-12">
|
|
<div class="uk-alert-warning" uk-alert>No portals found</div>
|
|
</div>
|
|
<!--<div class="uk-width-1-1 uk-flex uk-flex-center ">
|
|
<div class="uk-width-small uk-button-default uk-button" (click)="newCommunity()">
|
|
<i class="" uk-icon="plus"></i>
|
|
</div>
|
|
</div>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<modal-alert #editModal (alertOutput)="portalSaveConfirmed($event)"
|
|
[okDisabled]="portalForm && (portalForm.invalid || !portalForm.dirty)">
|
|
<div *ngIf="modalErrorMessage" class="uk-alert-danger" uk-alert aria-hidden="true">{{ modalErrorMessage }}</div>
|
|
<form *ngIf="portalForm" [formGroup]="portalForm" class="uk-grid uk-child-width-1-1" uk-grid>
|
|
<div dashboard-input [formInput]="portalForm.get('name')" type="text" label="Portal Name" placeholder="Write a name">
|
|
</div>
|
|
<div dashboard-input type="select" label="Portal Type" placeholder="Choose a type" [formInput]="portalForm.get('type')" [options]="portalUtils.portalTypes"></div>
|
|
<div dashboard-input [formInput]="portalForm.get('pid')"
|
|
type="text" placeholder="Write pid of portal"
|
|
label="Portal persistent id for portal">
|
|
</div>
|
|
<div dashboard-input [formInput]="portalForm.get('piwik')"
|
|
type="text" placeholder="Write piwik id of portal"
|
|
label="Piwik id">
|
|
</div>
|
|
<input type="hidden" formControlName="_id">
|
|
</form>
|
|
|
|
</modal-alert>
|
|
<modal-alert #deleteModal (alertOutput)="confirmedDeletePortals($event)"></modal-alert>
|