mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
import { Component } from "@angular/core";
|
|
import { FE_SimpleBot } from "../../shared/models/integration";
|
|
import { ToasterService } from "angular2-toaster";
|
|
import { ScalarClientApiService } from "../../shared/services/scalar/scalar-client-api.service";
|
|
import { IntegrationsApiService } from "../../shared/services/integrations/integrations-api.service";
|
|
import { BSModalContext } from "ngx-modialog/plugins/bootstrap";
|
|
import { DialogRef } from "ngx-modialog";
|
|
|
|
export class SimpleBotConfigDialogContext extends BSModalContext {
|
|
public bot: FE_SimpleBot;
|
|
public roomId: string;
|
|
}
|
|
|
|
@Component({
|
|
templateUrl: "simple-bot.component.html",
|
|
styleUrls: ["simple-bot.component.scss"],
|
|
})
|
|
export class ConfigSimpleBotComponent {
|
|
|
|
public bot: FE_SimpleBot;
|
|
|
|
private roomId: string;
|
|
|
|
constructor(public dialog: DialogRef<SimpleBotConfigDialogContext>,
|
|
private toaster: ToasterService,
|
|
private scalar: ScalarClientApiService,
|
|
private integrationsApi: IntegrationsApiService) {
|
|
this.bot = dialog.context.bot;
|
|
this.roomId = dialog.context.roomId;
|
|
|
|
this.bot._isUpdating = false;
|
|
}
|
|
|
|
public toggle() {
|
|
let promise: Promise<any> = Promise.resolve();
|
|
if (!this.bot._inRoom) {
|
|
promise = this.scalar.inviteUser(this.roomId, this.bot.userId);
|
|
} else promise = this.integrationsApi.removeIntegration(this.bot.category, this.bot.type, this.roomId);
|
|
|
|
this.bot._inRoom = !this.bot._inRoom;
|
|
this.bot._isUpdating = true;
|
|
promise.then(() => {
|
|
this.bot._isUpdating = false;
|
|
if (this.bot._inRoom) this.toaster.pop("success", this.bot.displayName + " was invited to the room");
|
|
else this.toaster.pop("success", this.bot.displayName + " was removed from the room");
|
|
}).catch(err => {
|
|
this.bot._inRoom = !this.bot._inRoom; // revert the status change
|
|
this.bot._isUpdating = false;
|
|
console.error(err);
|
|
|
|
let errorMessage = null;
|
|
if (err.json) errorMessage = err.json().error;
|
|
if (err.response && err.response.error) errorMessage = err.response.error.message;
|
|
if (!errorMessage) errorMessage = "Could not update integration status";
|
|
|
|
this.toaster.pop("error", errorMessage);
|
|
});
|
|
}
|
|
} |