mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-09-14 16:19:37 +02:00
Show local co-op icon in details page
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { BX_FLAGS } from "@/utils/bx-flags";
|
||||
import { BxIcon } from "@/utils/bx-icon";
|
||||
import { AppInterface } from "@/utils/global";
|
||||
import { ButtonStyle, CE, createButton } from "@/utils/html";
|
||||
import { ButtonStyle, CE, createButton, createSvgIcon } from "@/utils/html";
|
||||
import { LocalCoOpManager } from "@/utils/local-co-op-manager";
|
||||
import { t } from "@/utils/translation";
|
||||
import { parseDetailsPath } from "@/utils/utils";
|
||||
|
||||
@@ -28,21 +29,33 @@ export class ProductDetailsPage {
|
||||
private static injectTimeoutId: number | null = null;
|
||||
|
||||
static injectButtons() {
|
||||
if (!AppInterface) {
|
||||
return;
|
||||
}
|
||||
|
||||
ProductDetailsPage.injectTimeoutId && clearTimeout(ProductDetailsPage.injectTimeoutId);
|
||||
ProductDetailsPage.injectTimeoutId = window.setTimeout(() => {
|
||||
// Find action buttons container
|
||||
const $container = document.querySelector('div[class*=ActionButtons-module__container]');
|
||||
if ($container && $container.parentElement) {
|
||||
$container.parentElement.appendChild(CE('div', {
|
||||
class: 'bx-product-details-buttons',
|
||||
},
|
||||
['android-handheld', 'android'].includes(BX_FLAGS.DeviceInfo.deviceType) && ProductDetailsPage.$btnShortcut,
|
||||
ProductDetailsPage.$btnWallpaper,
|
||||
));
|
||||
// Inputs
|
||||
const $inputsContainer = document.querySelector<HTMLElement>('div[class*="Header-module__gamePassAndInputsContainer"]');
|
||||
if ($inputsContainer && !$inputsContainer.dataset.bxInjected) {
|
||||
$inputsContainer.dataset.bxInjected = 'true';
|
||||
|
||||
const { productId } = parseDetailsPath(window.location.pathname);
|
||||
if (LocalCoOpManager.getInstance().isSupported(productId || '')) {
|
||||
$inputsContainer.insertAdjacentElement('afterend', CE('div', {
|
||||
class: 'bx-product-details-icons bx-frosted',
|
||||
}, createSvgIcon(BxIcon.LOCAL_CO_OP), t('local-co-op')));
|
||||
}
|
||||
}
|
||||
|
||||
// Inject buttons for Android app
|
||||
if (AppInterface) {
|
||||
// Find action buttons container
|
||||
const $container = document.querySelector('div[class*=ActionButtons-module__container]');
|
||||
if ($container && $container.parentElement) {
|
||||
$container.parentElement.appendChild(CE('div', {
|
||||
class: 'bx-product-details-buttons',
|
||||
},
|
||||
['android-handheld', 'android'].includes(BX_FLAGS.DeviceInfo.deviceType) && ProductDetailsPage.$btnShortcut,
|
||||
ProductDetailsPage.$btnWallpaper,
|
||||
));
|
||||
}
|
||||
}
|
||||
}, 500);
|
||||
}
|
||||
|
Reference in New Issue
Block a user