refactor: sync emulation settings (#10865)

This commit is contained in:
Alex Rudenko 2023-09-11 17:39:35 +02:00 committed by GitHub
parent eb89720704
commit d1b1b10910
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,14 +41,49 @@ interface TimezoneState {
active: boolean; active: boolean;
} }
interface VisionDeficiencyState {
visionDeficiency?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type'];
active: boolean;
}
interface CpuThrottlingState {
factor?: number;
active: boolean;
}
interface MediaFeaturesState {
mediaFeatures?: MediaFeature[];
active: boolean;
}
interface MediaTypeState {
type?: string;
active: boolean;
}
interface GeoLocationState {
geoLocation?: GeolocationOptions;
active: boolean;
}
interface DefaultBackgroundColorState {
color?: Protocol.DOM.RGBA;
active: boolean;
}
interface JavascriptEnabledState {
javaScriptEnabled: boolean;
active: boolean;
}
/** /**
* @internal * @internal
*/ */
export class EmulationManager { export class EmulationManager {
#client: CDPSession; #client: CDPSession;
#emulatingMobile = false; #emulatingMobile = false;
#hasTouch = false; #hasTouch = false;
#javascriptEnabled = true;
#viewportState: ViewportState = {}; #viewportState: ViewportState = {};
#idleOverridesState: IdleOverridesState = { #idleOverridesState: IdleOverridesState = {
@ -57,6 +92,29 @@ export class EmulationManager {
#timezoneState: TimezoneState = { #timezoneState: TimezoneState = {
active: false, active: false,
}; };
#visionDeficiencyState: VisionDeficiencyState = {
active: false,
};
#cpuThrottlingState: CpuThrottlingState = {
active: false,
};
#mediaFeaturesState: MediaFeaturesState = {
active: false,
};
#mediaTypeState: MediaTypeState = {
active: false,
};
#geoLocationState: GeoLocationState = {
active: false,
};
#defaultBackgroundColorState: DefaultBackgroundColorState = {
active: false,
};
#javascriptEnabledState: JavascriptEnabledState = {
javaScriptEnabled: true,
active: false,
};
#secondaryClients = new Set<CDPSession>(); #secondaryClients = new Set<CDPSession>();
constructor(client: CDPSession) { constructor(client: CDPSession) {
@ -78,10 +136,17 @@ export class EmulationManager {
void this.#syncViewport().catch(debugError); void this.#syncViewport().catch(debugError);
void this.#syncIdleState().catch(debugError); void this.#syncIdleState().catch(debugError);
void this.#syncTimezoneState().catch(debugError); void this.#syncTimezoneState().catch(debugError);
void this.#syncVisionDeficiencyState().catch(debugError);
void this.#syncCpuThrottlingState().catch(debugError);
void this.#syncMediaFeaturesState().catch(debugError);
void this.#syncMediaTypeState().catch(debugError);
void this.#syncGeoLocationState().catch(debugError);
void this.#syncDefaultBackgroundColorState().catch(debugError);
void this.#syncJavaScriptEnabledState().catch(debugError);
} }
get javascriptEnabled(): boolean { get javascriptEnabled(): boolean {
return this.#javascriptEnabled; return this.#javascriptEnabledState.javaScriptEnabled;
} }
async emulateViewport(viewport: Viewport): Promise<boolean> { async emulateViewport(viewport: Viewport): Promise<boolean> {
@ -181,6 +246,7 @@ export class EmulationManager {
} }
} }
@invokeAtMostOnceForArguments
async #emulateTimezone( async #emulateTimezone(
client: CDPSession, client: CDPSession,
timezoneState: TimezoneState timezoneState: TimezoneState
@ -217,6 +283,31 @@ export class EmulationManager {
await this.#syncTimezoneState(); await this.#syncTimezoneState();
} }
@invokeAtMostOnceForArguments
async #emulateVisionDeficiency(
client: CDPSession,
visionDeficiency: VisionDeficiencyState
): Promise<void> {
if (!visionDeficiency.active) {
return;
}
await client.send('Emulation.setEmulatedVisionDeficiency', {
type: visionDeficiency.visionDeficiency || 'none',
});
}
async #syncVisionDeficiencyState() {
await Promise.all([
this.#emulateVisionDeficiency(this.#client, this.#visionDeficiencyState),
...Array.from(this.#secondaryClients).map(client => {
return this.#emulateVisionDeficiency(
client,
this.#visionDeficiencyState
);
}),
]);
}
async emulateVisionDeficiency( async emulateVisionDeficiency(
type?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type'] type?: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest['type']
): Promise<void> { ): Promise<void> {
@ -230,17 +321,37 @@ export class EmulationManager {
'protanopia', 'protanopia',
'tritanopia', 'tritanopia',
]); ]);
try {
assert( assert(
!type || visionDeficiencies.has(type), !type || visionDeficiencies.has(type),
`Unsupported vision deficiency: ${type}` `Unsupported vision deficiency: ${type}`
); );
await this.#client.send('Emulation.setEmulatedVisionDeficiency', { this.#visionDeficiencyState = {
type: type || 'none', active: true,
}); visionDeficiency: type,
} catch (error) { };
throw error; await this.#syncVisionDeficiencyState();
} }
@invokeAtMostOnceForArguments
async #emulateCpuThrottling(
client: CDPSession,
state: CpuThrottlingState
): Promise<void> {
if (!state.active) {
return;
}
await client.send('Emulation.setCPUThrottlingRate', {
rate: state.factor ?? 1,
});
}
async #syncCpuThrottlingState() {
await Promise.all([
this.#emulateCpuThrottling(this.#client, this.#cpuThrottlingState),
...Array.from(this.#secondaryClients).map(client => {
return this.#emulateCpuThrottling(client, this.#cpuThrottlingState);
}),
]);
} }
async emulateCPUThrottling(factor: number | null): Promise<void> { async emulateCPUThrottling(factor: number | null): Promise<void> {
@ -248,15 +359,36 @@ export class EmulationManager {
factor === null || factor >= 1, factor === null || factor >= 1,
'Throttling rate should be greater or equal to 1' 'Throttling rate should be greater or equal to 1'
); );
await this.#client.send('Emulation.setCPUThrottlingRate', { this.#cpuThrottlingState = {
rate: factor ?? 1, active: true,
factor: factor ?? undefined,
};
await this.#syncCpuThrottlingState();
}
@invokeAtMostOnceForArguments
async #emulateMediaFeatures(
client: CDPSession,
state: MediaFeaturesState
): Promise<void> {
if (!state.active) {
return;
}
await client.send('Emulation.setEmulatedMedia', {
features: state.mediaFeatures,
}); });
} }
async emulateMediaFeatures(features?: MediaFeature[]): Promise<void> { async #syncMediaFeaturesState() {
if (!features) { await Promise.all([
await this.#client.send('Emulation.setEmulatedMedia', {}); this.#emulateMediaFeatures(this.#client, this.#mediaFeaturesState),
...Array.from(this.#secondaryClients).map(client => {
return this.#emulateMediaFeatures(client, this.#mediaFeaturesState);
}),
]);
} }
async emulateMediaFeatures(features?: MediaFeature[]): Promise<void> {
if (Array.isArray(features)) { if (Array.isArray(features)) {
for (const mediaFeature of features) { for (const mediaFeature of features) {
const name = mediaFeature.name; const name = mediaFeature.name;
@ -267,10 +399,34 @@ export class EmulationManager {
'Unsupported media feature: ' + name 'Unsupported media feature: ' + name
); );
} }
await this.#client.send('Emulation.setEmulatedMedia', { }
features: features, this.#mediaFeaturesState = {
active: true,
mediaFeatures: features,
};
await this.#syncMediaFeaturesState();
}
@invokeAtMostOnceForArguments
async #emulateMediaType(
client: CDPSession,
state: MediaTypeState
): Promise<void> {
if (!state.active) {
return;
}
await client.send('Emulation.setEmulatedMedia', {
media: state.type || '',
}); });
} }
async #syncMediaTypeState() {
await Promise.all([
this.#emulateMediaType(this.#client, this.#mediaTypeState),
...Array.from(this.#secondaryClients).map(client => {
return this.#emulateMediaType(client, this.#mediaTypeState);
}),
]);
} }
async emulateMediaType(type?: string): Promise<void> { async emulateMediaType(type?: string): Promise<void> {
@ -280,9 +436,40 @@ export class EmulationManager {
(type ?? undefined) === undefined, (type ?? undefined) === undefined,
'Unsupported media type: ' + type 'Unsupported media type: ' + type
); );
await this.#client.send('Emulation.setEmulatedMedia', { this.#mediaTypeState = {
media: type || '', type,
}); active: true,
};
await this.#syncMediaTypeState();
}
@invokeAtMostOnceForArguments
async #setGeolocation(
client: CDPSession,
state: GeoLocationState
): Promise<void> {
if (!state.active) {
return;
}
await client.send(
'Emulation.setGeolocationOverride',
state.geoLocation
? {
longitude: state.geoLocation.longitude,
latitude: state.geoLocation.latitude,
accuracy: state.geoLocation.accuracy,
}
: undefined
);
}
async #syncGeoLocationState() {
await Promise.all([
this.#setGeolocation(this.#client, this.#geoLocationState),
...Array.from(this.#secondaryClients).map(client => {
return this.#setGeolocation(client, this.#geoLocationState);
}),
]);
} }
async setGeolocation(options: GeolocationOptions): Promise<void> { async setGeolocation(options: GeolocationOptions): Promise<void> {
@ -302,36 +489,94 @@ export class EmulationManager {
`Invalid accuracy "${accuracy}": precondition 0 <= ACCURACY failed.` `Invalid accuracy "${accuracy}": precondition 0 <= ACCURACY failed.`
); );
} }
await this.#client.send('Emulation.setGeolocationOverride', { this.#geoLocationState = {
active: true,
geoLocation: {
longitude, longitude,
latitude, latitude,
accuracy, accuracy,
},
};
await this.#syncGeoLocationState();
}
@invokeAtMostOnceForArguments
async #setDefaultBackgroundColor(
client: CDPSession,
state: DefaultBackgroundColorState
): Promise<void> {
if (!state.active) {
return;
}
await client.send('Emulation.setDefaultBackgroundColorOverride', {
color: state.color,
}); });
} }
async #syncDefaultBackgroundColorState() {
await Promise.all([
this.#setDefaultBackgroundColor(
this.#client,
this.#defaultBackgroundColorState
),
...Array.from(this.#secondaryClients).map(client => {
return this.#setDefaultBackgroundColor(
client,
this.#defaultBackgroundColorState
);
}),
]);
}
/** /**
* Resets default white background * Resets default white background
*/ */
async resetDefaultBackgroundColor(): Promise<void> { async resetDefaultBackgroundColor(): Promise<void> {
await this.#client.send('Emulation.setDefaultBackgroundColorOverride'); this.#defaultBackgroundColorState = {
active: true,
color: undefined,
};
await this.#syncDefaultBackgroundColorState();
} }
/** /**
* Hides default white background * Hides default white background
*/ */
async setTransparentBackgroundColor(): Promise<void> { async setTransparentBackgroundColor(): Promise<void> {
await this.#client.send('Emulation.setDefaultBackgroundColorOverride', { this.#defaultBackgroundColorState = {
active: true,
color: {r: 0, g: 0, b: 0, a: 0}, color: {r: 0, g: 0, b: 0, a: 0},
};
await this.#syncDefaultBackgroundColorState();
}
@invokeAtMostOnceForArguments
async #setJavaScriptEnabled(
client: CDPSession,
state: JavascriptEnabledState
): Promise<void> {
if (!state.active) {
return;
}
await client.send('Emulation.setScriptExecutionDisabled', {
value: !state.javaScriptEnabled,
}); });
} }
async #syncJavaScriptEnabledState() {
await Promise.all([
this.#setJavaScriptEnabled(this.#client, this.#javascriptEnabledState),
...Array.from(this.#secondaryClients).map(client => {
return this.#setJavaScriptEnabled(client, this.#javascriptEnabledState);
}),
]);
}
async setJavaScriptEnabled(enabled: boolean): Promise<void> { async setJavaScriptEnabled(enabled: boolean): Promise<void> {
if (this.#javascriptEnabled === enabled) { this.#javascriptEnabledState = {
return; active: true,
} javaScriptEnabled: enabled,
this.#javascriptEnabled = enabled; };
await this.#client.send('Emulation.setScriptExecutionDisabled', { await this.#syncJavaScriptEnabledState();
value: !enabled,
});
} }
} }