This commit resolves the issue with the `:active` pseudo-class not
activating in mobile Safari on iOS devices. It introduces a workaround
specifically for mobile Safari on iOS/iPadOS to enable the `:active`
pseudo-class. This ensures a consistent and responsive user interface
in response to touch states on mobile Safari.
Other supporting changes:
- Introduce new test utility functions such as `createWindowEventSpies`
and `formatAssertionMessage` to improve code reusability and
maintainability.
- Improve browser detection:
- Add detection for iPadOS and Windows 10 Mobile.
- Add touch support detection to correctly determine iPadOS vs macOS.
- Fix misidentification of some Windows 10 Mobile platforms as Windows
Phone.
- Improve test coverage and refactor tests.
33 lines
877 B
TypeScript
33 lines
877 B
TypeScript
import { Logger } from '@/application/Common/Log/Logger';
|
|
import { WindowVariables } from '../WindowVariables/WindowVariables';
|
|
|
|
export class WindowInjectedLogger implements Logger {
|
|
private readonly logger: Logger;
|
|
|
|
constructor(windowVariables: WindowVariables | undefined | null = window) {
|
|
if (!windowVariables) { // do not trust strictNullChecks for global objects
|
|
throw new Error('missing window');
|
|
}
|
|
if (!windowVariables.log) {
|
|
throw new Error('missing log');
|
|
}
|
|
this.logger = windowVariables.log;
|
|
}
|
|
|
|
public info(...params: unknown[]): void {
|
|
this.logger.info(...params);
|
|
}
|
|
|
|
public warn(...params: unknown[]): void {
|
|
this.logger.warn(...params);
|
|
}
|
|
|
|
public debug(...params: unknown[]): void {
|
|
this.logger.debug(...params);
|
|
}
|
|
|
|
public error(...params: unknown[]): void {
|
|
this.logger.error(...params);
|
|
}
|
|
}
|