2022-04-07 20:28:45 +02:00
|
|
|
<div page-content (stickyEmitter)="stickyPageHeader = $event">
|
2021-01-11 19:33:24 +01:00
|
|
|
<div header>
|
2022-04-07 20:28:45 +02:00
|
|
|
<div class="uk-flex uk-flex-middle uk-margin-top info" [class.uk-active]="stickyPageHeader">
|
|
|
|
<div>
|
|
|
|
<div class="uk-margin-remove uk-text-primary-gradient uk-text-bold uk-h6">Admin Dashboard</div>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2021-01-11 19:33:24 +01:00
|
|
|
</div>
|
2022-04-07 20:28:45 +02:00
|
|
|
<div class="uk-margin uk-margin-remove-bottom">
|
|
|
|
<admin-tabs tab="portal"></admin-tabs>
|
|
|
|
</div>
|
2021-01-11 19:33:24 +01:00
|
|
|
</div>
|
|
|
|
<div inner>
|
2021-03-18 15:11:41 +01:00
|
|
|
<div *ngIf="showLoading" class="uk-position-center">
|
|
|
|
<loading></loading>
|
|
|
|
</div>
|
2022-04-07 20:28:45 +02:00
|
|
|
<ng-container *ngIf="!showLoading">
|
|
|
|
<div class="uk-grid uk-flex-middle uk-margin-top uk-margin-medium-bottom" 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 search-input [expandable]="true" [searchControl]="filterForm.get('keyword')" searchInputClass="outer" placeholder="Search portal"
|
|
|
|
[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>
|
|
|
|
<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>
|
|
|
|
<button class="uk-button uk-button-default uk-text-primary uk-flex uk-flex-middle" (click)="newPortal()">
|
|
|
|
<icon name="add" [flex]="true"></icon>
|
|
|
|
<span class="uk-margin-small-left uk-text-bold uk-text-uppercase">Add portal</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-18 15:11:41 +01:00
|
|
|
<table *ngIf="checkboxes.length > 0" 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="#">
|
2022-01-13 14:46:22 +01:00
|
|
|
<icon class="clickable" name="edit" (click)="editPortal(i)"></icon>
|
|
|
|
<icon class="clickable uk-margin-small-left" [customClass]="'uk-text-danger'" name="remove" (click)="confirmDeletePortal(check.portal._id)"></icon>
|
2021-03-18 15:11:41 +01:00
|
|
|
</div>
|
|
|
|
</td>
|
2021-01-11 10:21:42 +01:00
|
|
|
|
2021-03-18 15:11:41 +01:00
|
|
|
</tr>
|
2021-01-11 10:21:42 +01:00
|
|
|
|
2021-03-18 15:11:41 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div *ngIf="checkboxes.length == 0"
|
|
|
|
class="uk-card uk-card-default uk-padding-large uk-text-center uk-margin-bottom uk-text-bold">
|
|
|
|
<div>No portals found</div>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2022-04-07 20:28:45 +02:00
|
|
|
</ng-container>
|
2019-12-18 16:14:21 +01:00
|
|
|
</div>
|
2021-01-11 19:33:24 +01:00
|
|
|
</div>
|
2021-01-11 10:21:42 +01:00
|
|
|
|
2021-01-28 17:33:16 +01:00
|
|
|
<modal-alert #editModal (alertOutput)="portalSaveConfirmed($event)"
|
|
|
|
[okDisabled]="portalForm && (portalForm.invalid || !portalForm.dirty)">
|
|
|
|
<form *ngIf="portalForm" [formGroup]="portalForm" class="uk-grid uk-child-width-1-1" uk-grid>
|
2021-03-18 15:11:41 +01:00
|
|
|
<div dashboard-input [formInput]="portalForm.get('name')" type="text" label="Portal Name"
|
|
|
|
placeholder="Write a name">
|
2021-01-11 19:33:24 +01:00
|
|
|
</div>
|
2021-03-18 15:11:41 +01:00
|
|
|
<div dashboard-input type="select" label="Portal Type" placeholder="Choose a type"
|
|
|
|
[formInput]="portalForm.get('type')" [options]="portalUtils.portalTypes"></div>
|
2021-01-28 17:33:16 +01:00
|
|
|
<div dashboard-input [formInput]="portalForm.get('pid')"
|
|
|
|
type="text" placeholder="Write pid of portal"
|
2021-01-11 19:33:24 +01:00
|
|
|
label="Portal persistent id for portal">
|
|
|
|
</div>
|
2021-01-28 17:33:16 +01:00
|
|
|
<div dashboard-input [formInput]="portalForm.get('piwik')"
|
|
|
|
type="text" placeholder="Write piwik id of portal"
|
2021-01-11 19:33:24 +01:00
|
|
|
label="Piwik id">
|
|
|
|
</div>
|
2021-10-21 11:45:49 +02:00
|
|
|
<div *ngIf="properties.environment == 'development'" dashboard-input [formInput]="portalForm.get('twitterAccount')" type="text"
|
2021-10-21 11:39:27 +02:00
|
|
|
placeholder="Write twitter account of portal" label="Twitter Account">
|
2021-10-21 11:45:49 +02:00
|
|
|
</div>
|
2021-01-11 19:33:24 +01:00
|
|
|
<input type="hidden" formControlName="_id">
|
|
|
|
</form>
|
2019-12-18 16:14:21 +01:00
|
|
|
|
2021-01-11 19:33:24 +01:00
|
|
|
</modal-alert>
|
2021-01-26 17:21:55 +01:00
|
|
|
<modal-alert #deleteModal (alertOutput)="confirmedDeletePortals($event)"></modal-alert>
|