mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 20:06:24 +00:00
99 lines
3.0 KiB
JavaScript
99 lines
3.0 KiB
JavaScript
|
import React, { Component } from 'react';
|
||
|
import { w3cwebsocket as W3CWebSocket } from "websocket";
|
||
|
import {Button, TextField, Link, Grid, Typography, Container, Card, CardHeader, Paper, Avatar} from "@mui/material";
|
||
|
import { withStyles } from "@mui/material";
|
||
|
|
||
|
|
||
|
|
||
|
export default class Chat extends Component {
|
||
|
constructor(props) {
|
||
|
super(props);
|
||
|
}
|
||
|
|
||
|
state = {
|
||
|
messages: [],
|
||
|
value:'',
|
||
|
orderId: 2,
|
||
|
};
|
||
|
|
||
|
client = new W3CWebSocket('ws://' + window.location.host + '/ws/chat/' + this.props.data.orderId + '/');
|
||
|
|
||
|
componentDidMount() {
|
||
|
this.client.onopen = () => {
|
||
|
console.log('WebSocket Client Connected')
|
||
|
console.log(this.props.data)
|
||
|
}
|
||
|
this.client.onmessage = (message) => {
|
||
|
const dataFromServer = JSON.parse(message.data);
|
||
|
console.log('Got reply!', dataFromServer.type);
|
||
|
if (dataFromServer){
|
||
|
this.setState((state) =>
|
||
|
({
|
||
|
messages: [...state.messages,
|
||
|
{
|
||
|
msg: dataFromServer.message,
|
||
|
userNick: dataFromServer.user_nick,
|
||
|
}],
|
||
|
|
||
|
})
|
||
|
|
||
|
)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
onButtonClicked = (e) => {
|
||
|
this.client.send(JSON.stringify({
|
||
|
type: "message",
|
||
|
message: this.state.value,
|
||
|
nick: this.props.data.urNick,
|
||
|
}));
|
||
|
this.state.value = ''
|
||
|
e.preventDefault();
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<Container component="main" maxWidth="xs">
|
||
|
<Paper style={{ height: 300, maxHeight: 300, overflow: 'auto', boxShadow: 'none', }}>
|
||
|
{this.state.messages.map(message => <>
|
||
|
{/* {message.userNick == this.props.data.urNick ? align='right' : align='left'} */}
|
||
|
<Card align="left">
|
||
|
<CardHeader
|
||
|
avatar={
|
||
|
<Avatar
|
||
|
alt={message.userNick}
|
||
|
src={window.location.origin +'/static/assets/avatars/' + message.userNick + '.png'}
|
||
|
/>
|
||
|
}
|
||
|
title={message.userNick}
|
||
|
subheader={message.msg}
|
||
|
/>
|
||
|
</Card>
|
||
|
</>)}
|
||
|
</Paper>
|
||
|
<form noValidate onSubmit={this.onButtonClicked}>
|
||
|
<Grid containter alignItems="stretch" style={{ display: "flex" }}>
|
||
|
<Grid item alignItems="stretch" style={{ display: "flex" }}>
|
||
|
<TextField
|
||
|
label="Type a message"
|
||
|
variant="outlined"
|
||
|
size="small"
|
||
|
value={this.state.value}
|
||
|
onChange={e => {
|
||
|
this.setState({ value: e.target.value });
|
||
|
this.value = this.state.value;
|
||
|
}}
|
||
|
/>
|
||
|
</Grid>
|
||
|
<Grid item alignItems="stretch" style={{ display: "flex" }}>
|
||
|
<Button type="submit" variant="contained" color="primary" > Send </Button>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</form>
|
||
|
</Container>
|
||
|
)
|
||
|
}
|
||
|
}
|