mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-09 13:07:05 +03:00
68 lines
2.6 KiB
TypeScript
68 lines
2.6 KiB
TypeScript
import { objectToURI } from "../maze-utils";
|
|
import { getHash } from "../maze-utils/hash";
|
|
import Config from "../config";
|
|
import GenericNotice, { NoticeOptions } from "../render/GenericNotice";
|
|
import { ContentContainer } from "../types";
|
|
import Utils from "../utils";
|
|
const utils = new Utils();
|
|
|
|
export interface ChatConfig {
|
|
displayName: string;
|
|
composerInitialValue?: string;
|
|
customDescription?: string;
|
|
}
|
|
|
|
export async function openWarningDialog(contentContainer: ContentContainer): Promise<void> {
|
|
const userInfo = await utils.asyncRequestToServer("GET", "/api/userInfo", {
|
|
publicUserID: await getHash(Config.config.userID),
|
|
values: ["warningReason"]
|
|
});
|
|
|
|
if (userInfo.ok) {
|
|
const warningReason = JSON.parse(userInfo.responseText)?.warningReason;
|
|
const userNameData = await utils.asyncRequestToServer("GET", "/api/getUsername?userID=" + Config.config.userID);
|
|
const userName = userNameData.ok ? JSON.parse(userNameData.responseText).userName : "";
|
|
const publicUserID = await getHash(Config.config.userID);
|
|
|
|
let notice: GenericNotice = null;
|
|
const options: NoticeOptions = {
|
|
title: chrome.i18n.getMessage("warningTitle"),
|
|
textBoxes: [{
|
|
text: chrome.i18n.getMessage("warningChatInfo"),
|
|
icon: null
|
|
}, ...warningReason.split("\n").map((reason) => ({
|
|
text: reason,
|
|
icon: null
|
|
}))],
|
|
buttons: [{
|
|
name: chrome.i18n.getMessage("questionButton"),
|
|
listener: () => openChat({
|
|
displayName: `${userName ? userName : ``}${userName !== publicUserID ? ` | ${publicUserID}` : ``}`
|
|
})
|
|
},
|
|
{
|
|
name: chrome.i18n.getMessage("warningConfirmButton"),
|
|
listener: async () => {
|
|
const result = await utils.asyncRequestToServer("POST", "/api/warnUser", {
|
|
userID: Config.config.userID,
|
|
enabled: false
|
|
});
|
|
|
|
if (result.ok) {
|
|
notice?.close();
|
|
} else {
|
|
alert(`${chrome.i18n.getMessage("warningError")} ${result.status}`);
|
|
}
|
|
}
|
|
}],
|
|
timed: false
|
|
};
|
|
|
|
notice = new GenericNotice(contentContainer, "warningNotice", options);
|
|
}
|
|
}
|
|
|
|
export function openChat(config: ChatConfig): void {
|
|
window.open("https://chat.sponsor.ajay.app/#" + objectToURI("", config, false));
|
|
}
|