Show notification when a plugin is hot reloaded
This commit is contained in:
parent
07eb7c061f
commit
f43d5ea394
|
@ -1,4 +1,8 @@
|
||||||
import { builderStore, environmentStore } from "./stores/index.js"
|
import {
|
||||||
|
builderStore,
|
||||||
|
environmentStore,
|
||||||
|
notificationStore,
|
||||||
|
} from "./stores/index.js"
|
||||||
import { get } from "svelte/store"
|
import { get } from "svelte/store"
|
||||||
import { io } from "socket.io-client"
|
import { io } from "socket.io-client"
|
||||||
|
|
||||||
|
@ -31,5 +35,6 @@ export const initWebsocket = () => {
|
||||||
// Event handlers
|
// Event handlers
|
||||||
socket.on("plugin-update", data => {
|
socket.on("plugin-update", data => {
|
||||||
builderStore.actions.updateUsedPlugin(data.name, data.hash)
|
builderStore.actions.updateUsedPlugin(data.name, data.hash)
|
||||||
|
notificationStore.actions.info(`"${data.name}" plugin reloaded`)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue