165 lines
7.2 KiB
HTML
165 lines
7.2 KiB
HTML
<div page-content class="admin-pages">
|
|
<div header>
|
|
<admin-tabs tab="class" header></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 search-input [control]="filterForm.controls.keyword" [showSearch]="false" placeholder="Search"
|
|
[bordered]="true" colorClass="uk-text-secondary"></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]="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>
|
|
<a (click)="newDivId()"
|
|
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 class</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div inner>
|
|
<div>
|
|
<div class="contentPanel">
|
|
<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 [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="md-card uk-margin-medium-bottom" *ngIf="!errorMessage && !showLoading">
|
|
<div class="md-card-content">
|
|
<div class="uk-overflow-container">
|
|
|
|
<table class="uk-table uk-table-striped uk-table-large">
|
|
<thead class="form-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="#">
|
|
<i class="clickable" uk-icon="pencil" (click)="editDivId(i)"></i>
|
|
<i class="clickable uk-text-danger" uk-icon="trash"
|
|
(click)="confirmDeleteDivId(check.divId._id)"></i>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div *ngIf="checkboxes.length==0" class="col-md-12">
|
|
<div class="uk-alert-warning uk-alert">No classes found</div>
|
|
</div>
|
|
<div class="uk-width-1-1 uk-flex uk-flex-center ">
|
|
<div class="uk-width-small uk-button uk-button-default" (click)="newDivId()">
|
|
<i class="" uk-icon="plus"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<modal-alert #AlertModalSaveDivId (alertOutput)="divIdSaveConfirmed($event)"
|
|
[okDisabled]="myForm && (myForm.invalid || !myForm.dirty)">
|
|
<div *ngIf="modalErrorMessage" class="uk-alert-danger" uk-alert aria-hidden="true">{{ modalErrorMessage }}</div>
|
|
<form [formGroup]="myForm">
|
|
|
|
<div dashboard-input class="uk-margin-small-left" [formInput]="myForm.get('name')"
|
|
type="text"
|
|
label="Class Name">
|
|
</div>
|
|
<mat-form-field class="example-chip-list uk-width-1-1 uk-margin-small-left">
|
|
<mat-chip-list #chipList aria-label="Page selection">
|
|
<mat-chip
|
|
*ngFor="let page of selectedPages"
|
|
[selectable]="true"
|
|
[removable]="true">
|
|
{{page.name}}
|
|
<span (click)="remove(page)"
|
|
class=" notranslate mat-chip-remove mat-chip-trailing-icon " uk-icon="trash"></span>
|
|
</mat-chip>
|
|
<input placeholder="Add in pages..." #PageInput
|
|
[formControl]="pageSearchCtrl" [matAutocomplete]="auto" [matChipInputFor]="chipList">
|
|
</mat-chip-list>
|
|
<mat-autocomplete #auto="matAutocomplete" (optionSelected)="selected($event)">
|
|
<mat-option *ngFor="let page of filteredPages| async" [value]="page">
|
|
{{page.name}}
|
|
</mat-option>
|
|
</mat-autocomplete>
|
|
</mat-form-field>
|
|
|
|
<div [ngClass]="{'has-error':!myForm.controls.portalType.valid && myForm.controls.portalType.dirty}"
|
|
class="form-group" uk-grid>
|
|
<div class="uk-width-1-1 uk-margin-small-bottom uk-text-bold uk-form-label">
|
|
Class exists in:
|
|
</div>
|
|
<div class="uk-child-width-1-2 uk-grid">
|
|
<span *ngFor="let option of portalUtils.portalTypes" class="radio ">
|
|
<span class="uk-margin-small-right" style="font-weight: normal;">{{option.label}}</span>
|
|
<input type="radio" [value]="option.value" formControlName="portalType">
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" formControlName="_id">
|
|
</form>
|
|
|
|
</modal-alert>
|
|
|
|
|
|
<modal-alert #AlertModalDeleteDivIds (alertOutput)="confirmedDeleteDivIds($event)"></modal-alert>
|