2021-01-11 10:21:42 +01:00
|
|
|
<div page-content>
|
|
|
|
<admin-tabs tab = "portal" header></admin-tabs>
|
|
|
|
<div inner class="admin-pages">
|
|
|
|
<div *ngIf="!errorMessage && !showLoading" class="filters" uk-sticky="offset:150">
|
|
|
|
<div class="show-options uk-float-right">
|
|
|
|
<button class="uk-button uk-button-primary " type="button">Bulk Actions</button>
|
|
|
|
<div uk-dropdown="mode: click">
|
|
|
|
<ul class="uk-nav uk-margin-left"
|
|
|
|
[attr.uk-tooltip]="getSelectedCommunities().length == 0 ? 'pos:left; cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
title="Select at least one portal">
|
|
|
|
<li><a [class]="getSelectedCommunities().length == 0 ? 'uk-disabled' : ''"
|
|
|
|
(click)="confirmDeleteSelectedCommunities()"><i></i> Delete </a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="uk-inline uk-width-medium uk-float-right uk-margin-right" >
|
2019-12-18 16:14:21 +01:00
|
|
|
<span class="uk-position-center-right"><i class="material-icons">search</i></span>
|
2021-01-11 10:21:42 +01:00
|
|
|
<div dashboard-input [formInput]="filterForm.controls.keyword"
|
|
|
|
placeholder="Search"></div>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
<ul class="uk-subnav uk-subnav-pill subCategoriesTabs ignore admin " >
|
|
|
|
<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>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
|
|
|
|
2021-01-11 10:21:42 +01:00
|
|
|
<div class="uk-margin-top">
|
|
|
|
<a *ngIf="!showLoading && !errorMessage" (click)="newCommunity()"
|
|
|
|
class="uk-flex uk-flex-right uk-flex-middle uk-margin-small-bottom">
|
|
|
|
<div class="uk-button-default large uk-icon-button uk-margin-small-right" uk-icon="plus">
|
|
|
|
</div>
|
|
|
|
Add portal
|
|
|
|
</a>
|
2019-12-18 16:14:21 +01:00
|
|
|
<div *ngIf="updateErrorMessage" class="uk-alert-danger" uk-alert>
|
|
|
|
<a class="uk-alert-close" uk-close></a>
|
|
|
|
{{updateErrorMessage}}
|
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
<div *ngIf="errorMessage" class="uk-alert uk-alert-danger uk-margin-large-top"
|
|
|
|
role="alert">{{errorMessage}}</div>
|
|
|
|
<div [style.display]="showLoading ? 'inline' : 'none'"
|
|
|
|
class="uk-animation-fade uk-margin-large-top uk-width-1-1" role="alert"><img
|
|
|
|
class="uk-align-center loading-gif"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class=" uk-margin-medium-bottom" *ngIf="!errorMessage && !showLoading">
|
|
|
|
|
|
|
|
<div class="">
|
|
|
|
<div class="uk-overflow-container">
|
|
|
|
<table class="uk-table uk-table-striped uk-table-hover">
|
|
|
|
<thead class="form-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.community._id}}" class="checkBox" type="checkbox"
|
|
|
|
name="communitiescb[]" value="{{check.community._id}}" [(ngModel)]="check.checked">
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="name" href="#">{{check.community.name}}</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="type" href="#">{{check.community.type}}</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="actions" href="#">
|
|
|
|
<i class="clickable" uk-icon="pencil" (click)="editCommunity(i)"></i>
|
|
|
|
<i class="clickable uk-text-danger" uk-icon="trash"
|
|
|
|
(click)="confirmDeleteCommunity(check.community._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>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
<!--<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>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
</div>-->
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
</div>
|
|
|
|
|
2019-12-18 16:14:21 +01:00
|
|
|
<modal-alert #AlertModalSaveCommunity (alertOutput)="communitySaveConfirmed($event)"
|
|
|
|
[okDisabled]="portalFG && (portalFG.invalid || !portalFG.dirty)">
|
|
|
|
|
|
|
|
<div *ngIf="modalErrorMessage" class="uk-alert-danger" uk-alert aria-hidden="true">{{ modalErrorMessage }}</div>
|
|
|
|
<form [formGroup]="portalFG">
|
|
|
|
<div dashboard-input class="uk-margin-small-left" [formInput]="portalFG.controls.name"
|
|
|
|
type="text"
|
2020-09-24 13:18:24 +02:00
|
|
|
label="Portal Name">
|
|
|
|
</div>
|
|
|
|
<div [ngClass]="{'has-error':!portalFG.controls.type.valid && portalFG.controls.type.dirty}">
|
|
|
|
<label for="portalTypeTag">*Portal Type</label>
|
|
|
|
<select formControlName="type" id="portalTypeTag" class="form-control uk-select">
|
2020-10-30 15:01:44 +01:00
|
|
|
<option *ngFor="let option of portalUtils.portalTypes" [value]="option.value">{{option.label}}</option>
|
2020-09-24 13:18:24 +02:00
|
|
|
</select>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
|
|
|
<div dashboard-input class="uk-margin-small-left " [formInput]="portalFG.controls.pid"
|
|
|
|
type="text"
|
2020-09-24 13:18:24 +02:00
|
|
|
label="Portal persistent id for portal">
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2020-10-30 15:01:44 +01:00
|
|
|
<div dashboard-input class="uk-margin-small-left" [formInput]="portalFG.controls.piwik"
|
|
|
|
type="text"
|
|
|
|
label="Piwik id">
|
|
|
|
</div>
|
2019-12-18 16:14:21 +01:00
|
|
|
<input type="hidden" formControlName="_id">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</modal-alert>
|
|
|
|
<modal-alert #AlertModalDeleteCommunities (alertOutput)="confirmedDeleteCommunities($event)"></modal-alert>
|