You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.6 KiB
99 lines
2.6 KiB
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 SOCKET_MESSAGE_TYPES from '../utils/socket-message-types.js'; |
|
import Message from './message.js'; |
|
|
|
export default class Chat extends Component { |
|
constructor(props, context) { |
|
super(props, context); |
|
|
|
this.messageCharCount = 0; |
|
this.maxMessageLength = 500; |
|
this.maxMessageBuffer = 20; |
|
|
|
this.state = { |
|
inputEnabled: false, |
|
messages: [], |
|
|
|
chatUserNames: [], |
|
} |
|
|
|
} |
|
|
|
componentDidMount() { |
|
|
|
} |
|
|
|
componentDidUpdate(prevProps) { |
|
const { username: prevName } = prevProps; |
|
const { username, userAvatarImage } = this.props; |
|
// if username updated, send a message |
|
if (prevName !== username) { |
|
this.sendUsernameChange(prevName, username, userAvatarImage); |
|
} |
|
|
|
} |
|
|
|
sendUsernameChange(oldName, newName, image) { |
|
const nameChange = { |
|
type: SOCKET_MESSAGE_TYPES.NAME_CHANGE, |
|
oldName: oldName, |
|
newName: newName, |
|
image: image, |
|
}; |
|
this.send(nameChange); |
|
} |
|
|
|
render(props, state) { |
|
const { username, userAvatarImage } = props; |
|
const { messages } = state; |
|
|
|
return ( |
|
html` |
|
<section id="chat-container-wrap" class="flex"> |
|
<div id="chat-container" class="bg-gray-800"> |
|
<div id="messages-container"> |
|
${ |
|
messages.map(message => (html`<${Message} message=${message} />`)) |
|
} |
|
messages.. |
|
</div> |
|
|
|
|
|
<div id="message-input-container" class="shadow-md bg-gray-900 border-t border-gray-700 border-solid"> |
|
<form id="message-form" class="flex"> |
|
|
|
<input type="hidden" name="inputAuthor" id="self-message-author" value=${username} /> |
|
|
|
<textarea |
|
disabled |
|
id="message-body-form" |
|
placeholder="Message" |
|
class="appearance-none block w-full bg-gray-200 text-gray-700 border border-black-500 rounded py-2 px-2 my-2 focus:bg-white" |
|
></textarea> |
|
|
|
<div id="message-form-actions" class="flex"> |
|
<span id="message-form-warning" class="text-red-600 text-xs"></span> |
|
<button |
|
id="button-submit-message" |
|
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-1 px-2 rounded" |
|
> Chat |
|
</button> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</section> |
|
`); |
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|