You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.0 KiB
96 lines
3.0 KiB
import type React from "react";
|
|
|
|
import { WaypointMessage } from "@components/PageComponents/Messages/WaypointMessage.js";
|
|
import { useDevice } from "@core/providers/useDevice.js";
|
|
import type { AllMessageTypes } from "@core/stores/deviceStore.js";
|
|
import { Hashicon } from "@emeraldpay/hashicon-react";
|
|
import {
|
|
CheckCircleIcon,
|
|
EllipsisHorizontalCircleIcon,
|
|
ExclamationCircleIcon
|
|
} from "@heroicons/react/24/outline";
|
|
import type { Protobuf } from "@meshtastic/meshtasticjs";
|
|
|
|
export interface MessageProps {
|
|
lastMsgSameUser: boolean;
|
|
message: AllMessageTypes;
|
|
sender?: Protobuf.NodeInfo;
|
|
}
|
|
|
|
export const Message = ({
|
|
lastMsgSameUser,
|
|
message,
|
|
sender
|
|
}: MessageProps): JSX.Element => {
|
|
const { setPeerInfoOpen, setActivePeer, connection } = useDevice();
|
|
|
|
const openPeer = (): void => {
|
|
setActivePeer(message.from);
|
|
setPeerInfoOpen(true);
|
|
};
|
|
|
|
return lastMsgSameUser ? (
|
|
<div className="ml-5 flex">
|
|
{message.state === "ack" ? (
|
|
<CheckCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
) : message.state === "waiting" ? (
|
|
<EllipsisHorizontalCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
) : (
|
|
<ExclamationCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
)}
|
|
{"waypointID" in message ? (
|
|
<WaypointMessage waypointID={message.waypointID} />
|
|
) : (
|
|
<span
|
|
className={`ml-4 border-l-2 border-l-backgroundPrimary pl-2 ${
|
|
message.state === "ack" ? "text-textPrimary" : "text-textSecondary"
|
|
}`}
|
|
>
|
|
{message.data}
|
|
</span>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<div className="mx-4 mt-2 gap-2">
|
|
<div className="flex gap-2">
|
|
<div className="w-6 cursor-pointer" onClick={openPeer}>
|
|
<Hashicon value={(sender?.num ?? 0).toString()} size={32} />
|
|
</div>
|
|
<span
|
|
className="cursor-pointer font-medium text-textPrimary"
|
|
onClick={openPeer}
|
|
>
|
|
{sender?.user?.longName ?? "UNK"}
|
|
</span>
|
|
<span className="mt-1 font-mono text-xs text-textSecondary">
|
|
{message.rxTime.toLocaleTimeString(undefined, {
|
|
hour: "2-digit",
|
|
minute: "2-digit"
|
|
})}
|
|
</span>
|
|
</div>
|
|
<div className="ml-1 flex">
|
|
{message.state === "ack" ? (
|
|
<CheckCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
) : message.state === "waiting" ? (
|
|
<EllipsisHorizontalCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
) : (
|
|
<ExclamationCircleIcon className="my-auto h-4 text-textSecondary" />
|
|
)}
|
|
{"waypointID" in message ? (
|
|
<WaypointMessage waypointID={message.waypointID} />
|
|
) : (
|
|
<span
|
|
className={`ml-4 border-l-2 border-l-backgroundPrimary pl-2 ${
|
|
message.state === "ack"
|
|
? "text-textPrimary"
|
|
: "text-textSecondary"
|
|
}`}
|
|
>
|
|
{message.data}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|