Utility function for loading Discord chunks
This commit is contained in:
parent
867730a478
commit
af3fc28629
4 changed files with 100 additions and 55 deletions
|
@ -406,15 +406,21 @@ function runTime(token: string) {
|
||||||
if (method === "proxyLazyWebpack" || method === "LazyComponentWebpack") {
|
if (method === "proxyLazyWebpack" || method === "LazyComponentWebpack") {
|
||||||
const [factory] = args;
|
const [factory] = args;
|
||||||
result = factory();
|
result = factory();
|
||||||
|
} else if (method === "extractAndLoadChunks") {
|
||||||
|
const [code, matcher] = args;
|
||||||
|
|
||||||
|
const module = Vencord.Webpack.findModule(...code);
|
||||||
|
if (module) result = module.toString().match(matcher);
|
||||||
} else {
|
} else {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
result = Vencord.Webpack[method](...args);
|
result = Vencord.Webpack[method](...args);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result == null || ("$$get" in result && result.$$get() == null)) throw "a rock at ben shapiro";
|
if (result == null || ("$$vencordInternal" in result && result.$$vencordInternal() == null)) throw "a rock at ben shapiro";
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
let logMessage = searchType;
|
let logMessage = searchType;
|
||||||
if (method === "find" || method === "proxyLazyWebpack" || method === "LazyComponentWebpack") logMessage += `(${args[0].toString().slice(0, 147)}...)`;
|
if (method === "find" || method === "proxyLazyWebpack" || method === "LazyComponentWebpack") logMessage += `(${args[0].toString().slice(0, 147)}...)`;
|
||||||
|
else if (method === "extractAndLoadChunks") logMessage += `([${args[0].map(arg => `"${arg}"`).join(", ")}], ${args[1].toString()})`;
|
||||||
else logMessage += `(${args.map(arg => `"${arg}"`).join(", ")})`;
|
else logMessage += `(${args.map(arg => `"${arg}"`).join(", ")})`;
|
||||||
|
|
||||||
console.log("[PUP_WEBPACK_FIND_FAIL]", logMessage);
|
console.log("[PUP_WEBPACK_FIND_FAIL]", logMessage);
|
||||||
|
|
|
@ -23,7 +23,7 @@ export function LazyComponent<T extends object = any>(factory: () => React.Compo
|
||||||
return <Component {...props} />;
|
return <Component {...props} />;
|
||||||
};
|
};
|
||||||
|
|
||||||
LazyComponent.$$get = get;
|
LazyComponent.$$vencordInternal = get;
|
||||||
|
|
||||||
return LazyComponent as ComponentType<T>;
|
return LazyComponent as ComponentType<T>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,11 +152,9 @@ function patchFactories(factories: Record<string | number, (module: { exports: a
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const numberId = Number(id);
|
|
||||||
|
|
||||||
for (const callback of listeners) {
|
for (const callback of listeners) {
|
||||||
try {
|
try {
|
||||||
callback(exports, numberId);
|
callback(exports, id);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error("Error in webpack listener", err);
|
logger.error("Error in webpack listener", err);
|
||||||
}
|
}
|
||||||
|
@ -166,10 +164,10 @@ function patchFactories(factories: Record<string | number, (module: { exports: a
|
||||||
try {
|
try {
|
||||||
if (filter(exports)) {
|
if (filter(exports)) {
|
||||||
subscriptions.delete(filter);
|
subscriptions.delete(filter);
|
||||||
callback(exports, numberId);
|
callback(exports, id);
|
||||||
} else if (exports.default && filter(exports.default)) {
|
} else if (exports.default && filter(exports.default)) {
|
||||||
subscriptions.delete(filter);
|
subscriptions.delete(filter);
|
||||||
callback(exports.default, numberId);
|
callback(exports.default, id);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error("Error while firing callback for webpack chunk", err);
|
logger.error("Error while firing callback for webpack chunk", err);
|
||||||
|
|
|
@ -69,7 +69,7 @@ export const filters = {
|
||||||
export const subscriptions = new Map<FilterFn, CallbackFn>();
|
export const subscriptions = new Map<FilterFn, CallbackFn>();
|
||||||
export const listeners = new Set<CallbackFn>();
|
export const listeners = new Set<CallbackFn>();
|
||||||
|
|
||||||
export type CallbackFn = (mod: any, id: number) => void;
|
export type CallbackFn = (mod: any, id: string) => void;
|
||||||
|
|
||||||
export function _initWebpack(instance: typeof window.webpackChunkdiscord_app) {
|
export function _initWebpack(instance: typeof window.webpackChunkdiscord_app) {
|
||||||
if (cache !== void 0) throw "no.";
|
if (cache !== void 0) throw "no.";
|
||||||
|
@ -111,12 +111,12 @@ export const find = traceFunction("find", function find(filter: FilterFn, { isIn
|
||||||
if (!mod?.exports) continue;
|
if (!mod?.exports) continue;
|
||||||
|
|
||||||
if (filter(mod.exports)) {
|
if (filter(mod.exports)) {
|
||||||
return isWaitFor ? [mod.exports, Number(key)] : mod.exports;
|
return isWaitFor ? [mod.exports, key] : mod.exports;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mod.exports.default && filter(mod.exports.default)) {
|
if (mod.exports.default && filter(mod.exports.default)) {
|
||||||
const found = mod.exports.default;
|
const found = mod.exports.default;
|
||||||
return isWaitFor ? [found, Number(key)] : found;
|
return isWaitFor ? [found, key] : found;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,11 +202,11 @@ export const findBulk = traceFunction("findBulk", function findBulk(...filterFns
|
||||||
if (found !== length) {
|
if (found !== length) {
|
||||||
const err = new Error(`Got ${length} filters, but only found ${found} modules!`);
|
const err = new Error(`Got ${length} filters, but only found ${found} modules!`);
|
||||||
if (IS_DEV) {
|
if (IS_DEV) {
|
||||||
|
logger.warn(err);
|
||||||
|
|
||||||
if (!devToolsOpen)
|
if (!devToolsOpen)
|
||||||
// Strict behaviour in DevBuilds to fail early and make sure the issue is found
|
// Strict behaviour in DevBuilds to fail early and make sure the issue is found
|
||||||
throw err;
|
throw err;
|
||||||
} else {
|
|
||||||
logger.warn(err);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,30 +214,44 @@ export const findBulk = traceFunction("findBulk", function findBulk(...filterFns
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find the id of a module by its code
|
* Find the id of the first module factory that includes all the given code
|
||||||
* @param code Code
|
* @returns string or null
|
||||||
* @returns number or null
|
|
||||||
*/
|
*/
|
||||||
export const findModuleId = traceFunction("findModuleId", function findModuleId(code: string) {
|
export const findModuleId = traceFunction("findModuleId", function findModuleId(...code: string[]) {
|
||||||
|
const filter = filters.byCode(...code);
|
||||||
|
|
||||||
for (const id in wreq.m) {
|
for (const id in wreq.m) {
|
||||||
if (wreq.m[id].toString().includes(code)) {
|
const mod = wreq.m[id].original ?? wreq.m[id];
|
||||||
return Number(id);
|
|
||||||
|
if (filter(mod)) {
|
||||||
|
return id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const err = new Error("Didn't find module with code:\n" + code);
|
const err = new Error("Didn't find module with code(s):\n" + code.join("\n"));
|
||||||
if (IS_DEV) {
|
if (IS_DEV) {
|
||||||
|
logger.warn(err);
|
||||||
|
|
||||||
if (!devToolsOpen)
|
if (!devToolsOpen)
|
||||||
// Strict behaviour in DevBuilds to fail early and make sure the issue is found
|
// Strict behaviour in DevBuilds to fail early and make sure the issue is found
|
||||||
throw err;
|
throw err;
|
||||||
} else {
|
|
||||||
logger.warn(err);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|
||||||
export const lazyWebpackSearchHistory = [] as Array<["find" | "findByProps" | "findByCode" | "findStore" | "findComponent" | "findComponentByCode" | "findExportedComponent" | "waitFor" | "waitForComponent" | "waitForStore" | "proxyLazyWebpack" | "LazyComponentWebpack", any[]]>;
|
/**
|
||||||
|
* Find the first module factory that includes all the given code
|
||||||
|
* @returns The module factory or null
|
||||||
|
*/
|
||||||
|
export function findModule(...code: string[]) {
|
||||||
|
const id = findModuleId(...code);
|
||||||
|
if (!id) return null;
|
||||||
|
|
||||||
|
return wreq.m[id].original ?? wreq.m[id];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const lazyWebpackSearchHistory = [] as Array<["find" | "findByProps" | "findByCode" | "findStore" | "findComponent" | "findComponentByCode" | "findExportedComponent" | "waitFor" | "waitForComponent" | "waitForStore" | "proxyLazyWebpack" | "LazyComponentWebpack" | "extractAndLoadChunks", any[]]>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is just a wrapper around {@link proxyLazy} to make our reporter test for your webpack finds.
|
* This is just a wrapper around {@link proxyLazy} to make our reporter test for your webpack finds.
|
||||||
|
@ -272,7 +286,7 @@ export function LazyComponentWebpack<T extends object = any>(factory: () => any,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* find but lazy
|
* Find the first module that matches the filter, lazily
|
||||||
*/
|
*/
|
||||||
export function findLazy(filter: FilterFn) {
|
export function findLazy(filter: FilterFn) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["find", [filter]]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["find", [filter]]);
|
||||||
|
@ -280,18 +294,20 @@ export function findLazy(filter: FilterFn) {
|
||||||
return proxyLazy(() => find(filter));
|
return proxyLazy(() => find(filter));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
function indirectFind(name: string, filter: FilterFn) {
|
||||||
* Find the first module that has the specified properties
|
const res = find(filter, { isIndirect: true });
|
||||||
*/
|
|
||||||
export function findByProps(...props: string[]) {
|
|
||||||
const res = find(filters.byProps(...props), { isIndirect: true });
|
|
||||||
if (!res)
|
if (!res)
|
||||||
handleModuleNotFound("findByProps", ...props);
|
handleModuleNotFound(name, filter);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* findByProps but lazy
|
* Find the first module that has the specified properties
|
||||||
|
*/
|
||||||
|
export const findByProps = (...props: string[]) => indirectFind("findByProps", filters.byProps(...props));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find the first module that has the specified properties, lazily
|
||||||
*/
|
*/
|
||||||
export function findByPropsLazy(...props: string[]) {
|
export function findByPropsLazy(...props: string[]) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findByProps", props]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findByProps", props]);
|
||||||
|
@ -300,17 +316,12 @@ export function findByPropsLazy(...props: string[]) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find a function by its code
|
* Find the first function that includes all the given code
|
||||||
*/
|
*/
|
||||||
export function findByCode(...code: string[]) {
|
const findByCode = (...code: string[]) => indirectFind("findByCode", filters.byCode(...code));
|
||||||
const res = find(filters.byCode(...code), { isIndirect: true });
|
|
||||||
if (!res)
|
|
||||||
handleModuleNotFound("findByCode", ...code);
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* findByCode but lazy
|
* Find the first function that includes all the given code, lazily
|
||||||
*/
|
*/
|
||||||
export function findByCodeLazy(...code: string[]) {
|
export function findByCodeLazy(...code: string[]) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findByCode", code]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findByCode", code]);
|
||||||
|
@ -321,15 +332,10 @@ export function findByCodeLazy(...code: string[]) {
|
||||||
/**
|
/**
|
||||||
* Find a store by its displayName
|
* Find a store by its displayName
|
||||||
*/
|
*/
|
||||||
export function findStore(name: string) {
|
export const findStore = (name: string) => indirectFind("findStore", filters.byStoreName(name));
|
||||||
const res = find(filters.byStoreName(name), { isIndirect: true });
|
|
||||||
if (!res)
|
|
||||||
handleModuleNotFound("findStore", name);
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* findStore but lazy
|
* Find a store by its displayName, lazily
|
||||||
*/
|
*/
|
||||||
export function findStoreLazy(name: string) {
|
export function findStoreLazy(name: string) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findStore", [name]]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findStore", [name]]);
|
||||||
|
@ -340,12 +346,7 @@ export function findStoreLazy(name: string) {
|
||||||
/**
|
/**
|
||||||
* Finds the component which includes all the given code. Checks for plain components, memos and forwardRefs
|
* Finds the component which includes all the given code. Checks for plain components, memos and forwardRefs
|
||||||
*/
|
*/
|
||||||
export function findComponentByCode(...code: string[]) {
|
export const findComponentByCode = (...code: string[]) => indirectFind("findComponentByCode", filters.componentByCode(...code));
|
||||||
const res = find(filters.componentByCode(...code), { isIndirect: true });
|
|
||||||
if (!res)
|
|
||||||
handleModuleNotFound("findComponentByCode", ...code);
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds the first component that matches the filter, lazily.
|
* Finds the first component that matches the filter, lazily.
|
||||||
|
@ -353,16 +354,17 @@ export function findComponentByCode(...code: string[]) {
|
||||||
export function findComponentLazy<T extends object = any>(filter: FilterFn) {
|
export function findComponentLazy<T extends object = any>(filter: FilterFn) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findComponent", [filter]]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findComponent", [filter]]);
|
||||||
|
|
||||||
return LazyComponent<T>(() => find(filter));
|
return LazyComponent<T>(() => indirectFind("findComponent", filter));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds the first component that includes all the given code, lazily
|
* Finds the first component that includes all the given code, lazily
|
||||||
*/
|
*/
|
||||||
export function findComponentByCodeLazy<T extends object = any>(...code: string[]) {
|
export function findComponentByCodeLazy<T extends object = any>(...code: string[]) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findComponentByCode", code]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findComponentByCode", code]);
|
||||||
|
|
||||||
return LazyComponent<T>(() => findComponentByCode(...code));
|
return LazyComponent<T>(() => indirectFind("findComponentByCode", filters.componentByCode(...code)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -371,7 +373,46 @@ export function findComponentByCodeLazy<T extends object = any>(...code: string[
|
||||||
export function findExportedComponentLazy<T extends object = any>(...props: string[]) {
|
export function findExportedComponentLazy<T extends object = any>(...props: string[]) {
|
||||||
if (IS_DEV) lazyWebpackSearchHistory.push(["findExportedComponent", props]);
|
if (IS_DEV) lazyWebpackSearchHistory.push(["findExportedComponent", props]);
|
||||||
|
|
||||||
return LazyComponent<T>(() => findByProps(...props)?.[props[0]]);
|
return LazyComponent<T>(() => indirectFind("findExportedComponent", filters.byProps(...props))?.[props[0]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extract and load chunks using their entry point
|
||||||
|
* @param code An array of all the code the module factory containing entry point (as of using it to load chunks) must include
|
||||||
|
* @param matcher A RegExp that returns the entry point id as the first capture group
|
||||||
|
*/
|
||||||
|
export async function extractAndLoadChunks(code: string[], matcher: RegExp) {
|
||||||
|
const module = findModule(...code);
|
||||||
|
|
||||||
|
const match = module.toString().match(matcher);
|
||||||
|
if (!match) {
|
||||||
|
if (IS_DEV) {
|
||||||
|
const err = new Error("extractAndLoadChunks: Couldn't find entry point id in module factory code");
|
||||||
|
logger.warn(err, "Code:", code.join(", "), "Matcher:", matcher);
|
||||||
|
|
||||||
|
if (!devToolsOpen)
|
||||||
|
// Strict behaviour in DevBuilds to fail early and make sure the issue is found
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const [, id] = match;
|
||||||
|
return (wreq as any).el(id).then(wreq.bind(wreq, id as any));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is just a wrapper around {@link extractAndLoadChunks} to make our reporter test for your webpack finds.
|
||||||
|
*
|
||||||
|
* Extract and load chunks using their entry point
|
||||||
|
* @param code An array of all the code the module factory containing entry point (as of using it to load chunks) must include
|
||||||
|
* @param matcher A RegExp that returns the entry point id as the first capture group
|
||||||
|
* @returns A function that loads the chunks on first call
|
||||||
|
*/
|
||||||
|
export async function extractAndLoadChunksLazy(code: string[], matcher: RegExp) {
|
||||||
|
if (IS_DEV) lazyWebpackSearchHistory.push(["extractAndLoadChunks", [code, matcher]]);
|
||||||
|
|
||||||
|
return () => extractAndLoadChunks(code, matcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -433,7 +474,7 @@ export function search(...filters: Array<string | RegExp>) {
|
||||||
* so putting breakpoints or similar will have no effect.
|
* so putting breakpoints or similar will have no effect.
|
||||||
* @param id The id of the module to extract
|
* @param id The id of the module to extract
|
||||||
*/
|
*/
|
||||||
export function extract(id: number) {
|
export function extract(id: string | number) {
|
||||||
const mod = wreq.m[id] as Function;
|
const mod = wreq.m[id] as Function;
|
||||||
if (!mod) return null;
|
if (!mod) return null;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue