1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00
budibase/packages/client/src/websocket.js

29 lines
743 B
JavaScript
Raw Normal View History

import {
builderStore,
environmentStore,
notificationStore,
} from "./stores/index.js"
2022-08-19 22:09:20 +12:00
import { get } from "svelte/store"
import { createWebsocket } from "@budibase/frontend-core"
2022-08-19 22:09:20 +12:00
let socket
2022-08-19 22:09:20 +12:00
export const initWebsocket = () => {
const { inBuilder, location } = get(builderStore)
const { cloud } = get(environmentStore)
2022-08-23 05:24:34 +12:00
// Only connect when we're inside the builder preview, for now
if (!inBuilder || !location || cloud || socket) {
2022-08-19 22:09:20 +12:00
return
}
2022-08-23 05:24:34 +12:00
// Initialise connection
2023-06-01 02:13:52 +12:00
socket = createWebsocket("/socket/client", false)
2022-08-23 05:24:34 +12:00
// Event handlers
2022-08-19 22:09:20 +12:00
socket.on("plugin-update", data => {
builderStore.actions.updateUsedPlugin(data.name, data.hash)
notificationStore.actions.info(`"${data.name}" plugin reloaded`)
2022-08-19 22:09:20 +12:00
})
}