forked from heygen-com/hyperframes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.thumbnail.ts
More file actions
36 lines (31 loc) · 912 Bytes
/
Copy pathvite.thumbnail.ts
File metadata and controls
36 lines (31 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
interface ThumbnailPreviewPage {
evaluate<TArg, TResult>(
fn: (arg: TArg) => TResult | Promise<TResult>,
arg: TArg,
): Promise<TResult>;
}
type SeekResult = "player" | "timelines" | "none";
export async function seekThumbnailPreview(
page: ThumbnailPreviewPage,
seekTime: number,
): Promise<SeekResult> {
return page.evaluate((t: number): SeekResult => {
const w = window as Window & {
__player?: { seek?: (time: number) => void };
__timelines?: Record<string, { pause?: (time?: number) => void }>;
gsap?: { ticker?: { tick?: () => void } };
};
if (typeof w.__player?.seek === "function") {
w.__player.seek(t);
return "player";
}
if (w.__timelines) {
for (const tl of Object.values(w.__timelines)) {
tl?.pause?.(t);
}
w.gsap?.ticker?.tick?.();
return "timelines";
}
return "none";
}, seekTime);
}