import { Box, Fab, FormControl, IconButton, InputAdornment, InputBase, Typography, useMediaQuery, useTheme, } from "@mui/material"; import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward"; import { useEffect, useRef, useState } from "react"; import { useParams } from "react-router-dom"; import CustomButton from "@components/CustomButton"; import SendIcon from "@components/icons/SendIcon"; import { throttle } from "@utils/decorators"; import { enqueueSnackbar } from "notistack"; import { useTicketStore } from "@root/stores/tickets"; import { addOrUpdateMessages, clearMessageState, incrementMessageApiPage, setIsPreventAutoscroll, setMessageFetchState, 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"; import ChatMessage from "@root/components/ChatMessage"; export default function SupportChat() { const theme = useTheme(); const upMd = useMediaQuery(theme.breakpoints.up("md")); const [messageField, setMessageField] = useState(""); const tickets = useTicketStore(state => state.tickets); const messages = useMessageStore(state => state.messages); const messageApiPage = useMessageStore(state => state.apiPage); const lastMessageId = useMessageStore(state => state.lastMessageId); const messagesPerPage = useMessageStore(state => state.messagesPerPage); const isPreventAutoscroll = useMessageStore(state => state.isPreventAutoscroll); const messagesFetchStateRef = useRef(useMessageStore.getState().fetchState); const token = authStore(state => state.token); const ticketId = useParams().ticketId; const ticket = tickets.find(ticket => ticket.id === ticketId); const chatBoxRef = useRef(); useEffect(function fetchTicketMessages() { if (!ticketId) return; const getTicketsBody: GetMessagesRequest = { amt: messagesPerPage, page: messageApiPage, ticket: ticketId, }; const controller = new AbortController(); setMessageFetchState("fetching"); getTicketMessages({ body: getTicketsBody, signal: controller.signal, }).then(result => { console.log("GetMessagesResponse", result); if (result?.length > 0) { addOrUpdateMessages(result); setMessageFetchState("idle"); } else setMessageFetchState("all fetched"); }).catch(error => { console.log("Error fetching messages", error); enqueueSnackbar(error.message); }); return () => { controller.abort(); }; }, [messageApiPage, messagesPerPage, 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(); clearMessageState(); }; }, [ticketId, token]); useEffect(function attachScrollHandler() { if (!chatBoxRef.current) return; const chatBox = chatBoxRef.current; const scrollHandler = () => { const scrollBottom = chatBox.scrollHeight - chatBox.scrollTop - chatBox.clientHeight; const isPreventAutoscroll = scrollBottom > chatBox.clientHeight; setIsPreventAutoscroll(isPreventAutoscroll); if (messagesFetchStateRef.current !== "idle") return; if (chatBox.scrollTop < chatBox.clientHeight) { if (chatBox.scrollTop < 1) chatBox.scrollTop = 1; incrementMessageApiPage(); } }; const throttledScrollHandler = throttle(scrollHandler, 200); chatBox.addEventListener("scroll", throttledScrollHandler); return () => { chatBox.removeEventListener("scroll", throttledScrollHandler); }; }, []); useEffect(function scrollOnNewMessage() { if (!chatBoxRef.current) return; if (!isPreventAutoscroll) { setTimeout(() => { scrollToBottom(); }, 50); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [lastMessageId]); useEffect(() => useMessageStore.subscribe(state => (messagesFetchStateRef.current = state.fetchState)), []); function handleSendMessage() { if (!ticket || !messageField) return; sendTicketMessage({ ticket: ticket.id, message: messageField, lang: "ru", files: [], }); setMessageField(""); } function scrollToBottom(behavior?: ScrollBehavior) { if (!chatBoxRef.current) return; const chatBox = chatBoxRef.current; chatBox.scroll({ left: 0, top: chatBox.scrollHeight, behavior, }); } const createdAt = ticket && new Date(ticket.created_at); const createdAtString = createdAt && createdAt.toLocaleDateString(undefined, { year: "numeric", month: "2-digit", day: "2-digit", }) + " " + createdAt.toLocaleTimeString(undefined, { hour: "2-digit", minute: "2-digit", }); return ( {ticket?.title} Создан: {createdAtString} {isPreventAutoscroll && ( scrollToBottom("smooth")} sx={{ position: "absolute", left: "10px", bottom: "10px", }} > )} {ticket && messages.map((message) => ( ))} setMessageField(e.target.value)} endAdornment={ !upMd && ( ) } /> {upMd && ( Отправить )} ); }