2022-10-21 19:17:06 -04:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-05 19:36:00 -04:00
|
|
|
import { Clipboard, Toasts } from "@webpack/common";
|
2022-08-30 22:07:16 -04:00
|
|
|
|
2023-05-22 19:55:39 -04:00
|
|
|
import { DevsById } from "./constants";
|
|
|
|
|
2022-08-30 22:07:16 -04:00
|
|
|
/**
|
2022-09-16 16:59:34 -04:00
|
|
|
* Recursively merges defaults into an object and returns the same object
|
2022-08-30 22:07:16 -04:00
|
|
|
* @param obj Object
|
|
|
|
* @param defaults Defaults
|
|
|
|
* @returns obj
|
|
|
|
*/
|
|
|
|
export function mergeDefaults<T>(obj: T, defaults: T): T {
|
|
|
|
for (const key in defaults) {
|
|
|
|
const v = defaults[key];
|
|
|
|
if (typeof v === "object" && !Array.isArray(v)) {
|
|
|
|
obj[key] ??= {} as any;
|
|
|
|
mergeDefaults(obj[key], v);
|
|
|
|
} else {
|
|
|
|
obj[key] ??= v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return obj;
|
2022-09-01 15:41:00 -04:00
|
|
|
}
|
|
|
|
|
2022-09-30 18:42:50 -04:00
|
|
|
/**
|
|
|
|
* Calls .join(" ") on the arguments
|
|
|
|
* classes("one", "two") => "one two"
|
|
|
|
*/
|
2023-02-25 13:10:01 -05:00
|
|
|
export function classes(...classes: Array<string | null | undefined>) {
|
|
|
|
return classes.filter(Boolean).join(" ");
|
2022-09-30 18:42:50 -04:00
|
|
|
}
|
2022-10-09 13:48:42 -04:00
|
|
|
|
2022-11-25 13:25:35 -05:00
|
|
|
/**
|
|
|
|
* Returns a promise that resolves after the specified amount of time
|
|
|
|
*/
|
2022-10-09 13:48:42 -04:00
|
|
|
export function sleep(ms: number): Promise<void> {
|
|
|
|
return new Promise(r => setTimeout(r, ms));
|
|
|
|
}
|
2022-10-11 23:35:34 -04:00
|
|
|
|
2022-12-02 10:38:52 -05:00
|
|
|
export function copyWithToast(text: string, toastMessage = "Copied to clipboard!") {
|
|
|
|
if (Clipboard.SUPPORTS_COPY) {
|
|
|
|
Clipboard.copy(text);
|
|
|
|
} else {
|
|
|
|
toastMessage = "Your browser does not support copying to clipboard";
|
|
|
|
}
|
|
|
|
Toasts.show({
|
|
|
|
message: toastMessage,
|
|
|
|
id: Toasts.genId(),
|
|
|
|
type: Toasts.Type.SUCCESS
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if obj is a true object: of type "object" and not null or array
|
|
|
|
*/
|
|
|
|
export function isObject(obj: unknown): obj is object {
|
|
|
|
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
|
2022-10-12 16:22:21 -04:00
|
|
|
}
|
2022-12-02 10:43:37 -05:00
|
|
|
|
2023-09-05 14:10:42 -04:00
|
|
|
/**
|
|
|
|
* Check if an object is empty or in other words has no own properties
|
|
|
|
*/
|
|
|
|
export function isObjectEmpty(obj: object) {
|
|
|
|
for (const k in obj)
|
|
|
|
if (Object.hasOwn(obj, k)) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-12-02 10:43:37 -05:00
|
|
|
/**
|
|
|
|
* Returns null if value is not a URL, otherwise return URL object.
|
|
|
|
* Avoids having to wrap url checks in a try/catch
|
|
|
|
*/
|
|
|
|
export function parseUrl(urlString: string): URL | null {
|
|
|
|
try {
|
|
|
|
return new URL(urlString);
|
|
|
|
} catch {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether an element is on screen
|
|
|
|
*/
|
|
|
|
export const checkIntersecting = (el: Element) => {
|
|
|
|
const elementBox = el.getBoundingClientRect();
|
|
|
|
const documentHeight = Math.max(document.documentElement.clientHeight, window.innerHeight);
|
|
|
|
return !(elementBox.bottom < 0 || elementBox.top - documentHeight >= 0);
|
|
|
|
};
|
2023-02-10 16:33:34 -05:00
|
|
|
|
|
|
|
export function identity<T>(value: T): T {
|
|
|
|
return value;
|
|
|
|
}
|
2023-04-14 20:27:11 -04:00
|
|
|
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent#mobile_tablet_or_desktop
|
|
|
|
// "In summary, we recommend looking for the string Mobi anywhere in the User Agent to detect a mobile device."
|
|
|
|
export const isMobile = navigator.userAgent.includes("Mobi");
|
2023-05-22 19:55:39 -04:00
|
|
|
|
|
|
|
export const isPluginDev = (id: string) => Object.hasOwn(DevsById, id);
|