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

202 lines
7.6 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-08-29 12:07:00 +00:00
import { addOrUpdateMessages, clearMessageState, incrementMessageApiPage, setIsPreventAutoscroll, setTicketMessagesFetchState, 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";
2023-08-02 11:36:50 +00:00
import { KeyboardEvent, useEffect, useMemo, useRef, useState } from "react";
2023-03-21 13:00:10 +00:00
import { useParams } from "react-router-dom";
2023-08-02 11:36:50 +00:00
import { TicketMessage } from "@root/model/ticket";
import { sendTicketMessage } from "@root/api/tickets";
2023-03-21 13:00:10 +00:00
import { enqueueSnackbar } from "notistack";
2023-03-21 14:43:08 +00:00
import { useTicketStore } from "@root/stores/tickets";
2023-08-31 18:00:07 +00:00
import { getMessageFromFetchError, throttle, useEventListener, useSSESubscription, useTicketMessages, useToken } from "@frontend/kitui";
2023-03-20 15:27:42 +00:00
2023-03-20 15:27:42 +00:00
export default function Chat() {
2023-08-02 11:36:50 +00:00
const token = useToken();
2023-04-07 13:33:25 +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 [messageField, setMessageField] = useState<string>("");
const ticketId = useParams().ticketId;
const chatBoxRef = useRef<HTMLDivElement>(null);
const messageApiPage = useMessageStore(state => state.apiPage);
const messagesPerPage = useMessageStore(state => state.messagesPerPage);
const isPreventAutoscroll = useMessageStore(state => state.isPreventAutoscroll);
2023-08-29 12:07:00 +00:00
const fetchState = useMessageStore(state => state.ticketMessagesFetchState);
2023-04-07 13:33:25 +00:00
const lastMessageId = useMessageStore(state => state.lastMessageId);
2023-04-18 11:06:23 +00:00
2023-04-07 13:33:25 +00:00
const ticket = tickets.find(ticket => ticket.id === ticketId);
2023-04-18 11:06:23 +00:00
2023-08-29 12:07:00 +00:00
useTicketMessages({
2024-01-23 18:31:02 +00:00
url: process.env.REACT_APP_DOMAIN + "/heruvym/getMessages",
ticketId,
2023-08-02 11:36:50 +00:00
messagesPerPage,
messageApiPage,
2023-08-29 12:07:00 +00:00
onSuccess: messages => {
2023-08-02 11:36:50 +00:00
if (chatBoxRef.current && chatBoxRef.current.scrollTop < 1) chatBoxRef.current.scrollTop = 1;
addOrUpdateMessages(messages);
},
2023-08-02 11:36:50 +00:00
onError: (error: Error) => {
const message = getMessageFromFetchError(error);
if (message) enqueueSnackbar(message);
},
2023-08-29 12:07:00 +00:00
onFetchStateChange: setTicketMessagesFetchState,
2023-08-02 11:36:50 +00:00
});
2023-04-18 11:06:23 +00:00
2023-08-02 11:36:50 +00:00
useSSESubscription<TicketMessage>({
enabled: Boolean(token) && Boolean(ticketId),
2024-01-23 18:31:02 +00:00
url: process.env.REACT_APP_DOMAIN + `/heruvym/ticket?ticket=${ticketId}&Authorization=${token}`,
2023-08-02 11:36:50 +00:00
onNewData: addOrUpdateMessages,
onDisconnect: () => {
2023-04-07 13:33:25 +00:00
clearMessageState();
setIsPreventAutoscroll(false);
2023-08-02 11:36:50 +00:00
},
marker: "ticket message"
});
2023-04-07 13:33:25 +00:00
2023-08-02 11:36:50 +00:00
const throttledScrollHandler = useMemo(() => throttle(() => {
2023-04-07 13:33:25 +00:00
const chatBox = chatBoxRef.current;
2023-08-02 11:36:50 +00:00
if (!chatBox) return;
2023-04-07 13:33:25 +00:00
2023-08-02 11:36:50 +00:00
const scrollBottom = chatBox.scrollHeight - chatBox.scrollTop - chatBox.clientHeight;
const isPreventAutoscroll = scrollBottom > chatBox.clientHeight * 20;
setIsPreventAutoscroll(isPreventAutoscroll);
2023-04-07 13:33:25 +00:00
2023-08-02 11:36:50 +00:00
if (fetchState !== "idle") return;
2023-04-07 13:33:25 +00:00
2023-08-02 11:36:50 +00:00
if (chatBox.scrollTop < chatBox.clientHeight) {
incrementMessageApiPage();
}
}, 200), [fetchState]);
2023-04-07 13:33:25 +00:00
2023-08-02 11:36:50 +00:00
useEventListener("scroll", throttledScrollHandler, chatBoxRef);
2023-04-07 13:33:25 +00:00
useEffect(function scrollOnNewMessage() {
if (!chatBoxRef.current) return;
if (!isPreventAutoscroll) {
setTimeout(() => {
scrollToBottom();
}, 50);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [lastMessageId]);
function scrollToBottom(behavior?: ScrollBehavior) {
if (!chatBoxRef.current) return;
const chatBox = chatBoxRef.current;
chatBox.scroll({
left: 0,
top: chatBox.scrollHeight,
behavior,
});
}
function handleSendMessage() {
if (!ticket || !messageField) return;
sendTicketMessage({
2023-08-31 14:30:48 +00:00
files: [],
lang: "ru",
message: messageField,
ticket: ticket.id,
2023-04-07 13:33:25 +00:00
});
setMessageField("");
}
2023-04-18 11:06:23 +00:00
function handleAddAttachment() { }
2023-04-18 11:06:23 +00:00
2023-04-07 13:33:25 +00:00
function handleTextfieldKeyPress(e: KeyboardEvent) {
if (e.key === "Enter" && !e.shiftKey) {
e.preventDefault();
handleSendMessage();
}
2023-03-21 13:00:10 +00:00
}
2023-04-07 13:33:25 +00:00
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",
}}>
<Typography>{ticket ? 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",
}}
>
{ticket && messages.map(message =>
<Message key={message.id} message={message} isSelf={ticket.user !== message.user_id} />
)}
</Box>
{ticket &&
<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,
}
}}
/>
}
2023-04-07 13:33:25 +00:00
</Box>
);
2023-03-22 09:24:51 +00:00
}