mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-22 07:23:03 +02:00
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
import { localRedirect } from "@/modules/ui/ui";
|
|
import { AppInterface } from "./global";
|
|
import { RemotePlayManager } from "@/modules/remote-play-manager";
|
|
import { BxEvent } from "./bx-event";
|
|
|
|
|
|
export function handleDeepLink() {
|
|
const deepLinkData = JSON.parse(AppInterface.getDeepLinkData());
|
|
console.log('deepLinkData', deepLinkData);
|
|
if (!deepLinkData.host) {
|
|
return;
|
|
}
|
|
|
|
const onReady = () => {
|
|
if (deepLinkData.host === 'PLAY') {
|
|
localRedirect('/launch/' + deepLinkData.data.join('/'));
|
|
} else if (deepLinkData.host === 'DEVICE_CODE') {
|
|
localRedirect('/login/deviceCode');
|
|
} else if (deepLinkData.host === 'REMOTE_PLAY') {
|
|
const serverId = deepLinkData.data[0];
|
|
const resolution = deepLinkData.data[1] || '1080p';
|
|
|
|
const manager = RemotePlayManager.getInstance();
|
|
if (!manager) {
|
|
return;
|
|
}
|
|
|
|
if (manager.isReady()) {
|
|
manager.play(serverId, resolution);
|
|
return;
|
|
}
|
|
|
|
window.addEventListener(BxEvent.REMOTE_PLAY_READY, () => {
|
|
manager.play(serverId, resolution);
|
|
});
|
|
}
|
|
}
|
|
|
|
let handled = false
|
|
const observer = new MutationObserver(mutationList => {
|
|
mutationList.forEach(mutation => {
|
|
if (handled || mutation.type !== 'childList') {
|
|
return;
|
|
}
|
|
|
|
const $target = mutation.target as HTMLElement;
|
|
if (!handled && $target.className && $target.className['startsWith'] && $target.className.includes('HomePage-module__homePage')) {
|
|
handled = true;
|
|
observer.disconnect();
|
|
setTimeout(onReady, 1000);
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
observer.observe(document.documentElement, {subtree: true, childList: true});
|
|
}
|