import * as React from 'react'; import {useState} from 'react'; import Navigation from "./Navigation"; import {topicUrl} from "../app/utils"; import Paper from "@mui/material/Paper"; import IconButton from "@mui/material/IconButton"; import TextField from "@mui/material/TextField"; import SendIcon from "@mui/icons-material/Send"; import api from "../app/Api"; import SendDialog from "./SendDialog"; import KeyboardArrowUpIcon from '@mui/icons-material/KeyboardArrowUp'; import {Portal, Snackbar} from "@mui/material"; const Messaging = (props) => { const [message, setMessage] = useState(""); const [dialogKey, setDialogKey] = useState(0); const dialogOpenMode = props.dialogOpenMode; const subscription = props.selected; const handleOpenDialogClick = () => { props.onDialogOpenModeChange(SendDialog.OPEN_MODE_DEFAULT); }; const handleSendDialogClose = () => { props.onDialogOpenModeChange(""); setDialogKey(prev => prev+1); }; return ( <> {subscription && } props.onDialogOpenModeChange(prev => (prev) ? prev : SendDialog.OPEN_MODE_DRAG)} // Only update if not already open onResetOpenMode={() => props.onDialogOpenModeChange(SendDialog.OPEN_MODE_DEFAULT)} /> ); } const MessageBar = (props) => { const subscription = props.subscription; const [snackOpen, setSnackOpen] = useState(false); const handleSendClick = async () => { try { await api.publish(subscription.baseUrl, subscription.topic, props.message); } catch (e) { console.log(`[MessageBar] Error publishing message`, e); setSnackOpen(true); } props.onMessageChange(""); }; return ( theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900] }} > props.onMessageChange(ev.target.value)} onKeyPress={(ev) => { if (ev.key === 'Enter') { ev.preventDefault(); handleSendClick(); } }} /> setSnackOpen(false)} message="Error publishing message" /> ); }; export default Messaging;