summaryrefslogtreecommitdiff
path: root/frontend/src/plugin-loader.tsx
diff options
context:
space:
mode:
authorAAGaming <aagaming00@protonmail.com>2022-05-30 14:26:54 -0400
committerGitHub <noreply@github.com>2022-05-30 20:26:54 +0200
commit007860f8f771a7ee62b1c384fbe4f741528a75d5 (patch)
treee901ec893500f0531ebb66b5066b2003086570b3 /frontend/src/plugin-loader.tsx
parent44776b393e984e5968c8b092fade56644c39a4a7 (diff)
downloaddecky-loader-007860f8f771a7ee62b1c384fbe4f741528a75d5.tar.gz
decky-loader-007860f8f771a7ee62b1c384fbe4f741528a75d5.zip
react: Add Router hook & fix typescript issues (#68)
* add rollup watch command, add pnpm lockfile * wait for react * add WIP patcher, window hook, and webpack * fix typescript, fix React, lint, add pnpm to gitignore * actually fix react * show frontend JS errors in console * cleanup * Add Router hook * Remove console.log * Expose routerHook in createPluginAPI Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
-rw-r--r--frontend/src/plugin-loader.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx
index ddb92542..fc1f57e9 100644
--- a/frontend/src/plugin-loader.tsx
+++ b/frontend/src/plugin-loader.tsx
@@ -6,6 +6,7 @@ import PluginView from './components/PluginView';
import TitleView from './components/TitleView';
import Logger from './logger';
import { Plugin } from './plugin';
+import RouterHook from './router-hook';
import TabsHook from './tabs-hook';
declare global {
@@ -15,6 +16,8 @@ declare global {
class PluginLoader extends Logger {
private plugins: Plugin[] = [];
private tabsHook: TabsHook = new TabsHook();
+ // private windowHook: WindowHook = new WindowHook();
+ private routerHook: RouterHook = new RouterHook();
private deckyState: DeckyState = new DeckyState();
constructor() {
@@ -81,6 +84,7 @@ class PluginLoader extends Logger {
static createPluginAPI(pluginName: string) {
return {
+ routerHook: this.routerHook,
async callServerMethod(methodName: string, args = {}) {
const response = await fetch(`http://127.0.0.1:1337/methods/${methodName}`, {
method: 'POST',