2017-11-10 12:31:46 -05:00
|
|
|
<div class="config-wrapper">
|
|
|
|
<img src="/img/close.svg" (click)="dialog.close()" class="close-icon">
|
|
|
|
<div class="config-header">
|
2017-12-11 17:39:15 -05:00
|
|
|
<img [src]="integration.avatar">
|
2017-11-10 12:31:46 -05:00
|
|
|
<h4>Configure Twitch Livestream widgets</h4>
|
|
|
|
</div>
|
|
|
|
<div class="config-content" *ngIf="isLoading">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<p><i class="fa fa-circle-notch fa-spin"></i> Loading widgets...</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="config-content" *ngIf="!isLoading">
|
|
|
|
<form (submit)="validateAndAddWidget()" novalidate name="addForm">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8" style="margin-bottom: 12px;">
|
|
|
|
<div class="input-group input-group-sm">
|
|
|
|
<input type="text" class="form-control"
|
|
|
|
placeholder="Twitch Channel Name"
|
|
|
|
[(ngModel)]="newWidgetUrl" name="newWidgetUrl"
|
|
|
|
[disabled]="isUpdating">
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button type="submit" class="btn btn-success" [disabled]="isUpdating">
|
|
|
|
<i class="fa fa-plus-circle"></i> Add Widget
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-12 removable widget-item" *ngFor="let widget of widgets trackById">
|
|
|
|
{{ widget.name || widget.url }} <span class="text-muted" *ngIf="widget.ownerId">(added by {{ widget.ownerId }})</span>
|
|
|
|
<button type="button" class="btn btn-outline-info btn-sm" (click)="editWidget(widget)"
|
|
|
|
style="margin-top: -5px;" [disabled]="isUpdating">
|
|
|
|
<i class="fa fa-pencil"></i> Edit Widget
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-sm btn-outline-danger" (click)="removeWidget(widget)"
|
|
|
|
style="margin-top: -5px;" [disabled]="isUpdating">
|
|
|
|
<i class="fa fa-times"></i> Remove Widget
|
|
|
|
</button>
|
|
|
|
<div *ngIf="isWidgetToggled(widget)">
|
|
|
|
<label>
|
|
|
|
Widget Name
|
|
|
|
<input type="text" class="form-control"
|
|
|
|
placeholder="Twitch Widget"
|
|
|
|
[(ngModel)]="widget.newName" name="widget-name-{{widget.id}}"
|
|
|
|
[disabled]="isUpdating">
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
Channel Name
|
|
|
|
<input type="text" class="form-control"
|
|
|
|
placeholder="Twitch Channel Name"
|
|
|
|
[(ngModel)]="widget.data.newDimChannelName" name="widget-url-{{widget.id}}"
|
|
|
|
[disabled]="isUpdating">
|
|
|
|
</label>
|
2017-12-09 18:34:59 -05:00
|
|
|
<button type="button" class="btn btn-primary btn-sm" (click)="validateAndSaveWidget(widget)">
|
|
|
|
Save
|
2017-11-10 12:31:46 -05:00
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-outline btn-sm" (click)="toggleWidget(widget)">
|
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|