lollms-webui/web/src/services/websocket.js
2023-06-08 08:58:02 +02:00

42 lines
1.0 KiB
JavaScript

// Project : lollms-webui
// Author : ParisNeo
// Description :
// All websocket stuff can be found here.
// More info can be found here https://socket.io/how-to/use-with-vue
import { createApp } from 'vue';
import io from 'socket.io-client';
// fixes issues when people not hosting this site on local network
const URL = process.env.NODE_ENV === "production" ? undefined : (import.meta.env.VITE_GPT4ALL_API);
const socket = new io(URL);
socket.onopen = () => {
console.log('WebSocket connection established.');
};
socket.onclose = (event) => {
console.log('WebSocket connection closed:', event.code, event.reason);
};
socket.onerror = (error) => {
console.error('WebSocket error:', error);
socket.disconnect()
};
socket.on("connect", () => {
console.log('WebSocket connected (websocket)');
});
socket.on("disconnect", () => {
console.log('WebSocket disonnected (websocket)');
});
const app = createApp(/* your root component */);
app.config.globalProperties.$socket = socket;
app.mount(/* your root element */);
export default socket;