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.
75 lines
2.3 KiB
75 lines
2.3 KiB
import type { MessageWithState } from "@app/core/stores/deviceStore.js";
|
|
import { Hashicon } from "@emeraldpay/hashicon-react";
|
|
import type { Protobuf } from "@meshtastic/meshtasticjs";
|
|
import {
|
|
AlertCircleIcon,
|
|
CheckCircle2Icon,
|
|
CircleEllipsisIcon,
|
|
} from "lucide-react";
|
|
|
|
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>
|
|
);
|
|
};
|
|
|