mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-05-13 20:12:54 -07:00
430373f010
* feat(tokenizer): use Yomitan word classes for subtitle POS filtering - Carry matched headword wordClasses from termsFind into YomitanScanToken - Map recognized Yomitan wordClasses to SubMiner coarse POS before annotation - MeCab enrichment now fills only missing POS fields, preserving existing coarse pos1 - Exclude standalone grammar particles, して helper fragments, and single-kana surfaces from annotations - Respect source-text punctuation gaps when counting N+1 sentence words - Preserve known-word highlight on excluded kanji-containing tokens - Add backlog tasks 304 (N+1 boundary bug) and 305 (wordClasses POS, done) * fix(tokenizer): preserve annotation and enrichment behavior * fix: restore jlpt subtitle underlines * fix: exclude kana-only n+1 targets * fix: refresh overlay on Hyprland fullscreen * fix: address fullscreen and n-plus-one review notes * fix: address CodeRabbit review comments * fix: accept modified digits for multi-line sentence mining * Cancel pending Linux MPV fullscreen overlay refresh bursts - return a cancel handle from the Linux refresh burst scheduler - clear pending refresh bursts when overlays hide or windows close - tighten the burst test polling to wait for the async refresh * fix: suppress N+1 for kana-only candidates and fix minSentenceWords coun - Treat kana-only tokens with surrounding subtitle punctuation (…, ―, etc.) as kana-only so they are not promoted to N+1 targets - Exclude unknown tokens filtered from N+1 targeting from the minSentenceWords count so filtered kana-only unknowns cannot satisfy sentence length threshold - Add regression tests for kana-only candidate suppression and filtered-unknown padding cases * Suppress subtitle annotations for grammar fragments - Hide annotation metadata for auxiliary inflection and ja-nai endings - Preserve lexical `くれる` forms and add regression coverage * Fix kana-only N+1 tokenizer regression test - Use a pure-kana fixture for the subtitle token N+1 case - Update task notes for the latest CodeRabbit follow-up * Fix managed playback exit and tokenizer grammar splits - Ignore background stats daemons during regular app startup - Split standalone grammar endings before applying annotations - Clear helper-span annotations for auxiliary-only tokens * fix: refresh current subtitle after known-word mining * fix: suppress sigh interjection annotations * fix: preserve jlpt underline color after lookup * Replace grammar-ending permutations with shared matcher; preserve word a - Extract `grammar-ending.ts` with `isStandaloneGrammarEndingText` / `isSubtitleGrammarEndingText` pattern matchers - Replace `STANDALONE_GRAMMAR_ENDINGS` set in parser-selection-stage with shared matcher - Replace generated phrase sets in subtitle-annotation-filter with shared matcher - Remove stale duplicate subtitle-exclusion constants and helpers from annotation-stage - Manual clipboard card updates now write only to the sentence audio field, leaving word/expression audio untouched * fix: CI changelog, annotation options threading, and Jellyfin quit - Add `type: fixed` / `area:` frontmatter to `changes/319` to pass `changelog:lint` - Thread `TokenizerAnnotationOptions` through `stripSubtitleAnnotationMetadata` so `sourceText` is honored - Include `jellyfinPlay` in `shouldQuitOnDisconnectWhenOverlayRuntimeInitialized` predicate - Make mouse test `elementFromPoint` stubs coordinate-sensitive - Make Lua test `.tmp` mkdir portable on Windows * Preserve overlay across macOS flaps and mpv playlist changes - keep visible overlays alive during transient macOS tracker loss - reuse the running mpv overlay path on playlist navigation - update regression coverage and changelog fragments * fix: restore stats daemon deferral * fix: keep subtitle prefetch alive after cache hits * Fix JLPT underline color drift and AniList skipped-threshold sync - Replace JLPT `text-decoration` underlines with `border-bottom` so Chromium selection/hover cannot repaint them to another annotation's color - Lock JLPT underline color for combined annotation selectors (known, n+1, frequency) and character hover/selection states - Trigger AniList post-watch check on every mpv time-position update to catch skipped completion thresholds - Fall back to filename-parser season/episode when guessit omits them * fix: address coderabbit feedback * fix: sync AniList after seeked completion * fix: preserve ordinal frequency annotations * fix: preserve known highlighting for filtered tokens * fix: address PR #57 CodeRabbit feedback - Acquire AniList post-watch in-flight lock before async gating to prevent duplicate writes - Isolate manual watched mark result from AniList post-watch callback failures - Report known-word cache clears as mutations during immediate append when state existed - Add regression tests for each fix * fix: stop AniList setup reopening on Linux when keyring token exists - Gate setup success on token persistence: `saveToken` now returns `boolean`; on failure, keeps the setup window open instead of reporting success - Config reload passes `allowSetupPrompt: false` so playback reloads don't re-open the setup window - Add regression test for persistence-failure path * fix: suppress known highlights for subtitle particles * fix: retry transient AniList safeStorage failures * fix: hide overlay focus ring * fix: align Hyprland fullscreen overlays * fix: restore subtitle playback keybindings * fix: align Hyprland overlay windows to mpv and stop pinning them - Force-apply exact Hyprland move/resize/setprop dispatches when bounds are provided - Stop pinning overlay windows; toggle pin off when Hyprland reports pinned=true - Compensate stats overlay outer placement for Electron/Wayland content insets - Make stats overlay window and page opaque so mpv cannot show through transparent insets - Constrain stats app to h-screen with internal scroll so content covers mpv from y=0 - Lock overlay/stats window titles against page-title-updated events - Add regression coverage for placement dispatches, inset compensation, and CSS overlay mode * fix: retain frequency rank for honorific prefix-noun tokens - Add `shouldAllowHonorificPrefixNounFrequency` to exempt お/ご/御 + noun merged tokens from frequency exclusion - Add regression test for `ご機嫌` asserting rank 5484 is preserved after MeCab enrichment and annotation - Close TASK-341 * fix: map openCharacterDictionary session action to --open-character-dict - Add missing Lua CLI dispatch entry for openCharacterDictionary - Add regression test for Alt+Meta+A binding and CLI flag forwarding * fix: keep macOS overlay interactive while mpv remains active - Overlay no longer hides or becomes click-through during tracker refreshes when mpv is the focused window - Preserve already-visible overlay when tracker is temporarily not ready but mpv target signal is active - Add regression tests for active-mpv tracker refresh and transient tracker-not-ready paths * fix: address coderabbit subtitle follow-ups * fix: resolve media detail from sessions when lifetime summary is absent - Change `getMediaDetail` JOIN to LEFT JOIN on `imm_lifetime_media` and fall back to aggregated session metrics when no lifetime row exists - Add filter `AND (lm.video_id IS NOT NULL OR s.session_id IS NOT NULL)` to keep results valid - Add regression test covering the session-visible / media-detail-missing mismatch * fix: address PR-57 CodeRabbit findings and CI failures - use filtered word counts in media detail session token aggregation - cancel fullscreen refresh burst on exit via updateLinuxMpvFullscreenOverlayRefreshBurst - guard Hyprland JSON.parse in try/catch; exclude windowtitle from geometry events - narrow focus suppression from :focus to :focus-visible - apply JLPT lock selectors to word-name-match tokens (N1–N5) * fix: macOS overlay z-order and Yomitan compound token known highlighting - Release always-on-top when tracked mpv loses foreground on macOS - Skip visible overlay blur restacking on macOS to avoid covering unrelated windows - Prefer Yomitan internal parse tokens over fragmented scanner output for known-word decisions - Add regression tests for both behaviors * fix: macOS visible-overlay blur no longer invokes Windows-only blur call - Split win32/darwin branches in handleOverlayWindowBlurred so darwin visible blur returns early without calling onWindowsVisibleOverlayBlur - Add regression test asserting Windows callback stays inactive on macOS visible overlay blur - Close TASK-347
1691 lines
54 KiB
TypeScript
1691 lines
54 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import test from 'node:test';
|
|
|
|
import type { SubtitleSidebarConfig } from '../../types';
|
|
import { createMouseHandlers } from './mouse.js';
|
|
import {
|
|
YOMITAN_POPUP_HIDDEN_EVENT,
|
|
YOMITAN_POPUP_HOST_SELECTOR,
|
|
YOMITAN_POPUP_SHOWN_EVENT,
|
|
YOMITAN_POPUP_VISIBLE_HOST_SELECTOR,
|
|
} from '../yomitan-popup.js';
|
|
|
|
function createClassList() {
|
|
const classes = new Set<string>();
|
|
return {
|
|
add: (...tokens: string[]) => {
|
|
for (const token of tokens) {
|
|
classes.add(token);
|
|
}
|
|
},
|
|
remove: (...tokens: string[]) => {
|
|
for (const token of tokens) {
|
|
classes.delete(token);
|
|
}
|
|
},
|
|
toggle: (token: string, force?: boolean) => {
|
|
if (force === undefined) {
|
|
if (classes.has(token)) {
|
|
classes.delete(token);
|
|
return false;
|
|
}
|
|
classes.add(token);
|
|
return true;
|
|
}
|
|
if (force) {
|
|
classes.add(token);
|
|
return true;
|
|
}
|
|
classes.delete(token);
|
|
return false;
|
|
},
|
|
contains: (token: string) => classes.has(token),
|
|
};
|
|
}
|
|
|
|
function createDeferred<T>() {
|
|
let resolve!: (value: T) => void;
|
|
const promise = new Promise<T>((nextResolve) => {
|
|
resolve = nextResolve;
|
|
});
|
|
return { promise, resolve };
|
|
}
|
|
|
|
function waitForNextTick(): Promise<void> {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, 0);
|
|
});
|
|
}
|
|
|
|
function createMouseTestContext() {
|
|
const overlayClassList = createClassList();
|
|
const subtitleRootClassList = createClassList();
|
|
const subtitleContainerClassList = createClassList();
|
|
const secondarySubContainerClassList = createClassList();
|
|
|
|
const ctx = {
|
|
dom: {
|
|
overlay: {
|
|
classList: overlayClassList,
|
|
},
|
|
subtitleRoot: {
|
|
classList: subtitleRootClassList,
|
|
},
|
|
subtitleContainer: {
|
|
classList: subtitleContainerClassList,
|
|
style: { cursor: '' },
|
|
addEventListener: () => {},
|
|
},
|
|
secondarySubContainer: {
|
|
classList: secondarySubContainerClassList,
|
|
addEventListener: () => {},
|
|
},
|
|
},
|
|
platform: {
|
|
shouldToggleMouseIgnore: false,
|
|
isLinuxPlatform: false,
|
|
isMacOSPlatform: false,
|
|
},
|
|
state: {
|
|
isOverSubtitle: false,
|
|
isOverSubtitleSidebar: false,
|
|
yomitanPopupVisible: false,
|
|
subtitleSidebarModalOpen: false,
|
|
subtitleSidebarConfig: null as SubtitleSidebarConfig | null,
|
|
isDragging: false,
|
|
dragStartY: 0,
|
|
startYPercent: 0,
|
|
},
|
|
};
|
|
|
|
return ctx;
|
|
}
|
|
|
|
test('secondary hover pauses on enter, reveals secondary subtitle, and resumes on leave when enabled', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handleSecondaryMouseEnter();
|
|
assert.equal(
|
|
ctx.dom.secondarySubContainer.classList.contains('secondary-sub-hover-active'),
|
|
true,
|
|
);
|
|
await handlers.handleSecondaryMouseLeave();
|
|
assert.equal(
|
|
ctx.dom.secondarySubContainer.classList.contains('secondary-sub-hover-active'),
|
|
false,
|
|
);
|
|
|
|
assert.deepEqual(mpvCommands, [
|
|
['set_property', 'pause', 'yes'],
|
|
['set_property', 'pause', 'no'],
|
|
]);
|
|
});
|
|
|
|
test('moving between primary and secondary subtitle containers keeps the hover pause active', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handleSecondaryMouseEnter();
|
|
await handlers.handleSecondaryMouseLeave({
|
|
relatedTarget: ctx.dom.subtitleContainer,
|
|
} as unknown as MouseEvent);
|
|
await handlers.handlePrimaryMouseEnter({
|
|
relatedTarget: ctx.dom.secondarySubContainer,
|
|
} as unknown as MouseEvent);
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, true);
|
|
assert.deepEqual(mpvCommands, [['set_property', 'pause', 'yes']]);
|
|
});
|
|
|
|
test('secondary leave toward primary subtitle container clears the secondary hover class', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handleSecondaryMouseEnter();
|
|
await handlers.handleSecondaryMouseLeave({
|
|
relatedTarget: ctx.dom.subtitleContainer,
|
|
} as unknown as MouseEvent);
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, false);
|
|
assert.equal(
|
|
ctx.dom.secondarySubContainer.classList.contains('secondary-sub-hover-active'),
|
|
false,
|
|
);
|
|
assert.deepEqual(mpvCommands, [['set_property', 'pause', 'yes']]);
|
|
});
|
|
|
|
test('auto-pause on subtitle hover skips when playback is already paused', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => true,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handleMouseEnter();
|
|
await handlers.handleMouseLeave();
|
|
|
|
assert.deepEqual(mpvCommands, []);
|
|
});
|
|
|
|
test('primary hover pauses on enter without revealing secondary subtitle', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handlePrimaryMouseEnter();
|
|
assert.equal(
|
|
ctx.dom.secondarySubContainer.classList.contains('secondary-sub-hover-active'),
|
|
false,
|
|
);
|
|
await handlers.handlePrimaryMouseLeave();
|
|
|
|
assert.deepEqual(mpvCommands, [
|
|
['set_property', 'pause', 'yes'],
|
|
['set_property', 'pause', 'no'],
|
|
]);
|
|
});
|
|
|
|
test('auto-pause on subtitle hover is skipped when disabled in config', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
await handlers.handleMouseEnter();
|
|
await handlers.handleMouseLeave();
|
|
|
|
assert.deepEqual(mpvCommands, []);
|
|
});
|
|
|
|
test('subtitle leave restores passthrough while embedded sidebar is open but not hovered', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const ignoreMouseCalls: Array<[boolean, { forward?: boolean } | undefined]> = [];
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
ctx.state.isOverSubtitle = true;
|
|
ctx.state.subtitleSidebarModalOpen = true;
|
|
ctx.state.subtitleSidebarConfig = {
|
|
enabled: true,
|
|
autoOpen: false,
|
|
layout: 'embedded',
|
|
toggleKey: 'Backslash',
|
|
pauseVideoOnHover: false,
|
|
autoScroll: true,
|
|
maxWidth: 360,
|
|
opacity: 0.92,
|
|
backgroundColor: 'rgba(54, 58, 79, 0.88)',
|
|
textColor: '#cad3f5',
|
|
fontFamily: '"Iosevka Aile", sans-serif',
|
|
fontSize: 17,
|
|
timestampColor: '#a5adcb',
|
|
activeLineColor: '#f5bde6',
|
|
activeLineBackgroundColor: 'rgba(138, 173, 244, 0.22)',
|
|
hoverLineBackgroundColor: 'rgba(54, 58, 79, 0.84)',
|
|
};
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreMouseCalls.push([ignore, options]);
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => true,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
await handlers.handlePrimaryMouseLeave();
|
|
|
|
assert.deepEqual(ignoreMouseCalls.at(-1), [true, { forward: true }]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
}
|
|
});
|
|
|
|
test('restorePointerInteractionState reapplies the secondary hover class from pointer location', async () => {
|
|
const ctx = createMouseTestContext();
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
const documentListeners = new Map<string, Array<(event: MouseEvent | PointerEvent) => void>>();
|
|
const originalDocument = (globalThis as { document?: unknown }).document;
|
|
const originalWindow = (globalThis as { window?: unknown }).window;
|
|
|
|
const secondarySubContainer = ctx.dom.secondarySubContainer as unknown as object;
|
|
const overlay = ctx.dom.overlay as unknown as { classList: ReturnType<typeof createClassList> };
|
|
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: MouseEvent | PointerEvent) => void) => {
|
|
const listeners = documentListeners.get(type) ?? [];
|
|
listeners.push(listener);
|
|
documentListeners.set(type, listeners);
|
|
},
|
|
elementFromPoint: () => secondarySubContainer,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
innerHeight: 1000,
|
|
getSelection: () => ({ rangeCount: 0, isCollapsed: true }),
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
await handlers.handleSecondaryMouseEnter({
|
|
clientX: 10,
|
|
clientY: 20,
|
|
} as unknown as MouseEvent);
|
|
handlers.restorePointerInteractionState();
|
|
|
|
overlay.classList.add('interactive');
|
|
const mousemove = documentListeners.get('mousemove')?.[0];
|
|
assert.ok(mousemove);
|
|
mousemove?.({ clientX: 10, clientY: 20 } as MouseEvent);
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, true);
|
|
assert.equal(
|
|
ctx.dom.secondarySubContainer.classList.contains('secondary-sub-hover-active'),
|
|
true,
|
|
);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
}
|
|
});
|
|
|
|
test('pending hover pause check is ignored when mouse leaves before pause state resolves', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const deferred = createDeferred<boolean | null>();
|
|
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => deferred.promise,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
const enterPromise = handlers.handleMouseEnter();
|
|
await handlers.handleMouseLeave();
|
|
deferred.resolve(false);
|
|
await enterPromise;
|
|
|
|
assert.deepEqual(mpvCommands, []);
|
|
});
|
|
|
|
test('hover pause resumes immediately on subtitle leave even when yomitan popup is visible', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
const previousDocument = (globalThis as { document?: unknown }).document;
|
|
const previousMutationObserver = (globalThis as { MutationObserver?: unknown }).MutationObserver;
|
|
const previousNode = (globalThis as { Node?: unknown }).Node;
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
focus: () => {},
|
|
innerHeight: 1000,
|
|
getSelection: () => null,
|
|
setTimeout,
|
|
clearTimeout,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
querySelector: () => null,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
elementFromPoint: () => null,
|
|
addEventListener: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: class {
|
|
observe() {}
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', {
|
|
configurable: true,
|
|
value: {
|
|
ELEMENT_NODE: 1,
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupYomitanObserver();
|
|
for (const listener of windowListeners.get(YOMITAN_POPUP_SHOWN_EVENT) ?? []) {
|
|
listener();
|
|
}
|
|
await handlers.handleMouseEnter();
|
|
await handlers.handleMouseLeave();
|
|
|
|
assert.deepEqual(mpvCommands, [
|
|
['set_property', 'pause', 'yes'],
|
|
['set_property', 'pause', 'no'],
|
|
]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: previousDocument });
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: previousMutationObserver,
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', { configurable: true, value: previousNode });
|
|
}
|
|
});
|
|
|
|
test('auto-pause still works when yomitan popup is already visible', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
const previousDocument = (globalThis as { document?: unknown }).document;
|
|
const previousMutationObserver = (globalThis as { MutationObserver?: unknown }).MutationObserver;
|
|
const previousNode = (globalThis as { Node?: unknown }).Node;
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
focus: () => {},
|
|
innerHeight: 1000,
|
|
getSelection: () => null,
|
|
setTimeout,
|
|
clearTimeout,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
querySelector: () => null,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
elementFromPoint: () => null,
|
|
addEventListener: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: class {
|
|
observe() {}
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', {
|
|
configurable: true,
|
|
value: {
|
|
ELEMENT_NODE: 1,
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupYomitanObserver();
|
|
for (const listener of windowListeners.get(YOMITAN_POPUP_SHOWN_EVENT) ?? []) {
|
|
listener();
|
|
}
|
|
await handlers.handleMouseEnter();
|
|
await handlers.handleMouseLeave();
|
|
|
|
assert.deepEqual(mpvCommands, [
|
|
['set_property', 'pause', 'yes'],
|
|
['set_property', 'pause', 'no'],
|
|
]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: previousDocument });
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: previousMutationObserver,
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', { configurable: true, value: previousNode });
|
|
}
|
|
});
|
|
|
|
test('popup open pauses and popup close resumes when yomitan popup auto-pause is enabled', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
const previousDocument = (globalThis as { document?: unknown }).document;
|
|
const previousMutationObserver = (globalThis as { MutationObserver?: unknown }).MutationObserver;
|
|
const previousNode = (globalThis as { Node?: unknown }).Node;
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
focus: () => {},
|
|
innerHeight: 1000,
|
|
getSelection: () => null,
|
|
setTimeout,
|
|
clearTimeout,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
querySelector: () => null,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
elementFromPoint: () => null,
|
|
addEventListener: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: class {
|
|
observe() {}
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', {
|
|
configurable: true,
|
|
value: {
|
|
ELEMENT_NODE: 1,
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => true,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command: (string | number)[]) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupYomitanObserver();
|
|
|
|
for (const listener of windowListeners.get(YOMITAN_POPUP_SHOWN_EVENT) ?? []) {
|
|
listener();
|
|
}
|
|
await waitForNextTick();
|
|
for (const listener of windowListeners.get(YOMITAN_POPUP_HIDDEN_EVENT) ?? []) {
|
|
listener();
|
|
}
|
|
|
|
assert.deepEqual(mpvCommands, [
|
|
['set_property', 'pause', 'yes'],
|
|
['set_property', 'pause', 'no'],
|
|
]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: previousDocument });
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: previousMutationObserver,
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', { configurable: true, value: previousNode });
|
|
}
|
|
});
|
|
|
|
test('nested popup close reasserts interactive state and focus when another popup remains visible on Windows', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
const previousDocument = (globalThis as { document?: unknown }).document;
|
|
const previousMutationObserver = (globalThis as { MutationObserver?: unknown }).MutationObserver;
|
|
const previousNode = (globalThis as { Node?: unknown }).Node;
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
let focusMainWindowCalls = 0;
|
|
let windowFocusCalls = 0;
|
|
let overlayFocusCalls = 0;
|
|
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
(ctx.dom.overlay as { focus?: (options?: { preventScroll?: boolean }) => void }).focus = () => {
|
|
overlayFocusCalls += 1;
|
|
};
|
|
|
|
const visiblePopupHost = {
|
|
tagName: 'DIV',
|
|
getAttribute: (name: string) =>
|
|
name === 'data-subminer-yomitan-popup-visible' ? 'true' : null,
|
|
};
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
focusMainWindow: () => {
|
|
focusMainWindowCalls += 1;
|
|
},
|
|
},
|
|
focus: () => {
|
|
windowFocusCalls += 1;
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'visible',
|
|
display: 'block',
|
|
opacity: '1',
|
|
}),
|
|
innerHeight: 1000,
|
|
getSelection: () => null,
|
|
setTimeout,
|
|
clearTimeout,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
querySelector: () => null,
|
|
querySelectorAll: (selector: string) => {
|
|
if (
|
|
selector === YOMITAN_POPUP_VISIBLE_HOST_SELECTOR ||
|
|
selector === YOMITAN_POPUP_HOST_SELECTOR
|
|
) {
|
|
return [visiblePopupHost];
|
|
}
|
|
return [];
|
|
},
|
|
body: {},
|
|
elementFromPoint: () => null,
|
|
addEventListener: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: class {
|
|
observe() {}
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', {
|
|
configurable: true,
|
|
value: {
|
|
ELEMENT_NODE: 1,
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupYomitanObserver();
|
|
ignoreCalls.length = 0;
|
|
|
|
for (const listener of windowListeners.get(YOMITAN_POPUP_HIDDEN_EVENT) ?? []) {
|
|
listener();
|
|
}
|
|
|
|
assert.equal(ctx.state.yomitanPopupVisible, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: false, forward: undefined }]);
|
|
assert.equal(focusMainWindowCalls, 1);
|
|
assert.equal(windowFocusCalls, 1);
|
|
assert.equal(overlayFocusCalls, 1);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: previousDocument });
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: previousMutationObserver,
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', { configurable: true, value: previousNode });
|
|
}
|
|
});
|
|
|
|
test('window blur reclaims overlay focus while a yomitan popup remains visible on Windows', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const previousWindow = (globalThis as { window?: unknown }).window;
|
|
const previousDocument = (globalThis as { document?: unknown }).document;
|
|
const previousMutationObserver = (globalThis as { MutationObserver?: unknown }).MutationObserver;
|
|
const previousNode = (globalThis as { Node?: unknown }).Node;
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
let focusMainWindowCalls = 0;
|
|
let windowFocusCalls = 0;
|
|
let overlayFocusCalls = 0;
|
|
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
(ctx.dom.overlay as { focus?: (options?: { preventScroll?: boolean }) => void }).focus = () => {
|
|
overlayFocusCalls += 1;
|
|
};
|
|
|
|
const visiblePopupHost = {
|
|
tagName: 'DIV',
|
|
getAttribute: (name: string) =>
|
|
name === 'data-subminer-yomitan-popup-visible' ? 'true' : null,
|
|
};
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
focusMainWindow: () => {
|
|
focusMainWindowCalls += 1;
|
|
},
|
|
},
|
|
focus: () => {
|
|
windowFocusCalls += 1;
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'visible',
|
|
display: 'block',
|
|
opacity: '1',
|
|
}),
|
|
innerHeight: 1000,
|
|
getSelection: () => null,
|
|
setTimeout,
|
|
clearTimeout,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
visibilityState: 'visible',
|
|
querySelector: () => null,
|
|
querySelectorAll: (selector: string) => {
|
|
if (
|
|
selector === YOMITAN_POPUP_VISIBLE_HOST_SELECTOR ||
|
|
selector === YOMITAN_POPUP_HOST_SELECTOR
|
|
) {
|
|
return [visiblePopupHost];
|
|
}
|
|
return [];
|
|
},
|
|
body: {},
|
|
elementFromPoint: () => null,
|
|
addEventListener: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: class {
|
|
observe() {}
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', {
|
|
configurable: true,
|
|
value: {
|
|
ELEMENT_NODE: 1,
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupYomitanObserver();
|
|
assert.equal(ctx.state.yomitanPopupVisible, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: false, forward: undefined }]);
|
|
ignoreCalls.length = 0;
|
|
|
|
for (const listener of windowListeners.get('blur') ?? []) {
|
|
listener();
|
|
}
|
|
await Promise.resolve();
|
|
|
|
assert.equal(ctx.state.yomitanPopupVisible, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: false, forward: undefined }]);
|
|
assert.equal(focusMainWindowCalls, 1);
|
|
assert.equal(windowFocusCalls, 1);
|
|
assert.equal(overlayFocusCalls, 1);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: previousWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: previousDocument });
|
|
Object.defineProperty(globalThis, 'MutationObserver', {
|
|
configurable: true,
|
|
value: previousMutationObserver,
|
|
});
|
|
Object.defineProperty(globalThis, 'Node', { configurable: true, value: previousNode });
|
|
}
|
|
});
|
|
|
|
test('restorePointerInteractionState re-enables subtitle hover when pointer is already over subtitles', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
elementFromPoint: () => ctx.dom.subtitleContainer,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
handlers.restorePointerInteractionState();
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [
|
|
{ ignore: false, forward: undefined },
|
|
{ ignore: false, forward: undefined },
|
|
]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('visibility recovery re-enables subtitle hover without needing a fresh pointer move', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let visibilityState: 'hidden' | 'visible' = 'visible';
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
get visibilityState() {
|
|
return visibilityState;
|
|
},
|
|
elementFromPoint: () => ctx.dom.subtitleContainer,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
|
|
ctx.state.isOverSubtitle = false;
|
|
ctx.dom.overlay.classList.remove('interactive');
|
|
ignoreCalls.length = 0;
|
|
visibilityState = 'hidden';
|
|
visibilityState = 'visible';
|
|
|
|
for (const listener of documentListeners.get('visibilitychange') ?? []) {
|
|
listener({});
|
|
}
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: false, forward: undefined }]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('visibility recovery ignores synthetic subtitle enter until the pointer moves again', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let hoveredElement: unknown = ctx.dom.subtitleContainer;
|
|
let visibilityState: 'hidden' | 'visible' = 'visible';
|
|
let subtitleHoverAutoPauseEnabled = false;
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
get visibilityState() {
|
|
return visibilityState;
|
|
},
|
|
elementFromPoint: () => hoveredElement,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => subtitleHoverAutoPauseEnabled,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
await waitForNextTick();
|
|
|
|
ignoreCalls.length = 0;
|
|
visibilityState = 'hidden';
|
|
visibilityState = 'visible';
|
|
subtitleHoverAutoPauseEnabled = true;
|
|
for (const listener of documentListeners.get('visibilitychange') ?? []) {
|
|
listener({});
|
|
}
|
|
|
|
await handlers.handlePrimaryMouseEnter();
|
|
assert.deepEqual(mpvCommands, []);
|
|
|
|
hoveredElement = null;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 32, clientY: 48 });
|
|
}
|
|
|
|
hoveredElement = ctx.dom.subtitleContainer;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
await waitForNextTick();
|
|
|
|
assert.deepEqual(mpvCommands, [['set_property', 'pause', 'yes']]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('window resize ignores synthetic subtitle enter until the pointer moves again', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let hoveredElement: unknown = ctx.dom.subtitleContainer;
|
|
let subtitleHoverAutoPauseEnabled = false;
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
innerHeight: 1000,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
elementFromPoint: () => hoveredElement,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => subtitleHoverAutoPauseEnabled,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
handlers.setupResizeHandler();
|
|
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
await waitForNextTick();
|
|
|
|
subtitleHoverAutoPauseEnabled = true;
|
|
for (const listener of windowListeners.get('resize') ?? []) {
|
|
listener();
|
|
}
|
|
|
|
await handlers.handlePrimaryMouseEnter();
|
|
assert.deepEqual(mpvCommands, []);
|
|
|
|
hoveredElement = null;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 32, clientY: 48 });
|
|
}
|
|
|
|
hoveredElement = ctx.dom.subtitleContainer;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
await waitForNextTick();
|
|
|
|
assert.deepEqual(mpvCommands, [['set_property', 'pause', 'yes']]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('window resize allows primary hover pause from a real mouseenter over subtitles', async () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const mpvCommands: Array<(string | number)[]> = [];
|
|
const windowListeners = new Map<string, Array<() => void>>();
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: () => {},
|
|
},
|
|
addEventListener: (type: string, listener: () => void) => {
|
|
const bucket = windowListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
windowListeners.set(type, bucket);
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
innerHeight: 1000,
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: () => {},
|
|
elementFromPoint: (x: number, y: number) =>
|
|
x === 120 && y === 240 ? ctx.dom.subtitleContainer : null,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => true,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: (command) => {
|
|
mpvCommands.push(command);
|
|
},
|
|
});
|
|
|
|
handlers.setupResizeHandler();
|
|
for (const listener of windowListeners.get('resize') ?? []) {
|
|
listener();
|
|
}
|
|
|
|
await handlers.handlePrimaryMouseEnter({ clientX: 120, clientY: 240 } as MouseEvent);
|
|
assert.deepEqual(mpvCommands, [['set_property', 'pause', 'yes']]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('visibility recovery keeps overlay click-through when pointer is not over subtitles', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let hoveredElement: unknown = null;
|
|
let visibilityState: 'hidden' | 'visible' = 'visible';
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
get visibilityState() {
|
|
return visibilityState;
|
|
},
|
|
elementFromPoint: () => hoveredElement,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 320, clientY: 180 });
|
|
}
|
|
|
|
ctx.dom.overlay.classList.add('interactive');
|
|
ignoreCalls.length = 0;
|
|
visibilityState = 'hidden';
|
|
visibilityState = 'visible';
|
|
|
|
for (const listener of documentListeners.get('visibilitychange') ?? []) {
|
|
listener({});
|
|
}
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, false);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), false);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: true, forward: true }]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('pointer tracking enables overlay interaction as soon as the cursor reaches subtitles', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
elementFromPoint: (x: number, y: number) =>
|
|
x === 120 && y === 240 ? ctx.dom.subtitleContainer : null,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, true);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [{ ignore: false, forward: undefined }]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('pointer tracking restores click-through after the cursor leaves subtitles', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let hoveredElement: unknown = ctx.dom.subtitleContainer;
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
elementFromPoint: () => hoveredElement,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 120, clientY: 240 });
|
|
}
|
|
|
|
hoveredElement = null;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 640, clientY: 360 });
|
|
}
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, false);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), false);
|
|
assert.equal(ignoreCalls[0]?.ignore, false);
|
|
assert.deepEqual(ignoreCalls.at(-1), { ignore: true, forward: true });
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|
|
|
|
test('restorePointerInteractionState keeps overlay interactive until first real pointer move can resync hover', () => {
|
|
const ctx = createMouseTestContext();
|
|
const originalWindow = globalThis.window;
|
|
const originalDocument = globalThis.document;
|
|
const ignoreCalls: Array<{ ignore: boolean; forward?: boolean }> = [];
|
|
const documentListeners = new Map<string, Array<(event: unknown) => void>>();
|
|
let hoveredElement: unknown = null;
|
|
ctx.platform.shouldToggleMouseIgnore = true;
|
|
|
|
Object.defineProperty(globalThis, 'window', {
|
|
configurable: true,
|
|
value: {
|
|
electronAPI: {
|
|
setIgnoreMouseEvents: (ignore: boolean, options?: { forward?: boolean }) => {
|
|
ignoreCalls.push({ ignore, forward: options?.forward });
|
|
},
|
|
},
|
|
getComputedStyle: () => ({
|
|
visibility: 'hidden',
|
|
display: 'none',
|
|
opacity: '0',
|
|
}),
|
|
focus: () => {},
|
|
},
|
|
});
|
|
Object.defineProperty(globalThis, 'document', {
|
|
configurable: true,
|
|
value: {
|
|
addEventListener: (type: string, listener: (event: unknown) => void) => {
|
|
const bucket = documentListeners.get(type) ?? [];
|
|
bucket.push(listener);
|
|
documentListeners.set(type, bucket);
|
|
},
|
|
elementFromPoint: () => hoveredElement,
|
|
querySelectorAll: () => [],
|
|
body: {},
|
|
},
|
|
});
|
|
|
|
try {
|
|
const handlers = createMouseHandlers(ctx as never, {
|
|
modalStateReader: {
|
|
isAnySettingsModalOpen: () => false,
|
|
isAnyModalOpen: () => false,
|
|
},
|
|
applyYPercent: () => {},
|
|
getCurrentYPercent: () => 10,
|
|
persistSubtitlePositionPatch: () => {},
|
|
getSubtitleHoverAutoPauseEnabled: () => false,
|
|
getYomitanPopupAutoPauseEnabled: () => false,
|
|
getPlaybackPaused: async () => false,
|
|
sendMpvCommand: () => {},
|
|
});
|
|
|
|
handlers.setupPointerTracking();
|
|
handlers.restorePointerInteractionState();
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, false);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), true);
|
|
assert.deepEqual(ignoreCalls, [
|
|
{ ignore: true, forward: true },
|
|
{ ignore: false, forward: undefined },
|
|
]);
|
|
|
|
hoveredElement = null;
|
|
for (const listener of documentListeners.get('mousemove') ?? []) {
|
|
listener({ clientX: 24, clientY: 48 });
|
|
}
|
|
|
|
assert.equal(ctx.state.isOverSubtitle, false);
|
|
assert.equal(ctx.dom.overlay.classList.contains('interactive'), false);
|
|
assert.deepEqual(ignoreCalls, [
|
|
{ ignore: true, forward: true },
|
|
{ ignore: false, forward: undefined },
|
|
{ ignore: true, forward: true },
|
|
]);
|
|
} finally {
|
|
Object.defineProperty(globalThis, 'window', { configurable: true, value: originalWindow });
|
|
Object.defineProperty(globalThis, 'document', { configurable: true, value: originalDocument });
|
|
}
|
|
});
|