mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
58 lines
2.6 KiB
HTML
58 lines
2.6 KiB
HTML
<my-ibox title="Add {{ defaultName }}">
|
|
<div class="my-ibox-content">
|
|
<form (submit)="addWidget()" novalidate name="addForm">
|
|
<label class="label-block">
|
|
Widget Name
|
|
<input type="text" class="form-control"
|
|
placeholder="{{ defaultName }}"
|
|
[(ngModel)]="newWidget.dimension.newName" name="widget-name-new"
|
|
[disabled]="isUpdating"/>
|
|
</label>
|
|
<label class="label-block">
|
|
Widget URL
|
|
<input type="text" class="form-control"
|
|
placeholder="https://matrix.org"
|
|
[(ngModel)]="newWidget.dimension.newUrl" name="widget-url-new"
|
|
[disabled]="isUpdating"/>
|
|
</label>
|
|
|
|
<button type="submit" class="btn btn-sm btn-success" [disabled]="isUpdating">
|
|
<i class="fa fa-plus"></i> Add Widget
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</my-ibox>
|
|
|
|
<my-ibox *ngFor="let widget of widgets trackById"
|
|
[isCollapsible]="true" [defaultCollapsed]="widget.id !== defaultExpandedWidgetId"
|
|
title="{{ widget.name || widget.url || defaultName }}">
|
|
<div class="my-ibox-content">
|
|
<form (submit)="saveWidget(widget)" novalidate name="addForm">
|
|
<label class="label-block">
|
|
Widget Name
|
|
<input type="text" class="form-control"
|
|
placeholder="{{ defaultName }}"
|
|
[(ngModel)]="widget.dimension.newName" name="widget-name-{{widget.id}}"
|
|
[disabled]="isUpdating"/>
|
|
</label>
|
|
<label class="label-block">
|
|
Widget URL
|
|
<input type="text" class="form-control"
|
|
placeholder="https://matrix.org"
|
|
[(ngModel)]="widget.dimension.newUrl" name="widget-url-{{widget.id}}"
|
|
[disabled]="isUpdating"/>
|
|
</label>
|
|
|
|
<button type="submit" class="btn btn-sm btn-primary" [disabled]="isUpdating">
|
|
<i class="fa fa-save"></i> Save Widget
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-danger" [disabled]="isUpdating">
|
|
<i class="fa fa-times"></i> Remove Widget
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-white" [disabled]="isUpdating" (click)="resetWidget(widget)"
|
|
*ngIf="hasChanges(widget)">
|
|
<i class="fa fa-reset"></i> Undo Changes
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</my-ibox> |