2024-02-06 14:39:02 +00:00
|
|
|
|
import {
|
|
|
|
|
Box,
|
|
|
|
|
FormControl,
|
|
|
|
|
IconButton,
|
|
|
|
|
InputAdornment,
|
|
|
|
|
InputBase,
|
|
|
|
|
SxProps,
|
|
|
|
|
Theme,
|
|
|
|
|
Typography,
|
|
|
|
|
useMediaQuery,
|
|
|
|
|
useTheme,
|
|
|
|
|
} from "@mui/material";
|
|
|
|
|
import {
|
2024-04-22 11:55:19 +00:00
|
|
|
|
addOrUpdateUnauthMessages,
|
2024-03-13 08:54:52 +00:00
|
|
|
|
incrementUnauthMessage,
|
2024-02-06 14:39:02 +00:00
|
|
|
|
setUnauthIsPreventAutoscroll,
|
2024-04-22 11:55:19 +00:00
|
|
|
|
useTicketStore,
|
2024-03-06 11:13:28 +00:00
|
|
|
|
} from "@root/ticket";
|
2024-04-22 11:55:19 +00:00
|
|
|
|
import type { TouchEvent, WheelEvent } from "react";
|
|
|
|
|
import * as React from "react";
|
2024-03-06 11:13:28 +00:00
|
|
|
|
import { useEffect, useMemo, useRef, useState } from "react";
|
2024-02-06 14:39:02 +00:00
|
|
|
|
import ChatMessage from "./ChatMessage";
|
2024-03-10 14:40:48 +00:00
|
|
|
|
import ChatVideo from "./ChatVideo";
|
2024-02-06 14:39:02 +00:00
|
|
|
|
import SendIcon from "@icons/SendIcon";
|
|
|
|
|
import UserCircleIcon from "./UserCircleIcon";
|
2024-03-13 14:40:43 +00:00
|
|
|
|
import { throttle } from "@frontend/kitui";
|
2024-02-10 14:58:36 +00:00
|
|
|
|
import ArrowLeft from "@icons/questionsPage/arrowLeft";
|
2024-03-06 11:13:28 +00:00
|
|
|
|
import { useUserStore } from "@root/user";
|
2024-03-09 21:01:57 +00:00
|
|
|
|
import AttachFileIcon from "@mui/icons-material/AttachFile";
|
2024-03-06 11:13:28 +00:00
|
|
|
|
import ChatImage from "./ChatImage";
|
2024-03-09 22:05:54 +00:00
|
|
|
|
import ChatDocument from "@ui_kit/FloatingSupportChat/ChatDocument";
|
2024-03-11 16:02:47 +00:00
|
|
|
|
import {
|
|
|
|
|
ACCEPT_SEND_MEDIA_TYPES_MAP,
|
2024-04-22 11:55:19 +00:00
|
|
|
|
checkAcceptableMediaType,
|
2024-03-11 16:02:47 +00:00
|
|
|
|
} from "@utils/checkAcceptableMediaType";
|
2024-03-10 14:40:48 +00:00
|
|
|
|
import { enqueueSnackbar } from "notistack";
|
2024-02-06 14:39:02 +00:00
|
|
|
|
|
2024-04-22 11:55:19 +00:00
|
|
|
|
const workingHoursMessage =
|
|
|
|
|
"Здравствуйте, задайте ваш вопрос и наш оператор вам ответит в течение 10 минут";
|
|
|
|
|
const offHoursMessage =
|
|
|
|
|
"Здравствуйте, к сожалению, сейчас операторы не работают. Задайте ваш вопрос, и вам ответят в 10:00 по московскому времени";
|
2024-03-13 14:40:43 +00:00
|
|
|
|
|
2024-02-06 14:39:02 +00:00
|
|
|
|
interface Props {
|
2024-02-14 16:47:30 +00:00
|
|
|
|
open: boolean;
|
2024-02-06 14:39:02 +00:00
|
|
|
|
sx?: SxProps<Theme>;
|
2024-02-10 14:58:36 +00:00
|
|
|
|
onclickArrow?: () => void;
|
2024-03-09 21:01:57 +00:00
|
|
|
|
sendMessage: (a: string) => Promise<boolean>;
|
2024-03-06 11:13:28 +00:00
|
|
|
|
sendFile: (a: File | undefined) => Promise<true>;
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-09 21:01:57 +00:00
|
|
|
|
export default function Chat({
|
|
|
|
|
open = false,
|
|
|
|
|
sx,
|
|
|
|
|
onclickArrow,
|
|
|
|
|
sendMessage,
|
|
|
|
|
sendFile,
|
|
|
|
|
}: Props) {
|
2024-02-06 14:39:02 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const upMd = useMediaQuery(theme.breakpoints.up("md"));
|
2024-02-10 14:58:36 +00:00
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(800));
|
2024-02-06 14:39:02 +00:00
|
|
|
|
const [messageField, setMessageField] = useState<string>("");
|
2024-03-10 00:56:34 +00:00
|
|
|
|
const [disableFileButton, setDisableFileButton] = useState(false);
|
2024-03-06 11:13:28 +00:00
|
|
|
|
|
|
|
|
|
const user = useUserStore((state) => state.user?._id);
|
2024-03-09 21:01:57 +00:00
|
|
|
|
const ticket = useTicketStore(
|
|
|
|
|
(state) => state[user ? "authData" : "unauthData"],
|
|
|
|
|
);
|
2024-03-06 11:13:28 +00:00
|
|
|
|
|
2024-03-09 21:01:57 +00:00
|
|
|
|
const messages = ticket.messages;
|
|
|
|
|
const isMessageSending = ticket.isMessageSending;
|
|
|
|
|
const isPreventAutoscroll = ticket.isPreventAutoscroll;
|
|
|
|
|
const lastMessageId = ticket.lastMessageId;
|
|
|
|
|
const fetchState = ticket.unauthTicketMessageFetchState;
|
2024-03-06 11:13:28 +00:00
|
|
|
|
|
2024-02-06 14:39:02 +00:00
|
|
|
|
const chatBoxRef = useRef<HTMLDivElement>(null);
|
|
|
|
|
|
2024-04-22 11:55:19 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
const date = new Date();
|
|
|
|
|
const currentHourUTC = date.getUTCHours();
|
|
|
|
|
const MscTime = 3; // Москва UTC+3;
|
|
|
|
|
const moscowHour = (currentHourUTC + MscTime) % 24;
|
|
|
|
|
const greetingMessage =
|
|
|
|
|
moscowHour >= 10 && moscowHour < 15
|
|
|
|
|
? workingHoursMessage
|
|
|
|
|
: offHoursMessage;
|
|
|
|
|
|
|
|
|
|
const greetingMessageObj = {
|
|
|
|
|
created_at: new Date().toISOString(),
|
|
|
|
|
files: [],
|
|
|
|
|
id: "111ck2tepkvc9g6irk3fugg",
|
|
|
|
|
message: greetingMessage,
|
|
|
|
|
request_screenshot: "",
|
|
|
|
|
session_id: "111",
|
|
|
|
|
shown: { me: 1 },
|
|
|
|
|
ticket_id: "111",
|
|
|
|
|
user_id: "111",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
addOrUpdateUnauthMessages([greetingMessageObj]);
|
|
|
|
|
|
|
|
|
|
if (open) {
|
|
|
|
|
scrollToBottom();
|
|
|
|
|
}
|
|
|
|
|
}, [open]);
|
|
|
|
|
|
2024-03-06 11:13:28 +00:00
|
|
|
|
const sendMessageHC = async () => {
|
2024-03-09 21:01:57 +00:00
|
|
|
|
const successful = await sendMessage(messageField);
|
2024-03-06 11:13:28 +00:00
|
|
|
|
if (successful) {
|
|
|
|
|
setMessageField("");
|
|
|
|
|
}
|
2024-03-09 21:01:57 +00:00
|
|
|
|
};
|
2024-03-10 14:40:48 +00:00
|
|
|
|
const sendFileHC = async (file: File) => {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
const check = checkAcceptableMediaType(file);
|
2024-03-10 14:40:48 +00:00
|
|
|
|
if (check.length > 0) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
enqueueSnackbar(check);
|
|
|
|
|
return;
|
2024-03-10 14:40:48 +00:00
|
|
|
|
}
|
2024-03-11 16:02:47 +00:00
|
|
|
|
setDisableFileButton(true);
|
|
|
|
|
await sendFile(file);
|
|
|
|
|
setDisableFileButton(false);
|
2024-03-10 00:56:34 +00:00
|
|
|
|
};
|
2024-02-06 14:39:02 +00:00
|
|
|
|
|
2024-03-09 21:01:57 +00:00
|
|
|
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
2024-02-06 14:39:02 +00:00
|
|
|
|
|
|
|
|
|
const throttledScrollHandler = useMemo(
|
|
|
|
|
() =>
|
|
|
|
|
throttle(() => {
|
|
|
|
|
const chatBox = chatBoxRef.current;
|
|
|
|
|
if (!chatBox) return;
|
|
|
|
|
|
|
|
|
|
const scrollBottom =
|
|
|
|
|
chatBox.scrollHeight - chatBox.scrollTop - chatBox.clientHeight;
|
|
|
|
|
const isPreventAutoscroll = scrollBottom > chatBox.clientHeight;
|
|
|
|
|
setUnauthIsPreventAutoscroll(isPreventAutoscroll);
|
|
|
|
|
|
|
|
|
|
if (fetchState !== "idle") return;
|
|
|
|
|
|
|
|
|
|
if (chatBox.scrollTop < chatBox.clientHeight) {
|
2024-03-13 08:54:52 +00:00
|
|
|
|
incrementUnauthMessage();
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}
|
|
|
|
|
}, 200),
|
|
|
|
|
[fetchState],
|
|
|
|
|
);
|
|
|
|
|
|
2024-03-06 11:13:28 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (chatBoxRef.current && chatBoxRef.current.scrollTop < 1)
|
|
|
|
|
chatBoxRef.current.scrollTop = 1;
|
2024-03-09 21:01:57 +00:00
|
|
|
|
}, [messages]);
|
2024-02-06 14:39:02 +00:00
|
|
|
|
useEffect(
|
|
|
|
|
function scrollOnNewMessage() {
|
|
|
|
|
if (!chatBoxRef.current) return;
|
|
|
|
|
|
|
|
|
|
if (!isPreventAutoscroll) {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
scrollToBottom();
|
|
|
|
|
}, 50);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[lastMessageId],
|
|
|
|
|
);
|
2024-03-13 14:40:43 +00:00
|
|
|
|
|
|
|
|
|
const loadNewMessages = (
|
|
|
|
|
event: WheelEvent<HTMLDivElement> | TouchEvent<HTMLDivElement>,
|
|
|
|
|
) => {
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
|
|
throttledScrollHandler();
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-06 14:39:02 +00:00
|
|
|
|
function scrollToBottom(behavior?: ScrollBehavior) {
|
|
|
|
|
if (!chatBoxRef.current) return;
|
|
|
|
|
|
|
|
|
|
const chatBox = chatBoxRef.current;
|
|
|
|
|
chatBox.scroll({
|
|
|
|
|
left: 0,
|
|
|
|
|
top: chatBox.scrollHeight,
|
|
|
|
|
behavior,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
const handleTextfieldKeyPress: React.KeyboardEventHandler<
|
|
|
|
|
HTMLInputElement | HTMLTextAreaElement
|
|
|
|
|
> = (e) => {
|
|
|
|
|
if (e.key === "Enter" && !e.shiftKey) {
|
|
|
|
|
e.preventDefault();
|
2024-03-06 11:13:28 +00:00
|
|
|
|
sendMessageHC();
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
2024-02-14 16:47:30 +00:00
|
|
|
|
<>
|
|
|
|
|
{open && (
|
2024-02-06 14:39:02 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2024-02-14 16:47:30 +00:00
|
|
|
|
height: isMobile
|
|
|
|
|
? "100%"
|
|
|
|
|
: "clamp(250px, calc(100vh - 90px), 600px)",
|
|
|
|
|
backgroundColor: "#944FEE",
|
|
|
|
|
borderRadius: "8px",
|
|
|
|
|
...sx,
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2024-02-14 16:47:30 +00:00
|
|
|
|
<Box
|
2024-02-06 14:39:02 +00:00
|
|
|
|
sx={{
|
2024-02-14 16:47:30 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
gap: "9px",
|
|
|
|
|
pl: "22px",
|
|
|
|
|
pt: "12px",
|
|
|
|
|
pb: "20px",
|
|
|
|
|
filter: "drop-shadow(0px 3px 12px rgba(37, 39, 52, 0.3))",
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2024-02-14 16:47:30 +00:00
|
|
|
|
{isMobile && (
|
|
|
|
|
<IconButton onClick={onclickArrow}>
|
|
|
|
|
<ArrowLeft color="white" />
|
|
|
|
|
</IconButton>
|
|
|
|
|
)}
|
|
|
|
|
<UserCircleIcon />
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
mt: "5px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "3px",
|
|
|
|
|
color: theme.palette.common.white,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-04-22 11:55:19 +00:00
|
|
|
|
<Typography>Данила</Typography>
|
2024-02-14 16:47:30 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
lineHeight: "19px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
онлайн-консультант
|
|
|
|
|
</Typography>
|
2024-04-22 11:55:19 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
lineHeight: "19px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
время работы 10:00-3:00 по мск
|
|
|
|
|
</Typography>
|
2024-02-14 16:47:30 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
2024-02-06 14:39:02 +00:00
|
|
|
|
sx={{
|
2024-02-14 16:47:30 +00:00
|
|
|
|
flexGrow: 1,
|
|
|
|
|
backgroundColor: "white",
|
|
|
|
|
borderRadius: "8px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2024-02-06 14:39:02 +00:00
|
|
|
|
}}
|
2024-02-14 16:47:30 +00:00
|
|
|
|
>
|
|
|
|
|
<Box
|
2024-03-13 14:40:43 +00:00
|
|
|
|
onWheel={loadNewMessages}
|
|
|
|
|
onTouchMove={loadNewMessages}
|
2024-02-14 16:47:30 +00:00
|
|
|
|
ref={chatBoxRef}
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
width: "100%",
|
|
|
|
|
flexBasis: 0,
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: upMd ? "20px" : "16px",
|
|
|
|
|
px: upMd ? "20px" : "5px",
|
|
|
|
|
py: upMd ? "20px" : "13px",
|
|
|
|
|
overflowY: "auto",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-03-06 11:13:28 +00:00
|
|
|
|
{ticket.sessionData?.ticketId &&
|
|
|
|
|
messages.map((message) => {
|
2024-03-10 14:40:48 +00:00
|
|
|
|
const isFileVideo = () => {
|
|
|
|
|
if (message.files) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return ACCEPT_SEND_MEDIA_TYPES_MAP.video.some(
|
|
|
|
|
(fileType) =>
|
|
|
|
|
message.files[0].toLowerCase().endsWith(fileType),
|
|
|
|
|
);
|
2024-03-10 14:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2024-03-09 22:05:54 +00:00
|
|
|
|
const isFileImage = () => {
|
2024-03-09 22:28:42 +00:00
|
|
|
|
if (message.files) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return ACCEPT_SEND_MEDIA_TYPES_MAP.picture.some(
|
|
|
|
|
(fileType) =>
|
|
|
|
|
message.files[0].toLowerCase().endsWith(fileType),
|
|
|
|
|
);
|
2024-03-09 22:05:54 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
const isFileDocument = () => {
|
2024-03-09 22:28:42 +00:00
|
|
|
|
if (message.files) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return ACCEPT_SEND_MEDIA_TYPES_MAP.document.some(
|
|
|
|
|
(fileType) =>
|
|
|
|
|
message.files[0].toLowerCase().endsWith(fileType),
|
|
|
|
|
);
|
2024-03-09 22:05:54 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2024-03-09 22:28:42 +00:00
|
|
|
|
if (message.files.length > 0 && isFileImage()) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return (
|
|
|
|
|
<ChatImage
|
|
|
|
|
unAuthenticated
|
|
|
|
|
key={message.id}
|
|
|
|
|
file={message.files[0]}
|
|
|
|
|
createdAt={message.created_at}
|
|
|
|
|
isSelf={
|
|
|
|
|
(ticket.sessionData?.sessionId || user) ===
|
|
|
|
|
message.user_id
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2024-03-09 22:05:54 +00:00
|
|
|
|
}
|
2024-03-10 14:40:48 +00:00
|
|
|
|
if (message.files.length > 0 && isFileVideo()) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return (
|
|
|
|
|
<ChatVideo
|
|
|
|
|
unAuthenticated
|
|
|
|
|
key={message.id}
|
|
|
|
|
file={message.files[0]}
|
|
|
|
|
createdAt={message.created_at}
|
|
|
|
|
isSelf={
|
|
|
|
|
(ticket.sessionData?.sessionId || user) ===
|
|
|
|
|
message.user_id
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2024-03-10 14:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
if (message.files.length > 0 && isFileDocument()) {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
return (
|
|
|
|
|
<ChatDocument
|
|
|
|
|
unAuthenticated
|
|
|
|
|
key={message.id}
|
|
|
|
|
file={message.files[0]}
|
|
|
|
|
createdAt={message.created_at}
|
|
|
|
|
isSelf={
|
|
|
|
|
(ticket.sessionData?.sessionId || user) ===
|
|
|
|
|
message.user_id
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return (
|
|
|
|
|
<ChatMessage
|
2024-03-10 00:56:34 +00:00
|
|
|
|
unAuthenticated
|
|
|
|
|
key={message.id}
|
2024-03-11 16:02:47 +00:00
|
|
|
|
text={message.message}
|
2024-03-10 00:56:34 +00:00
|
|
|
|
createdAt={message.created_at}
|
2024-03-11 16:02:47 +00:00
|
|
|
|
isSelf={
|
|
|
|
|
(ticket.sessionData?.sessionId || user) ===
|
|
|
|
|
message.user_id
|
|
|
|
|
}
|
2024-03-06 11:13:28 +00:00
|
|
|
|
/>
|
2024-03-11 16:02:47 +00:00
|
|
|
|
);
|
2024-03-09 21:01:57 +00:00
|
|
|
|
})}
|
2024-02-14 16:47:30 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<FormControl fullWidth sx={{ borderTop: "1px solid black" }}>
|
|
|
|
|
<InputBase
|
|
|
|
|
value={messageField}
|
|
|
|
|
fullWidth
|
|
|
|
|
placeholder="Введите сообщение..."
|
|
|
|
|
id="message"
|
|
|
|
|
multiline
|
|
|
|
|
onKeyDown={handleTextfieldKeyPress}
|
|
|
|
|
sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
p: 0,
|
|
|
|
|
}}
|
|
|
|
|
inputProps={{
|
|
|
|
|
sx: {
|
|
|
|
|
fontWeight: 400,
|
|
|
|
|
fontSize: "16px",
|
|
|
|
|
lineHeight: "19px",
|
|
|
|
|
pt: upMd ? "30px" : "28px",
|
|
|
|
|
pb: upMd ? "30px" : "24px",
|
|
|
|
|
px: "19px",
|
|
|
|
|
maxHeight: "calc(19px * 5)",
|
|
|
|
|
color: "black",
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
onChange={(e) => setMessageField(e.target.value)}
|
|
|
|
|
endAdornment={
|
|
|
|
|
<InputAdornment position="end">
|
2024-03-10 14:40:48 +00:00
|
|
|
|
<IconButton
|
|
|
|
|
disabled={disableFileButton}
|
|
|
|
|
onClick={() => {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
if (!disableFileButton) fileInputRef.current?.click();
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-03-10 14:40:48 +00:00
|
|
|
|
<AttachFileIcon />
|
|
|
|
|
</IconButton>
|
2024-03-06 11:13:28 +00:00
|
|
|
|
<input
|
|
|
|
|
ref={fileInputRef}
|
|
|
|
|
id="fileinput"
|
|
|
|
|
onChange={(e) => {
|
2024-03-11 16:02:47 +00:00
|
|
|
|
if (e.target.files?.[0])
|
|
|
|
|
sendFileHC(e.target.files?.[0]);
|
2024-03-06 11:13:28 +00:00
|
|
|
|
}}
|
|
|
|
|
style={{ display: "none" }}
|
|
|
|
|
type="file"
|
|
|
|
|
/>
|
2024-02-14 16:47:30 +00:00
|
|
|
|
<IconButton
|
|
|
|
|
disabled={isMessageSending}
|
2024-03-06 11:13:28 +00:00
|
|
|
|
onClick={sendMessageHC}
|
2024-02-14 16:47:30 +00:00
|
|
|
|
sx={{
|
|
|
|
|
height: "53px",
|
|
|
|
|
width: "53px",
|
|
|
|
|
mr: "13px",
|
|
|
|
|
p: 0,
|
|
|
|
|
opacity: isMessageSending ? 0.3 : 1,
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<SendIcon
|
|
|
|
|
style={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100%",
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</IconButton>
|
|
|
|
|
</InputAdornment>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</FormControl>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
2024-02-06 14:39:02 +00:00
|
|
|
|
);
|
|
|
|
|
}
|