2023-09-25 10:36:05 +02:00
|
|
|
<div page-content>
|
|
|
|
<div header>
|
|
|
|
<admin-tabs tab="template"></admin-tabs>
|
|
|
|
<ul class="uk-subnav uk-subnav-pill uk-margin-medium-top">
|
|
|
|
<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 actions>
|
|
|
|
<div class="uk-section-xsmall">
|
|
|
|
<div class="uk-flex uk-flex-right@m uk-flex-center uk-flex-wrap uk-flex-middle uk-grid" uk-grid>
|
|
|
|
<div search-input [disabled]="showLoading" [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-default uk-flex uk-flex-middle" (click)="newPlugin()"
|
|
|
|
[disabled]="showLoading" [class.uk-disabled]="showLoading">
|
|
|
|
<icon name="add" [flex]="true"></icon>
|
|
|
|
<span class="uk-margin-small-left uk-text-bold uk-text-uppercase">Add plugin template</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div inner>
|
|
|
|
<div class="uk-section uk-section-small uk-position-relative" style="min-height: 60vh">
|
|
|
|
<div *ngIf="showLoading" class="uk-position-center">
|
|
|
|
<loading></loading>
|
|
|
|
</div>
|
|
|
|
<ng-container *ngIf="!showLoading">
|
|
|
|
<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 templates found</div>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="checkboxes.length > 0" class="uk-grid uk-child-width-1-1" uk-height-match=".uk-card-body" uk-grid>
|
|
|
|
<div *ngFor="let check of checkboxes; let i=index">
|
|
|
|
<div class="uk-card uk-card-default">
|
|
|
|
<div class="uk-card-body uk-flex">
|
|
|
|
<!--<div *ngIf="!portal" class="uk-margin-right">
|
|
|
|
<input [id]="check.template._id" class="uk-checkbox" type="checkbox"
|
|
|
|
name="pagescb[]" value="{{check.page._id}}" [(ngModel)]="check.checked">
|
|
|
|
</div>-->
|
|
|
|
<div class="uk-width-expand uk-text-small">
|
|
|
|
<h6>{{check.template.name}}</h6>
|
|
|
|
<div *ngIf="check.template.pages && check.template.pages.length > 0" class="uk-margin-small-bottom">
|
|
|
|
<span class="uk-text-meta">Pages: </span>{{getPagesAsString(check.template.pages)}}
|
|
|
|
</div>
|
|
|
|
<div class="uk-margin-small-bottom">
|
|
|
|
<span class="uk-text-meta">Placements: </span>{{check.template.placements.join(", ")}}
|
|
|
|
</div>
|
|
|
|
<div class="uk-margin-small-bottom">
|
|
|
|
<span class="uk-text-meta">Portal type: </span>{{check.template.portalType}}
|
|
|
|
</div>
|
|
|
|
<div class="uk-margin-small-bottom">
|
|
|
|
{{check.template.description}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="uk-card-footer uk-padding-remove-vertical">
|
|
|
|
<div class="uk-grid uk-grid-small uk-flex-nowrap uk-grid-divider uk-flex-right" uk-grid>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="uk-padding-small uk-padding-remove-horizontal">
|
|
|
|
<button
|
|
|
|
class="uk-button uk-button-link uk-flex uk-flex-middle" (click)="edit(i)">
|
|
|
|
<icon name="edit" [flex]="true"></icon>
|
|
|
|
<span class="uk-margin-xsmall-left"> Edit</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="uk-padding-small uk-padding-remove-horizontal">
|
|
|
|
<button class="uk-button uk-button-link uk-flex uk-flex-middle"
|
|
|
|
(click)="confirmDelete(check.template._id)">
|
|
|
|
<icon name="delete" [flex]="true"></icon>
|
|
|
|
<span class="uk-margin-xsmall-left"> Delete</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<modal-alert #editModal (alertOutput)="saveConfirmed($event)" [large]="true"
|
|
|
|
[okDisabled]="templateForm && (templateForm.invalid || !templateForm.dirty)" classTitle="uk-background-primary uk-light">
|
|
|
|
<form *ngIf="templateForm" [formGroup]="templateForm" class="uk-grid uk-child-width-1-2" uk-grid>
|
|
|
|
<div input [formInput]="templateForm.get('name')" placeholder="Template Name"></div>
|
|
|
|
<div input [formInput]="templateForm.get('code')" placeholder="Template Code"></div>
|
|
|
|
<div class="uk-width-1-1" input [formInput]="templateForm.get('description')" placeholder="Description" type="textarea"> </div>
|
|
|
|
<div input [formInput]="templateForm.get('image')" placeholder="Image"></div>
|
|
|
|
<div input [formInput]="templateForm.get('portalType')" placeholder="Portal Type" [options]="portalUtils.portalTypes" type="select"></div>
|
2023-09-26 16:32:27 +02:00
|
|
|
<div input [formInput]="templateForm.get('placements')" placeholder="Placements" [options]="placementsOptions" type="chips"></div>
|
2023-09-25 10:36:05 +02:00
|
|
|
<div input [formInput]="templateForm.get('pages')" placeholder="Pages" [options]="allPages" type="chips"></div>
|
|
|
|
|
|
|
|
<div *ngFor="let attrForm of attrFormArray.controls; let i=index" class="uk-width-1-1 uk-grid uk-child-width-1-2" uk-grid>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="uk-heading-divider uk-text-small uk-width-1-1 uk-margin-bottom uk-text-meta">
|
|
|
|
<div class="uk-grid">
|
|
|
|
<div>Field #{{i +1}}</div>
|
|
|
|
<div *ngIf="attrFormArray.length > 1" class=" uk-width-expand uk-text-right ">
|
|
|
|
<a class=" " (click)="removeAttr(i)">Remove</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-02 09:20:36 +02:00
|
|
|
<div input [formInput]="attrForm.get('key')" placeholder="Key"></div>
|
2023-09-25 10:36:05 +02:00
|
|
|
<div input [formInput]="attrForm.get('name')" placeholder="Name"></div>
|
|
|
|
<div input [formInput]="attrForm.get('type')" placeholder="Type" [options]="attrTypeOptions" type="select" (valueChange)="attributeTypeChanged(attrForm)"></div>
|
|
|
|
|
|
|
|
<div *ngIf="attrForm.get('type').value == 'text'" input [formInput]="attrForm.get('value')" placeholder="Default value" [type]="attrForm.get('type').value" ></div>
|
|
|
|
<div *ngIf="attrForm.get('type').value == 'URL'" input [formInput]="attrForm.get('value')" placeholder="Default value" [type]="attrForm.get('type').value" [validators]="urlValidator"></div>
|
|
|
|
<div *ngIf="attrForm.get('type').value == 'boolean'" input [formInput]="attrForm.get('value')" placeholder="Default value" type="select"
|
|
|
|
[options]="[{label: 'yes', value:true}, {label: 'no', value:false}]"></div>
|
|
|
|
<div *ngIf="attrForm.get('type').value == 'HTML'" class="uk-width-1-1">
|
|
|
|
<ckeditor [readonly]="false"
|
|
|
|
debounce="500"
|
|
|
|
[formControl]="attrForm.get('value')"
|
|
|
|
[config]="{ extraAllowedContent: '* [uk-*](*) ; span', disallowedContent: 'script; *[on*]',
|
|
|
|
removeButtons: 'Save,NewPage,DocProps,Preview,Print,' +
|
|
|
|
'Form,Checkbox,Radio,TextField,Textarea,Select,Button,ImageButton,HiddenField,' +
|
|
|
|
'CreateDiv,Flash,PageBreak,' +
|
|
|
|
'Subscript,Superscript,Anchor,Smiley,Iframe,Styles,Font,About,Language',
|
|
|
|
extraPlugins: 'divarea'}">
|
|
|
|
</ckeditor>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr class="uk-width-1-1">
|
|
|
|
<div class="uk-width-1-1 uk-text-center ">
|
|
|
|
<a (click)="addNewAttr()">Add more fields</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</modal-alert>
|
|
|
|
<modal-alert #deleteModal (alertOutput)="confirmedDelete()" classTitle="uk-background-primary uk-light"></modal-alert>
|