@ -243,19 +243,27 @@ page.on("console", async e => {
}
}
}
}
if ( isDebug ) {
async function getText() {
console . error ( e . text ( ) ) ;
try {
} else if ( level === "error" ) {
return await Promise . all (
const text = await Promise . all (
e . args ( ) . map ( async a = > {
e . args ( ) . map ( async a = > {
try {
return await maybeGetError ( a ) || await a . jsonValue ( ) ;
return await maybeGetError ( a ) || await a . jsonValue ( ) ;
} catch ( e ) {
} )
return a . toString ( ) ;
) . then ( a = > a . join ( " " ) . trim ( ) ) ;
}
} catch {
} )
return e . text ( ) ;
) . then ( a = > a . join ( " " ) . trim ( ) ) ;
}
}
if ( isDebug ) {
const text = await getText ( ) ;
console . error ( text ) ;
if ( text . includes ( "A fatal error occurred:" ) ) {
process . exit ( 1 ) ;
}
} else if ( level === "error" ) {
const text = await getText ( ) ;
if ( text . length && ! text . startsWith ( "Failed to load resource: the server responded with a status of" ) && ! text . includes ( "Webpack" ) ) {
if ( text . length && ! text . startsWith ( "Failed to load resource: the server responded with a status of" ) && ! text . includes ( "Webpack" ) ) {
console . error ( "[Unexpected Error]" , text ) ;
console . error ( "[Unexpected Error]" , text ) ;
@ -322,22 +330,31 @@ async function runtime(token: string) {
const validChunks = new Set < string > ( ) ;
const validChunks = new Set < string > ( ) ;
const invalidChunks = new Set < string > ( ) ;
const invalidChunks = new Set < string > ( ) ;
const deferredRequires = new Set < string > ( ) ;
let chunksSearchingResolve : ( value : void | PromiseLike < void > ) = > void ;
let chunksSearchingResolve : ( value : void | PromiseLike < void > ) = > void ;
const chunksSearchingDone = new Promise < void > ( r = > chunksSearchingResolve = r ) ;
const chunksSearchingDone = new Promise < void > ( r = > chunksSearchingResolve = r ) ;
// True if resolved, false otherwise
// True if resolved, false otherwise
const chunksSearchPromises = [ ] as Array < ( ) = > boolean > ;
const chunksSearchPromises = [ ] as Array < ( ) = > boolean > ;
const lazyChunkRegex = canonicalizeMatch ( /Promise\.all\((\[\i\.\i\(".+?"\).+?\])\).then\(\i\.bind\(\i,"(.+?)"\)\)/g ) ;
const chunkIds Regex = canonicalizeMatch ( / \("(.+?)"\)/g) ;
const LazyChunk Regex = canonicalizeMatch ( / (?:Promise\.all\(\[(\i\.\i \("[^)]+?"\)[^\]]+?)\]\)| (\i\ .\i\("[^)] +?"\)) )\.then\(\i\.bind\(\i, "([^)]+?)"\) \)/g) ;
async function searchAndLoadLazyChunks ( factoryCode : string ) {
async function searchAndLoadLazyChunks ( factoryCode : string ) {
const lazyChunks = factoryCode . matchAll ( l azyChunkRegex) ;
const lazyChunks = factoryCode . matchAll ( L azyChunkRegex) ;
const validChunkGroups = new Set < [ chunkIds : string [ ] , entryPoint : string ] > ( ) ;
const validChunkGroups = new Set < [ chunkIds : string [ ] , entryPoint : string ] > ( ) ;
await Promise . all ( Array . from ( lazyChunks ) . map ( async ( [ , rawChunkIds , entryPoint ] ) = > {
// Workaround for a chunk that depends on the ChannelMessage component but may be be force loaded before
const chunkIds = Array . from ( rawChunkIds . matchAll ( chunkIdsRegex ) ) . map ( m = > m [ 1 ] ) ;
// the chunk containing the component
if ( chunkIds . length === 0 ) return ;
const shouldForceDefer = factoryCode . includes ( ".Messages.GUILD_FEED_UNFEATURE_BUTTON_TEXT" ) ;
await Promise . all ( Array . from ( lazyChunks ) . map ( async ( [ , rawChunkIdsArray , rawChunkIdsSingle , entryPoint ] ) = > {
const rawChunkIds = rawChunkIdsArray ? ? rawChunkIdsSingle ;
const chunkIds = rawChunkIds ? Array . from ( rawChunkIds . matchAll ( Vencord . Webpack . ChunkIdsRegex ) ) . map ( m = > m [ 1 ] ) : [ ] ;
if ( chunkIds . length === 0 ) {
return ;
}
let invalidChunkGroup = false ;
let invalidChunkGroup = false ;
@ -373,6 +390,11 @@ async function runtime(token: string) {
// Requires the entry points for all valid chunk groups
// Requires the entry points for all valid chunk groups
for ( const [ , entryPoint ] of validChunkGroups ) {
for ( const [ , entryPoint ] of validChunkGroups ) {
try {
try {
if ( shouldForceDefer ) {
deferredRequires . add ( entryPoint ) ;
continue ;
}
if ( wreq . m [ entryPoint ] ) wreq ( entryPoint as any ) ;
if ( wreq . m [ entryPoint ] ) wreq ( entryPoint as any ) ;
} catch ( err ) {
} catch ( err ) {
console . error ( err ) ;
console . error ( err ) ;
@ -435,6 +457,11 @@ async function runtime(token: string) {
await chunksSearchingDone ;
await chunksSearchingDone ;
// Require deferred entry points
for ( const deferredRequire of deferredRequires ) {
wreq ! ( deferredRequire as any ) ;
}
// All chunks Discord has mapped to asset files, even if they are not used anymore
// All chunks Discord has mapped to asset files, even if they are not used anymore
const allChunks = [ ] as string [ ] ;
const allChunks = [ ] as string [ ] ;
@ -514,7 +541,6 @@ async function runtime(token: string) {
setTimeout ( ( ) = > console . log ( "[PUPPETEER_TEST_DONE_SIGNAL]" ) , 1000 ) ;
setTimeout ( ( ) = > console . log ( "[PUPPETEER_TEST_DONE_SIGNAL]" ) , 1000 ) ;
} catch ( e ) {
} catch ( e ) {
console . log ( "[PUP_DEBUG]" , "A fatal error occurred:" , e ) ;
console . log ( "[PUP_DEBUG]" , "A fatal error occurred:" , e ) ;
process . exit ( 1 ) ;
}
}
}
}