mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
43 lines
1.6 KiB
TypeScript
43 lines
1.6 KiB
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
import { FE_WhiteBoardWidget } from "../../../shared/models/integration";
|
|
import { ToasterService } from "angular2-toaster";
|
|
import { TranslateService } from "@ngx-translate/core";
|
|
import { NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
|
|
import { AdminIntegrationsApiService } from "../../../shared/services/admin/admin-integrations-api.service";
|
|
|
|
@Component({
|
|
templateUrl: "./whiteboard.component.html",
|
|
styleUrls: ["./whiteboard.component.scss", "../config-dialog.scss"],
|
|
})
|
|
export class AdminWidgetWhiteboardConfigComponent implements OnInit {
|
|
|
|
public isUpdating = false;
|
|
public widget: FE_WhiteBoardWidget;
|
|
private originalWidget: FE_WhiteBoardWidget;
|
|
|
|
constructor(public modal: NgbActiveModal,
|
|
private adminIntegrationsApi: AdminIntegrationsApiService,
|
|
private toaster: ToasterService,
|
|
public translate: TranslateService) {
|
|
this.translate = translate;
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.originalWidget = this.widget;
|
|
this.widget = JSON.parse(JSON.stringify(this.originalWidget));
|
|
}
|
|
|
|
public save() {
|
|
this.isUpdating = true;
|
|
this.adminIntegrationsApi.setIntegrationOptions(this.widget.category, this.widget.type, this.widget.options).then(() => {
|
|
this.originalWidget.options = this.widget.options;
|
|
this.toaster.pop("success", "Widget updated");
|
|
this.modal.close();
|
|
}).catch(err => {
|
|
this.isUpdating = false;
|
|
console.error(err);
|
|
this.toaster.pop("error", "Error updating widget");
|
|
});
|
|
}
|
|
}
|