From bace5143d28c42ffcc83509b7fcdf02b6cae6934 Mon Sep 17 00:00:00 2001 From: TrainDoctor Date: Sun, 30 Oct 2022 10:32:05 -0700 Subject: Merge Tabs and Injection Fixes, bring back native Valve toaster (#238) * Bring back component patch-based tabshook * better injection point * finally fix dumb loading error * fix QAM injection breaking after lock * shut up typescript * fix lock screen focusing issues * Bring back the Valve toaster! * Add support for stable steamos * fix focus bug on lock screen but actually * oops: remove extra console log * shut up typescript again * better fix for lockscreen bug * better probably * actually fix focus issues (WTF) Co-authored-by: AAGaming --- frontend/src/plugin-loader.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'frontend/src/plugin-loader.tsx') diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 92c634c9..f24a9605 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -23,6 +23,7 @@ import { Plugin } from './plugin'; import RouterHook from './router-hook'; import { checkForUpdates } from './store'; import TabsHook from './tabs-hook'; +import OldTabsHook from './tabs-hook.old'; import Toaster from './toaster'; import { VerInfo, callUpdaterMethod } from './updater'; import { getSetting } from './utils/settings'; @@ -38,10 +39,10 @@ declare global { class PluginLoader extends Logger { private plugins: Plugin[] = []; - private tabsHook: TabsHook = new TabsHook(); + private tabsHook: TabsHook | OldTabsHook = document.title == 'SP' ? new OldTabsHook() : new TabsHook(); // private windowHook: WindowHook = new WindowHook(); private routerHook: RouterHook = new RouterHook(); - public toaster: Toaster = new Toaster(this.routerHook); + public toaster: Toaster = new Toaster(); private deckyState: DeckyState = new DeckyState(); private reloadLock: boolean = false; @@ -52,6 +53,7 @@ class PluginLoader extends Logger { constructor() { super(PluginLoader.name); + this.tabsHook.init(); this.log('Initialized'); const TabBadge = () => { -- cgit v1.2.3