mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 09:45:36 +03:00
dad802f19a
- set up standalone static page and message related components - start separating out css into smaller more manageable files - start separating out utils into smaller modular files - renaming some files for consistency
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
import { html, Component } from "https://unpkg.com/htm/preact/index.mjs?module";
|
|
|
|
// import { h, Component, render } from 'https://unpkg.com/preact?module';
|
|
// import htm from 'https://unpkg.com/htm?module';
|
|
// Initialize htm with Preact
|
|
// const html = htm.bind(h);
|
|
|
|
import UserInfo from './user-info.js';
|
|
import Chat from './chat.js';
|
|
|
|
import { getLocalStorage, generateAvatar, generateUsername } from '../utils.js';
|
|
import { KEY_USERNAME, KEY_AVATAR } from '../utils/chat.js';
|
|
|
|
export class StandaloneChat extends Component {
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
chatEnabled: true, // always true for standalone chat
|
|
username: getLocalStorage(KEY_USERNAME) || generateUsername(),
|
|
userAvatarImage: getLocalStorage(KEY_AVATAR) || generateAvatar(`${this.username}${Date.now()}`),
|
|
};
|
|
|
|
this.handleUsernameChange = this.handleUsernameChange.bind(this);
|
|
}
|
|
|
|
handleUsernameChange(newName, newAvatar) {
|
|
this.setState({
|
|
username: newName,
|
|
userAvatarImage: newAvatar,
|
|
});
|
|
}
|
|
|
|
handleChatToggle() {
|
|
return;
|
|
}
|
|
|
|
render(props, state) {
|
|
const { username, userAvatarImage } = state;
|
|
return (
|
|
html`
|
|
<div class="flex">
|
|
<${UserInfo}
|
|
username=${username}
|
|
userAvatarImage=${userAvatarImage}
|
|
handleUsernameChange=${this.handleUsernameChange}
|
|
handleChatToggle=${this.handleChatToggle}
|
|
/>
|
|
<${Chat} username=${username} userAvatarImage=${userAvatarImage} chatEnabled />
|
|
</div>
|
|
`);
|
|
}
|
|
|
|
}
|