2020-02-08 09:36:14 +00:00
|
|
|
<ion-header>
|
|
|
|
<ion-toolbar>
|
2020-02-08 18:36:04 +00:00
|
|
|
<ion-buttons slot="start">
|
|
|
|
<ion-menu-toggle>
|
|
|
|
<ion-button>
|
|
|
|
<ion-icon slot="icon-only" name="menu"></ion-icon>
|
|
|
|
</ion-button>
|
|
|
|
</ion-menu-toggle>
|
|
|
|
</ion-buttons>
|
2020-02-08 17:19:00 +00:00
|
|
|
<ion-title contenteditable="true" #titleBar>{{ pageRecord.Name }}</ion-title>
|
2020-02-08 09:36:14 +00:00
|
|
|
</ion-toolbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
<ng-container>
|
|
|
|
<div class="editor-root ion-padding">
|
|
|
|
<div class="host-container ion-padding">
|
2020-02-08 18:36:04 +00:00
|
|
|
<editor-host #editorHosts *ngFor="let record of hostRecords" [(record)]="record"
|
|
|
|
(newHostRequested)="onNewHostRequested($event)" (destroyHostRequested)="onDestroyHostRequested($event)">
|
|
|
|
</editor-host>
|
2020-02-08 09:36:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-08 17:19:00 +00:00
|
|
|
<div class="editor-buttons">
|
|
|
|
<ion-button (click)="onAddClick()" class="ion-padding ion-margin">Add Node</ion-button>
|
|
|
|
<ion-button (click)="onSaveClick()" class="ion-padding ion-margin">Save</ion-button>
|
|
|
|
</div>
|
2020-02-08 09:36:14 +00:00
|
|
|
</ng-container>
|
2020-02-08 18:36:04 +00:00
|
|
|
</ion-content>
|