mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-15 18:13:40 +03:00
64 lines
2.0 KiB
TypeScript
64 lines
2.0 KiB
TypeScript
import { Navigation, Router, sleep } from 'decky-frontend-lib';
|
|
|
|
import PluginLoader from './plugin-loader';
|
|
import { DeckyUpdater } from './updater';
|
|
|
|
declare global {
|
|
interface Window {
|
|
DeckyPluginLoader: PluginLoader;
|
|
DeckyUpdater?: DeckyUpdater;
|
|
importDeckyPlugin: Function;
|
|
syncDeckyPlugins: Function;
|
|
deckyHasLoaded: boolean;
|
|
deckyHasConnectedRDT?: boolean;
|
|
deckyAuthToken: string;
|
|
DFL?: any;
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
try {
|
|
if (!Router.NavigateToAppProperties || !Router.NavigateToLibraryTab || !Router.NavigateToInvites) {
|
|
while (!Navigation.NavigateToAppProperties) await sleep(100);
|
|
const shims = {
|
|
NavigateToAppProperties: Navigation.NavigateToAppProperties,
|
|
NavigateToInvites: Navigation.NavigateToInvites,
|
|
NavigateToLibraryTab: Navigation.NavigateToLibraryTab,
|
|
};
|
|
(Router as unknown as any).deckyShim = true;
|
|
Object.assign(Router, shims);
|
|
}
|
|
} catch (e) {
|
|
console.error('[DECKY]: Error initializing Navigation interface shims', e);
|
|
}
|
|
})();
|
|
|
|
(async () => {
|
|
window.deckyAuthToken = await fetch('http://127.0.0.1:1337/auth/token').then((r) => r.text());
|
|
|
|
window.DeckyPluginLoader?.dismountAll();
|
|
window.DeckyPluginLoader?.deinit();
|
|
|
|
window.DeckyPluginLoader = new PluginLoader();
|
|
window.DeckyPluginLoader.init();
|
|
window.importDeckyPlugin = function (name: string, version: string) {
|
|
window.DeckyPluginLoader?.importPlugin(name, version);
|
|
};
|
|
|
|
window.syncDeckyPlugins = async function () {
|
|
const plugins = await (
|
|
await fetch('http://127.0.0.1:1337/plugins', {
|
|
credentials: 'include',
|
|
headers: { Authentication: window.deckyAuthToken },
|
|
})
|
|
).json();
|
|
for (const plugin of plugins) {
|
|
if (!window.DeckyPluginLoader.hasPlugin(plugin.name))
|
|
window.DeckyPluginLoader?.importPlugin(plugin.name, plugin.version);
|
|
}
|
|
window.DeckyPluginLoader.checkPluginUpdates();
|
|
};
|
|
|
|
setTimeout(() => window.syncDeckyPlugins(), 5000);
|
|
})();
|