mirror of
https://github.com/meshtastic/web.git
synced 2026-03-22 15:51:45 -04:00
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import { Hashicon } from "@emeraldpay/hashicon-react";
|
|
import {
|
|
CircleEllipsisIcon,
|
|
AlertCircleIcon,
|
|
CheckCircle2Icon
|
|
} from "lucide-react";
|
|
import type { Protobuf } from "@meshtastic/meshtasticjs";
|
|
import type { MessageWithState } from "@app/core/stores/deviceStore.js";
|
|
|
|
export interface MessageProps {
|
|
lastMsgSameUser: boolean;
|
|
message: MessageWithState;
|
|
sender?: Protobuf.NodeInfo;
|
|
}
|
|
|
|
export const Message = ({
|
|
lastMsgSameUser,
|
|
message,
|
|
sender
|
|
}: MessageProps): JSX.Element => {
|
|
return lastMsgSameUser ? (
|
|
<div className="ml-5 flex">
|
|
{message.state === "ack" ? (
|
|
<CheckCircle2Icon size={16} className="my-auto text-textSecondary" />
|
|
) : message.state === "waiting" ? (
|
|
<CircleEllipsisIcon size={16} className="my-auto text-textSecondary" />
|
|
) : (
|
|
<AlertCircleIcon size={16} className="my-auto text-textSecondary" />
|
|
)}
|
|
<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">
|
|
<Hashicon value={(sender?.num ?? 0).toString()} size={32} />
|
|
</div>
|
|
<span className="cursor-pointer font-medium text-textPrimary">
|
|
{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" ? (
|
|
<CheckCircle2Icon size={16} className="my-auto text-textSecondary" />
|
|
) : message.state === "waiting" ? (
|
|
<CircleEllipsisIcon
|
|
size={16}
|
|
className="my-auto text-textSecondary"
|
|
/>
|
|
) : (
|
|
<AlertCircleIcon size={16} className="my-auto text-textSecondary" />
|
|
)}
|
|
<span
|
|
className={`ml-4 border-l-2 border-l-backgroundPrimary pl-2 ${
|
|
message.state === "ack" ? "text-textPrimary" : "text-textSecondary"
|
|
}`}
|
|
>
|
|
{message.data}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|