104 lines
5.0 KiB
HTML
104 lines
5.0 KiB
HTML
<div page-content (stickyEmitter)="stickyPageHeader = $event">
|
|
<div header>
|
|
<div class="uk-flex uk-flex-middle uk-margin-top info" [class.uk-active]="stickyPageHeader">
|
|
<div>
|
|
<div class="uk-margin-remove uk-text-background uk-text-bold uk-h6">Admin Dashboard</div>
|
|
</div>
|
|
</div>
|
|
<div class="uk-margin uk-margin-remove-bottom">
|
|
<admin-tabs tab="class"></admin-tabs>
|
|
</div>
|
|
</div>
|
|
<div inner>
|
|
<div *ngIf="showLoading" class="uk-position-center">
|
|
<loading></loading>
|
|
</div>
|
|
<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 class" 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]="getSelectedDivIds().length == 0 ? 'pos:left; cls: uk-active' : 'cls: uk-invisible'"
|
|
title="Select at least one class">
|
|
<li><a [class]="getSelectedDivIds().length == 0 ? 'uk-disabled' : ''"
|
|
(click)="confirmDeleteSelectedDivIds()"><i></i> Delete </a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button class="uk-button uk-button-default uk-flex uk-flex-middle" (click)="newDivId()">
|
|
<icon name="add" [flex]="true"></icon>
|
|
<span class="uk-margin-small-left uk-text-bold uk-text-uppercase">Add class</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<table *ngIf="checkboxes.length > 0"class="uk-table uk-table-striped uk-table-large">
|
|
<thead class="uk-card-header">
|
|
<tr>
|
|
<th
|
|
class="uk-width-small"><input id="allDivIdCheckbox" type="checkbox"
|
|
(change)="toggleCheckBoxes($event)"></th>
|
|
<th>Name</th>
|
|
<th *ngIf="!selectedCommunityPid">Portal Type</th>
|
|
<th>Page</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let check of checkboxes; let i=index">
|
|
<td><input id="{{check.divId._id}}" class="checkBox" type="checkbox"
|
|
name="divIdscb[]" value="{{check.divId._id}}" [(ngModel)]="check.checked">
|
|
</td>
|
|
<td>
|
|
<div class="name" href="#">{{check.divId.name}}</div>
|
|
</td>
|
|
<td *ngIf="!selectedCommunityPid">
|
|
<div class="portalType" href="#">{{check.divId.portalType}}</div>
|
|
</td>
|
|
<td>
|
|
<div class="pages" href="#">
|
|
<span *ngFor="let page of check.divId.pages let i=index">{{page.name}}<span
|
|
*ngIf="i<(check.divId.pages.length-1)">, </span></span>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="actions" href="#">
|
|
<icon class="clickable" name="edit" (click)="editDivId(i)"></icon>
|
|
<icon class="clickable uk-margin-small-left" [customClass]="'uk-text-danger'" name="delete" (click)="confirmDeleteDivId(check.divId._id)"></icon>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</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 classes found</div>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
<modal-alert #editModal (alertOutput)="divIdSaveConfirmed($event)"
|
|
[okDisabled]="classForm && (classForm.invalid || !classForm.dirty)">
|
|
<form *ngIf="classForm" [formGroup]="classForm" class="uk-grid uk-child-width-1-1" uk-grid>
|
|
<div input [formInput]="classForm.get('name')" placeholder="Class Name"></div>
|
|
<div input [formInput]="classForm.get('pages')" placeholder="Pages" [options]="allPages" type="chips"></div>
|
|
<div input [formInput]="classForm.get('portalType')" placeholder="Portal Type" [options]="portalUtils.portalTypes" type="select"></div>
|
|
</form>
|
|
</modal-alert>
|
|
<modal-alert #deleteModal (alertOutput)="confirmedDeleteDivIds($event)"></modal-alert>
|