adminFront/src/pages/dashboard/Content/Support/Chat/Chat.tsx

226 lines
6.4 KiB
TypeScript
Raw Normal View History

2023-03-29 12:51:36 +00:00
import { Box, IconButton, InputAdornment, TextField, Typography, useMediaQuery, useTheme } from "@mui/material";
2023-03-31 15:07:37 +00:00
import { addOrUpdateMessages, clearMessages, setMessages, useMessageStore } from "@root/stores/messages";
2023-03-21 13:00:10 +00:00
import Message from "./Message";
import SendIcon from "@mui/icons-material/Send";
import AttachFileIcon from "@mui/icons-material/AttachFile";
import { KeyboardEvent, useEffect, useRef, useState } from "react";
import { useParams } from "react-router-dom";
import { GetMessagesRequest, TicketMessage } from "@root/model/ticket";
import { getTicketMessages, sendTicketMessage, subscribeToTicketMessages } from "@root/api/tickets";
import { enqueueSnackbar } from "notistack";
2023-03-21 14:43:08 +00:00
import { useTicketStore } from "@root/stores/tickets";
2023-04-18 11:06:23 +00:00
import { authStore } from "@root/stores/auth";
2023-03-20 15:27:42 +00:00
export default function Chat() {
2023-04-18 11:06:23 +00:00
const theme = useTheme();
const upMd = useMediaQuery(theme.breakpoints.up("md"));
const tickets = useTicketStore((state) => state.tickets);
const messages = useMessageStore((state) => state.messages);
const { token } = authStore();
const [messageField, setMessageField] = useState<string>("");
const ticketId = useParams().ticketId;
const chatBoxRef = useRef<HTMLDivElement>(null);
const ticket = tickets.find((ticket) => ticket.id === ticketId);
useEffect(
function scrollOnNewMessage() {
scrollToBottom();
},
[messages]
);
useEffect(
function fetchTicketMessages() {
if (!ticketId) return;
const getTicketsBody: GetMessagesRequest = {
amt: 100, // TODO use pagination
page: 0,
ticket: ticketId,
};
const controller = new AbortController();
getTicketMessages({
body: getTicketsBody,
signal: controller.signal,
})
.then((result) => {
console.log("GetMessagesResponse", result);
setMessages(result);
})
.catch((error) => {
console.log("Error fetching tickets", error);
enqueueSnackbar(error.message);
2023-03-21 13:00:10 +00:00
});
2023-04-18 11:06:23 +00:00
return () => {
controller.abort();
clearMessages();
};
},
[ticketId]
);
useEffect(
function subscribeToMessages() {
if (!ticketId) return;
if (!token) return;
const unsubscribe = subscribeToTicketMessages({
ticketId,
accessToken: token,
onMessage(event) {
try {
const newMessage = JSON.parse(event.data) as TicketMessage;
console.log("SSE: parsed newMessage:", newMessage);
addOrUpdateMessages([newMessage]);
} catch (error) {
console.log("SSE: couldn't parse:", event.data);
console.log("Error parsing message SSE", error);
}
},
onError(event) {
console.log("SSE Error:", event);
},
});
return () => {
unsubscribe();
};
},
[ticketId]
);
function scrollToBottom() {
if (!chatBoxRef.current) return;
chatBoxRef.current.scroll({
left: 0,
top: chatBoxRef.current.scrollHeight,
behavior: "smooth",
});
}
function handleSendMessage() {
if (!ticket || !messageField) return;
sendTicketMessage({
body: {
files: [],
lang: "ru",
message: messageField,
ticket: ticket.id,
},
});
setMessageField("");
}
function handleAddAttachment() {}
function handleTextfieldKeyPress(e: KeyboardEvent) {
if (e.key === "Enter" && !e.shiftKey) {
e.preventDefault();
handleSendMessage();
2023-03-21 13:00:10 +00:00
}
2023-04-18 11:06:23 +00:00
}
const sortedMessages = messages.sort(sortMessagesByTime);
return (
<Box
sx={{
border: "1px solid",
borderColor: theme.palette.grayDark.main,
height: "600px",
borderRadius: "3px",
p: "8px",
display: "flex",
flex: upMd ? "2 0 0" : undefined,
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
gap: "8px",
}}
>
{ticket ? (
<>
<Typography>{ticket.title}</Typography>
<Box
ref={chatBoxRef}
sx={{
width: "100%",
backgroundColor: "#46474a",
flexGrow: 1,
display: "flex",
flexDirection: "column",
gap: "12px",
p: "8px",
overflow: "auto",
colorScheme: "dark",
}}
>
{sortedMessages.map((message) => (
<Message key={message.id} message={message} isSelf={ticket.user !== message.user_id} />
))}
</Box>
<TextField
value={messageField}
onChange={(e) => setMessageField(e.target.value)}
onKeyPress={handleTextfieldKeyPress}
id="message-input"
placeholder="Написать сообщение"
fullWidth
multiline
maxRows={8}
InputProps={{
style: {
backgroundColor: theme.palette.content.main,
color: theme.palette.secondary.main,
},
endAdornment: (
<InputAdornment position="end">
<IconButton
onClick={handleSendMessage}
sx={{
height: "45px",
width: "45px",
p: 0,
}}
>
<SendIcon sx={{ color: theme.palette.golden.main }} />
</IconButton>
<IconButton
onClick={handleAddAttachment}
sx={{
height: "45px",
width: "45px",
p: 0,
}}
>
<AttachFileIcon sx={{ color: theme.palette.golden.main }} />
</IconButton>
</InputAdornment>
),
}}
InputLabelProps={{
style: {
color: theme.palette.secondary.main,
},
}}
/>
</>
) : (
<Typography>Выберите тикет</Typography>
)}
</Box>
);
2023-03-22 09:24:51 +00:00
}
function sortMessagesByTime(message1: TicketMessage, message2: TicketMessage) {
2023-04-18 11:06:23 +00:00
const date1 = new Date(message1.created_at).getTime();
const date2 = new Date(message2.created_at).getTime();
return date1 - date2;
}