[skip ci] Fix handleComponentFailed spam

This commit is contained in:
Vendicated 2023-05-05 16:48:35 +02:00
parent c25bc0ff4b
commit 244d10dc9e
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
5 changed files with 38 additions and 4 deletions

View file

@ -25,7 +25,7 @@ export * from "./margins";
export * from "./misc";
export * as Modals from "./modal";
export * from "./onceDefined";
export * from "./onlyOnce";
export * from "./proxyLazy";
export * from "./Queue";
export * from "./text";

29
src/utils/onlyOnce.ts Normal file
View file

@ -0,0 +1,29 @@
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2023 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/>.
*/
export function onlyOnce<F extends Function>(f: F): F {
let called = false;
let result: any;
return function onlyOnceWrapper(this: unknown) {
if (called) return result;
called = true;
return (result = f.apply(this, arguments));
} as unknown as F;
}