1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 20:29:08 +01:00
elk/server/shared.ts

21 lines
605 B
TypeScript
Raw Normal View History

2022-11-15 14:29:46 +00:00
import { $fetch } from 'ohmyfetch'
2022-11-15 15:48:23 +00:00
import type { AppInfo } from '~/types'
2022-11-15 14:29:46 +00:00
export const registeredApps: Record<string, AppInfo> = {}
2022-11-15 15:54:58 +00:00
const runtimeConfig = useRuntimeConfig()
const promise = $fetch(runtimeConfig.registedAppsUrl)
2022-11-15 14:29:46 +00:00
.then(r => Object.assign(registeredApps, r))
2022-11-15 15:48:23 +00:00
.catch((e) => {
if (process.dev)
console.error('Failed to fetch registered apps,\nyou may need to run `nr register-apps` first')
else
console.error('Failed to fetch registered apps')
console.error(e)
})
2022-11-15 14:29:46 +00:00
export async function getApp(server: string) {
await promise
return registeredApps[server]
}