2023-03-30 12:33:28 +00:00
|
|
|
|
import { Box, Fab, FormControl, IconButton, InputAdornment, InputBase, Typography, useMediaQuery, useTheme, } from "@mui/material";
|
2023-03-19 12:30:40 +00:00
|
|
|
|
import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward";
|
2022-12-24 10:41:12 +00:00
|
|
|
|
import { useEffect, useRef, useState } from "react";
|
|
|
|
|
import { useParams } from "react-router-dom";
|
2023-03-19 12:30:40 +00:00
|
|
|
|
import CustomButton from "@components/CustomButton";
|
|
|
|
|
import SendIcon from "@components/icons/SendIcon";
|
|
|
|
|
import Message from "./Message";
|
|
|
|
|
import { throttle } from "@utils/decorators";
|
2023-03-31 15:01:43 +00:00
|
|
|
|
import { enqueueSnackbar } from "notistack";
|
|
|
|
|
import { useTicketStore } from "@root/stores/tickets";
|
|
|
|
|
import { addOrUpdateMessages, clearMessages, setMessages, useMessageStore } from "@root/stores/messages";
|
|
|
|
|
import { getTicketMessages, sendTicketMessage, subscribeToTicketMessages } from "@root/api/tickets";
|
|
|
|
|
import { GetMessagesRequest, TicketMessage } from "@root/model/ticket";
|
|
|
|
|
import { authStore } from "@root/stores/makeRequest";
|
2022-12-15 14:09:07 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
|
2022-12-15 14:09:07 +00:00
|
|
|
|
export default function SupportChat() {
|
2023-03-30 12:33:28 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const upMd = useMediaQuery(theme.breakpoints.up("md"));
|
2023-03-31 15:01:43 +00:00
|
|
|
|
const [messageField, setMessageField] = useState<string>("");
|
|
|
|
|
const tickets = useTicketStore(state => state.tickets);
|
|
|
|
|
const messages = useMessageStore(state => state.messages);
|
|
|
|
|
const token = authStore(state => state.token);
|
2023-03-30 12:33:28 +00:00
|
|
|
|
const ticketId = useParams().ticketId;
|
2023-03-31 15:01:43 +00:00
|
|
|
|
const ticket = tickets.find(ticket => ticket.id === ticketId);
|
2023-03-30 12:33:28 +00:00
|
|
|
|
const chatBoxRef = useRef<HTMLDivElement>();
|
|
|
|
|
const [isPreventAutoscroll, setIsPreventAutoscroll] = useState<boolean>(false);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-31 15:01:43 +00:00
|
|
|
|
useEffect(function fetchTicketMessages() {
|
|
|
|
|
if (!ticketId) return;
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-31 15:01:43 +00:00
|
|
|
|
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-30 12:33:28 +00:00
|
|
|
|
});
|
2023-03-31 15:01:43 +00:00
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
controller.abort();
|
|
|
|
|
clearMessages();
|
|
|
|
|
};
|
|
|
|
|
}, [ticketId]);
|
|
|
|
|
|
|
|
|
|
useEffect(function subscribeToMessages() {
|
|
|
|
|
if (!ticketId || !token) return;
|
|
|
|
|
|
|
|
|
|
const unsubscribe = subscribeToTicketMessages({
|
|
|
|
|
ticketId: 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, token]);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
useEffect(function refreshChatScrollTop() {
|
|
|
|
|
if (!chatBoxRef.current) return;
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
const chatBox = chatBoxRef.current;
|
|
|
|
|
const scrollHandler = () =>
|
|
|
|
|
setIsPreventAutoscroll(chatBox.scrollTop + chatBox.clientHeight * 2 < chatBox.scrollHeight);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
const throttledScrollHandler = throttle(scrollHandler, 200);
|
|
|
|
|
chatBox.addEventListener("scroll", throttledScrollHandler);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
return () => {
|
|
|
|
|
chatBox.removeEventListener("scroll", throttledScrollHandler);
|
|
|
|
|
};
|
|
|
|
|
}, []);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
useEffect(function scrollOnMessage() {
|
|
|
|
|
if (!chatBoxRef.current) return;
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
if (!isPreventAutoscroll) scrollToBottom();
|
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
|
}, [messages]);
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
async function handleSendMessage() {
|
2023-03-31 15:01:43 +00:00
|
|
|
|
if (!ticket || !messageField) return;
|
2022-12-24 10:41:12 +00:00
|
|
|
|
|
2023-03-31 15:01:43 +00:00
|
|
|
|
sendTicketMessage({
|
|
|
|
|
ticket: ticket.id,
|
|
|
|
|
message: messageField,
|
2023-03-30 12:33:28 +00:00
|
|
|
|
lang: "ru",
|
|
|
|
|
files: [],
|
|
|
|
|
});
|
2023-03-31 15:01:43 +00:00
|
|
|
|
setMessageField("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function scrollToBottom() {
|
|
|
|
|
if (!chatBoxRef.current) return;
|
|
|
|
|
|
|
|
|
|
chatBoxRef.current.scroll({
|
|
|
|
|
left: 0,
|
|
|
|
|
top: chatBoxRef.current.scrollHeight,
|
|
|
|
|
behavior: "smooth",
|
|
|
|
|
});
|
2022-12-24 10:41:12 +00:00
|
|
|
|
}
|
2022-12-15 14:09:07 +00:00
|
|
|
|
|
2023-04-06 08:47:28 +00:00
|
|
|
|
if (!ticket) return null;
|
|
|
|
|
|
|
|
|
|
const sortedMessages = messages.sort(sortMessagesTime);
|
|
|
|
|
const createdAt = new Date(ticket.created_at);
|
|
|
|
|
const createdAtString = createdAt.toLocaleDateString(undefined, {
|
|
|
|
|
year: "numeric",
|
|
|
|
|
month: "2-digit",
|
|
|
|
|
day: "2-digit",
|
|
|
|
|
}) + " " + createdAt.toLocaleTimeString(undefined, {
|
|
|
|
|
hour: "2-digit",
|
|
|
|
|
minute: "2-digit",
|
|
|
|
|
});
|
|
|
|
|
|
2023-03-30 12:33:28 +00:00
|
|
|
|
return (
|
2023-04-06 08:47:28 +00:00
|
|
|
|
<Box sx={{
|
|
|
|
|
backgroundColor: upMd ? "white" : undefined,
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
maxHeight: upMd ? "443px" : undefined,
|
|
|
|
|
borderRadius: "12px",
|
|
|
|
|
p: upMd ? "20px" : undefined,
|
|
|
|
|
gap: "40px",
|
|
|
|
|
boxShadow: upMd
|
|
|
|
|
? `0px 100px 309px rgba(210, 208, 225, 0.24),
|
2022-12-15 14:09:07 +00:00
|
|
|
|
0px 41.7776px 129.093px rgba(210, 208, 225, 0.172525),
|
|
|
|
|
0px 22.3363px 69.0192px rgba(210, 208, 225, 0.143066),
|
|
|
|
|
0px 12.5216px 38.6916px rgba(210, 208, 225, 0.12),
|
|
|
|
|
0px 6.6501px 20.5488px rgba(210, 208, 225, 0.0969343),
|
|
|
|
|
0px 2.76726px 8.55082px rgba(210, 208, 225, 0.0674749)`
|
2023-04-06 08:47:28 +00:00
|
|
|
|
: undefined,
|
|
|
|
|
}}>
|
2023-03-30 12:33:28 +00:00
|
|
|
|
<Box
|
2022-12-15 14:09:07 +00:00
|
|
|
|
sx={{
|
2023-03-30 12:33:28 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "start",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
flexGrow: 1,
|
2022-12-15 14:09:07 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-03-30 12:33:28 +00:00
|
|
|
|
<Typography variant={upMd ? "h5" : "body2"} mb={"4px"}>
|
|
|
|
|
Заголовок
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
fontSize: "14px",
|
|
|
|
|
lineHeight: "17px",
|
|
|
|
|
color: theme.palette.grey2.main,
|
|
|
|
|
mb: upMd ? "9px" : "20px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-04-06 08:47:28 +00:00
|
|
|
|
Создан: {createdAtString}
|
2023-03-30 12:33:28 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: "#ECECF3",
|
|
|
|
|
border: `1px solid ${theme.palette.grey2.main}`,
|
|
|
|
|
borderRadius: "10px",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
width: "100%",
|
|
|
|
|
minHeight: "345px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
position: "relative",
|
|
|
|
|
width: "100%",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
borderBottom: `1px solid ${theme.palette.grey2.main}`,
|
|
|
|
|
height: "200px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{isPreventAutoscroll && (
|
|
|
|
|
<Fab
|
|
|
|
|
size="small"
|
|
|
|
|
onClick={scrollToBottom}
|
|
|
|
|
sx={{
|
|
|
|
|
position: "absolute",
|
|
|
|
|
left: "10px",
|
|
|
|
|
bottom: "10px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<ArrowDownwardIcon />
|
|
|
|
|
</Fab>
|
|
|
|
|
)}
|
|
|
|
|
<Box
|
|
|
|
|
ref={chatBoxRef}
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
width: "100%",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: upMd ? "20px" : "16px",
|
|
|
|
|
px: upMd ? "20px" : "5px",
|
|
|
|
|
py: upMd ? "20px" : "13px",
|
|
|
|
|
overflowY: "auto",
|
|
|
|
|
height: "100%",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-04-06 08:47:28 +00:00
|
|
|
|
{sortedMessages.map((message) => (
|
2023-03-30 12:33:28 +00:00
|
|
|
|
<Message
|
|
|
|
|
key={message.id}
|
|
|
|
|
text={message.message}
|
|
|
|
|
time={new Date(message.created_at).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" })}
|
2023-03-31 15:01:43 +00:00
|
|
|
|
isSelf={ticket.user === message.user_id}
|
2023-03-30 12:33:28 +00:00
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<FormControl>
|
|
|
|
|
<InputBase
|
2023-03-31 15:01:43 +00:00
|
|
|
|
value={messageField}
|
2023-03-30 12:33:28 +00:00
|
|
|
|
fullWidth
|
|
|
|
|
placeholder="Текст обращения"
|
|
|
|
|
id="message"
|
|
|
|
|
multiline
|
|
|
|
|
sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
p: 0,
|
|
|
|
|
}}
|
|
|
|
|
inputProps={{
|
|
|
|
|
sx: {
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
lineHeight: "19px",
|
|
|
|
|
pt: upMd ? "13px" : "28px",
|
|
|
|
|
pb: upMd ? "13px" : "24px",
|
|
|
|
|
px: "19px",
|
|
|
|
|
maxHeight: "calc(19px * 5)",
|
|
|
|
|
},
|
|
|
|
|
}}
|
2023-03-31 15:01:43 +00:00
|
|
|
|
onChange={(e) => setMessageField(e.target.value)}
|
2023-03-30 12:33:28 +00:00
|
|
|
|
endAdornment={
|
|
|
|
|
!upMd && (
|
|
|
|
|
<InputAdornment position="end">
|
|
|
|
|
<IconButton
|
|
|
|
|
onClick={handleSendMessage}
|
|
|
|
|
sx={{
|
|
|
|
|
height: "45px",
|
|
|
|
|
width: "45px",
|
|
|
|
|
mr: "13px",
|
|
|
|
|
p: 0,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<SendIcon />
|
|
|
|
|
</IconButton>
|
|
|
|
|
</InputAdornment>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</FormControl>
|
|
|
|
|
</Box>
|
2022-12-15 14:09:07 +00:00
|
|
|
|
</Box>
|
2023-03-30 12:33:28 +00:00
|
|
|
|
{upMd && (
|
|
|
|
|
<Box sx={{ alignSelf: "end" }}>
|
|
|
|
|
<CustomButton
|
|
|
|
|
onClick={handleSendMessage}
|
2023-03-31 15:01:43 +00:00
|
|
|
|
disabled={!messageField}
|
2023-03-30 12:33:28 +00:00
|
|
|
|
variant="contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.brightPurple.main,
|
|
|
|
|
}}
|
2023-03-19 12:30:40 +00:00
|
|
|
|
>
|
2023-03-30 12:33:28 +00:00
|
|
|
|
Отправить
|
|
|
|
|
</CustomButton>
|
|
|
|
|
</Box>
|
|
|
|
|
)}
|
2022-12-15 14:09:07 +00:00
|
|
|
|
</Box>
|
2023-03-30 12:33:28 +00:00
|
|
|
|
);
|
2023-03-19 12:30:40 +00:00
|
|
|
|
}
|
2023-04-06 08:47:28 +00:00
|
|
|
|
|
|
|
|
|
function sortMessagesTime(ticket1: TicketMessage, ticket2: TicketMessage) {
|
|
|
|
|
const date1 = new Date(ticket1.created_at).getTime();
|
|
|
|
|
const date2 = new Date(ticket2.created_at).getTime();
|
|
|
|
|
return date1 - date2;
|
|
|
|
|
}
|