You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/ui/components/message/index.page.js

24 lines
650 B
JavaScript

import { AutoloadPage } from 'vj/misc/PageLoader';
import Notification from 'vj/components/notification';
const messagePage = new AutoloadPage('messagePage', () => {
async function init() {
const { default: SockJs } = await import('../socket');
const sock = new SockJs(`/home/messages-conn?token=${UiContext.token}`);
sock.onmessage = (message) => {
const msg = JSON.parse(message.data);
Notification.show({
title: msg.udoc.uname,
avatar: msg.udoc.gravatar,
message: msg.mdoc.content,
duration: 0,
});
};
}
if (UserContext._id !== 0) init();
});
export default messagePage;