From 44f6f71c3efd2e4e0f9dbd97ab4680ec76536052 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 22 Oct 2022 04:41:33 +0200 Subject: Monaco for Discord Desktop --- src/utils/IpcEvents.ts | 3 ++- src/utils/Queue.ts | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 src/utils/Queue.ts (limited to 'src/utils') diff --git a/src/utils/IpcEvents.ts b/src/utils/IpcEvents.ts index b773f64..c6696f8 100644 --- a/src/utils/IpcEvents.ts +++ b/src/utils/IpcEvents.ts @@ -43,5 +43,6 @@ export default strEnum({ GET_HASHES: "VencordGetHashes", UPDATE: "VencordUpdate", BUILD: "VencordBuild", - GET_DESKTOP_CAPTURE_SOURCES: "VencordGetDesktopCaptureSources" + GET_DESKTOP_CAPTURE_SOURCES: "VencordGetDesktopCaptureSources", + OPEN_MONACO_EDITOR: "VencordOpenMonacoEditor" } as const); diff --git a/src/utils/Queue.ts b/src/utils/Queue.ts new file mode 100644 index 0000000..269fd36 --- /dev/null +++ b/src/utils/Queue.ts @@ -0,0 +1,27 @@ +/* + * Vencord, a modification for Discord's desktop app + * Copyright (c) 2022 Vendicated and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ + +import { Promisable } from "type-fest"; + +export class Queue { + private promise = Promise.resolve(); + + add(func: () => Promisable) { + this.promise = this.promise.then(func); + } +} -- cgit