aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-11-03 20:36:17 +0100
committerVendicated <vendicated@riseup.net>2022-11-03 20:36:17 +0100
commit65620f4976ad88967a8b64792fed5b0667f8e487 (patch)
tree74d549d537fc7ab97e2379e64452977f3309d3d3 /src/utils
parentcb7469afad37e0aea53dd9d5fbd21920eb3f2f3a (diff)
downloadVencord-65620f4976ad88967a8b64792fed5b0667f8e487.tar.gz
Vencord-65620f4976ad88967a8b64792fed5b0667f8e487.tar.bz2
Vencord-65620f4976ad88967a8b64792fed5b0667f8e487.zip
Webpack: Do not emit errors if devtools open
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/index.ts2
-rw-r--r--src/utils/onceDefined.ts47
2 files changed, 49 insertions, 0 deletions
diff --git a/src/utils/index.ts b/src/utils/index.ts
index d818e88..22504ce 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -24,4 +24,6 @@ export { default as IpcEvents } from "./IpcEvents";
export { default as Logger } from "./logger";
export * from "./misc";
export * as Modals from "./modal";
+export * from "./onceDefined";
export * from "./proxyLazy";
+export * from "./Queue";
diff --git a/src/utils/onceDefined.ts b/src/utils/onceDefined.ts
new file mode 100644
index 0000000..4ee8fa6
--- /dev/null
+++ b/src/utils/onceDefined.ts
@@ -0,0 +1,47 @@
+/*
+ * 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 <https://www.gnu.org/licenses/>.
+*/
+
+import type { LiteralUnion } from "type-fest";
+
+/**
+ * Wait for a property to be defined on the target, then call the callback with
+ * the value
+ * @param target Object
+ * @param property Property to be defined
+ * @param callback Callback
+ *
+ * @example onceDefined(window, "webpackChunkdiscord_app", wpInstance => wpInstance.push(...));
+ */
+export function onceDefined<T, P extends LiteralUnion<keyof T, PropertyKey>>(
+ target: T, property: P, callback: (v: P extends keyof T ? T[P] : any) => void
+): void {
+ const propertyAsAny = property as any;
+
+ if (property in target)
+ return void callback(target[propertyAsAny]);
+
+ Object.defineProperty(target, property, {
+ set(v) {
+ delete target[propertyAsAny];
+ target[propertyAsAny] = v;
+ callback(v);
+ },
+ configurable: true,
+ enumerable: false
+ });
+}