diff options
| author | AAGaming <aagaming@riseup.net> | 2023-12-30 00:46:59 -0500 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2023-12-30 00:46:59 -0500 |
| commit | 6522ebf0cad1723a278144b6c5d8557cd47e52d6 (patch) | |
| tree | 8c048cfe75c73938d347f8e6cd7b8bb23269df2c /frontend/src/start.tsx | |
| parent | 6042ca56b85fffe6bac4cac5a2965ee87c4e1e32 (diff) | |
| download | decky-loader-6522ebf0cad1723a278144b6c5d8557cd47e52d6.tar.gz decky-loader-6522ebf0cad1723a278144b6c5d8557cd47e52d6.zip | |
Implement legacy & modern plugin method calls over WS
This version builds fine and runs all of the 14 plugins I have installed perfectly, so we're really close to having this done.
Diffstat (limited to 'frontend/src/start.tsx')
| -rw-r--r-- | frontend/src/start.tsx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/frontend/src/start.tsx b/frontend/src/start.tsx index a125e3d4..cc2c02c2 100644 --- a/frontend/src/start.tsx +++ b/frontend/src/start.tsx @@ -10,7 +10,6 @@ declare global { DeckyPluginLoader: PluginLoader; DeckyUpdater?: DeckyUpdater; importDeckyPlugin: Function; - syncDeckyPlugins: Function; deckyHasLoaded: boolean; deckyHasConnectedRDT?: boolean; deckyAuthToken: string; @@ -53,23 +52,6 @@ declare global { 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); })(); export default i18n; |
