|
|
import { |
|
|
deviceMemory, |
|
|
performanceTiming, |
|
|
environment, |
|
|
networkInformation, |
|
|
fullPageStart, |
|
|
inlineStart, |
|
|
pageVisibilityStart, |
|
|
pageVisibilityStop, |
|
|
blockingResources, |
|
|
} from './collectors'; |
|
|
import type { Collector, Report, ReportData, ReportPayload } from './types'; |
|
|
|
|
|
export class ReportImpl implements Report { |
|
|
id: string; |
|
|
url: string; |
|
|
beginning!: number; |
|
|
end?: number; |
|
|
data: ReportData = new Map(); |
|
|
startCollectors!: Collector[]; |
|
|
stopCollectors!: Collector[]; |
|
|
|
|
|
|
|
|
body = null; |
|
|
type = 'intervention'; |
|
|
|
|
|
toJSON() {} |
|
|
|
|
|
static async fromNow( id: string, collectors: Collector[] = [] ): Promise< Report > { |
|
|
const report = new ReportImpl( id, false ); |
|
|
await report.start( collectors ); |
|
|
return report; |
|
|
} |
|
|
|
|
|
static async fromPageStart( id: string, collectors: Collector[] = [] ): Promise< ReportImpl > { |
|
|
const report = new ReportImpl( id, true ); |
|
|
await report.start( collectors ); |
|
|
return report; |
|
|
} |
|
|
|
|
|
private constructor( id: string, isInitial: boolean ) { |
|
|
this.id = id; |
|
|
this.url = document.location.href; |
|
|
const commonStartCollectors = [ pageVisibilityStart ]; |
|
|
const commonStopCollectors = [ |
|
|
deviceMemory, |
|
|
environment, |
|
|
pageVisibilityStop, |
|
|
networkInformation, |
|
|
]; |
|
|
|
|
|
if ( isInitial ) { |
|
|
this.startCollectors = [ fullPageStart, ...commonStartCollectors ]; |
|
|
this.stopCollectors = [ performanceTiming, blockingResources, ...commonStopCollectors ]; |
|
|
} else { |
|
|
this.startCollectors = [ inlineStart, ...commonStartCollectors ]; |
|
|
this.stopCollectors = [ ...commonStopCollectors ]; |
|
|
} |
|
|
} |
|
|
|
|
|
private async runCollectors( collectors: Collector[] ) { |
|
|
return Promise.all( |
|
|
collectors.map( ( collector, idx ) => { |
|
|
try { |
|
|
return collector( this ); |
|
|
} catch ( err ) { |
|
|
|
|
|
|
|
|
console.warn( `Collector #${ idx } for report ${ this.id } failed to run`, err ); |
|
|
return null; |
|
|
} |
|
|
} ) |
|
|
); |
|
|
} |
|
|
|
|
|
private async start( collectors: Collector[] = [] ) { |
|
|
await this.runCollectors( [ ...this.startCollectors, ...collectors ] ); |
|
|
return this; |
|
|
} |
|
|
|
|
|
async stop( collectors: Collector[] = [] ): Promise< ReportPayload > { |
|
|
this.end = Date.now(); |
|
|
await this.runCollectors( [ ...this.stopCollectors, ...collectors ] ); |
|
|
|
|
|
|
|
|
const data = Array.from( this.data.entries() ).reduce( |
|
|
( acc, [ k, v ] ) => ( { ...acc, [ k ]: v } ), |
|
|
{} |
|
|
); |
|
|
|
|
|
return { |
|
|
id: this.id, |
|
|
duration: this.end - this.beginning, |
|
|
...data, |
|
|
}; |
|
|
} |
|
|
} |
|
|
|