mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import { h, Component } from 'https://unpkg.com/preact?module';
|
|
import htm from 'https://unpkg.com/htm?module';
|
|
const html = htm.bind(h);
|
|
|
|
import Chat from './components/chat/chat.js';
|
|
import Websocket from './utils/websocket.js';
|
|
import { getLocalStorage, generateAvatar, generateUsername } from './utils/helpers.js';
|
|
import { KEY_USERNAME, KEY_AVATAR } from './utils/constants.js';
|
|
|
|
export default class StandaloneChat extends Component {
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
websocket: new Websocket(),
|
|
chatEnabled: true, // always true for standalone chat
|
|
username: getLocalStorage(KEY_USERNAME) || generateUsername(),
|
|
userAvatarImage: getLocalStorage(KEY_AVATAR) || generateAvatar(`${this.username}${Date.now()}`),
|
|
};
|
|
|
|
this.websocket = null;
|
|
this.handleUsernameChange = this.handleUsernameChange.bind(this);
|
|
}
|
|
|
|
handleUsernameChange(newName, newAvatar) {
|
|
this.setState({
|
|
username: newName,
|
|
userAvatarImage: newAvatar,
|
|
});
|
|
}
|
|
|
|
render(props, state) {
|
|
const { username, userAvatarImage, websocket } = state;
|
|
|
|
return (
|
|
html`
|
|
<${Chat}
|
|
websocket=${websocket}
|
|
username=${username}
|
|
userAvatarImage=${userAvatarImage}
|
|
messagesOnly
|
|
/>
|
|
`
|
|
);
|
|
}
|
|
}
|