TTP -> MTP, A lot of other stuff #21
6 changed files with 110 additions and 33 deletions
(feat): add message states
(qol): prep for mtp migration
commit
c484a3c303
|
|
@ -69,6 +69,8 @@ export default function InputComponent({
|
|||
return;
|
||||
}
|
||||
|
||||
log(3, "chat", "purple", "Message send init, adding live message ...");
|
||||
|
||||
const reference = addLiveMessage({
|
||||
height: 0,
|
||||
not_encrypted: true,
|
||||
|
|
@ -78,7 +80,19 @@ export default function InputComponent({
|
|||
message_state: "awaiting",
|
||||
});
|
||||
|
||||
const encryptedContext = await encryptText(sharedSecret, currentValue);
|
||||
log(3, "chat", "purple", "Live message added, encrypting...");
|
||||
|
||||
const encryptedContext = await encryptText(
|
||||
sharedSecret,
|
||||
currentValue,
|
||||
).catch((err) => {
|
||||
toast("error", "Failed to encrypt message", String(err));
|
||||
reference.setFailed(true);
|
||||
});
|
||||
|
||||
if (!encryptedContext) return;
|
||||
|
||||
log(3, "chat", "purple", "Content encrypted, sending message...");
|
||||
|
||||
send("message_send", {
|
||||
height: 0,
|
||||
|
|
@ -96,6 +110,8 @@ export default function InputComponent({
|
|||
toast("error", "Failed to send message");
|
||||
});
|
||||
|
||||
log(3, "chat", "purple", "Message sent");
|
||||
|
||||
moveUserIdToTop(userId);
|
||||
|
||||
if (!preserveContent) {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import * as React from "react";
|
||||
import type { RawMessage } from "../values";
|
||||
import Text from "@tensamin/markdown/text";
|
||||
import { AlertTriangle } from "lucide-react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { AlertTriangle, Check, CheckCheck } from "lucide-react";
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
import type { User } from "@tensamin/user/context";
|
||||
|
||||
import {
|
||||
|
|
@ -16,6 +16,8 @@ import {
|
|||
} from "@tensamin/ui";
|
||||
import MessageContextMenu from "./messageContextMenu";
|
||||
import Media from "./media";
|
||||
import { useStorage } from "@tensamin/storage/context";
|
||||
import { useTTP } from "@tensamin/ttp";
|
||||
|
||||
function MessageComponent({
|
||||
grouped,
|
||||
|
|
@ -29,14 +31,14 @@ function MessageComponent({
|
|||
user: User | null;
|
||||
}) {
|
||||
const actuallyFailed = message.failed && message.message_state === "awaiting";
|
||||
|
||||
// Fade-in
|
||||
const [hasFadedIn, setHasFadedIn] = useState(false);
|
||||
const opacityClass = !hasFadedIn
|
||||
? "opacity-0"
|
||||
: actuallyFailed || message.message_state === "awaiting"
|
||||
? "opacity-50"
|
||||
: "opacity-100";
|
||||
|
||||
const [isValidURL, setIsValidURL] = useState(false);
|
||||
useEffect(() => {
|
||||
const timeout = window.setTimeout(() => {
|
||||
setHasFadedIn(true);
|
||||
|
|
@ -47,6 +49,8 @@ function MessageComponent({
|
|||
};
|
||||
}, []);
|
||||
|
||||
// Check if message is a url
|
||||
const [isValidURL, setIsValidURL] = useState(false);
|
||||
useEffect(() => {
|
||||
try {
|
||||
if (message.content.split(" ").length > 1) throw new Error();
|
||||
|
|
@ -58,6 +62,58 @@ function MessageComponent({
|
|||
}
|
||||
}, [message.content]);
|
||||
|
||||
// Message states
|
||||
const { load } = useStorage();
|
||||
const { send } = useTTP();
|
||||
const messageStateReadUpdate = useCallback(async () => {
|
||||
const readConfirmations = await load("settings.read_confirmations");
|
||||
|
||||
if (readConfirmations) {
|
||||
if (!user?.user_id) return;
|
||||
|
||||
await send("message_state", {
|
||||
chat_partner_id: user?.user_id,
|
||||
send_time: message.send_time,
|
||||
message_state: "read",
|
||||
});
|
||||
} else {
|
||||
await send("message_state", {
|
||||
chat_partner_id: user?.user_id,
|
||||
send_time: message.send_time,
|
||||
message_state: "received",
|
||||
});
|
||||
}
|
||||
}, [load, message.send_time, user?.user_id, send]);
|
||||
useEffect(() => {
|
||||
let cancelled = false;
|
||||
|
||||
async function run() {
|
||||
const receiveConfirmations = await load("settings.receive_confirmations");
|
||||
if (cancelled) return;
|
||||
|
||||
switch (message.message_state) {
|
||||
case "sent":
|
||||
if (receiveConfirmations) {
|
||||
messageStateReadUpdate();
|
||||
}
|
||||
break;
|
||||
|
||||
case "received":
|
||||
messageStateReadUpdate();
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
run();
|
||||
|
||||
return () => {
|
||||
cancelled = true;
|
||||
};
|
||||
}, [message.message_state, load, messageStateReadUpdate]);
|
||||
|
||||
return (
|
||||
<div
|
||||
// pt-3 is to get a gap between messages
|
||||
|
|
@ -111,6 +167,17 @@ function MessageComponent({
|
|||
minute: "2-digit",
|
||||
})}
|
||||
</p>
|
||||
<div>
|
||||
{message.message_state === "read" ? (
|
||||
<CheckCheck size={14} color="var(--primary)" />
|
||||
) : message.message_state === "received" ? (
|
||||
<CheckCheck size={14} color="var(--muted-foreground)" />
|
||||
) : message.message_state === "sent" ? (
|
||||
<Check size={14} color="var(--muted-foreground)" />
|
||||
) : message.message_state === "sending" ? (
|
||||
<div>IDK</div>
|
||||
) : null}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
{isValidURL ? (
|
||||
|
|
|
|||
|
|
@ -52,20 +52,20 @@ export default function Provider(props: { children: React.ReactNode }) {
|
|||
);
|
||||
|
||||
// Update message state
|
||||
if (
|
||||
(await load("settings.read_confirmations")) &&
|
||||
userId === sender_id
|
||||
) {
|
||||
void send(
|
||||
"message_state",
|
||||
{
|
||||
message_state: "read",
|
||||
},
|
||||
{
|
||||
id: ttpMessage.id,
|
||||
},
|
||||
);
|
||||
} else {
|
||||
if (userId === sender_id) {
|
||||
addLiveMessage({
|
||||
...message,
|
||||
content: decryptedContent,
|
||||
sent_by_self: false,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
// todo: add notification symbol to conversation cards (incl. message start)
|
||||
|
||||
moveUserIdToTop(sender_id);
|
||||
|
||||
if (await load("settings.receive_confirmations")) {
|
||||
void send(
|
||||
"message_state",
|
||||
{
|
||||
|
|
@ -77,20 +77,6 @@ export default function Provider(props: { children: React.ReactNode }) {
|
|||
);
|
||||
}
|
||||
|
||||
if (userId === sender_id) {
|
||||
addLiveMessage({
|
||||
...message,
|
||||
content: decryptedContent,
|
||||
sent_by_self: false,
|
||||
});
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
// todo: add notification symbol to conversation cards (incl. message start)
|
||||
|
||||
moveUserIdToTop(sender_id);
|
||||
|
||||
if (isTauri()) {
|
||||
console.log("weewoo");
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ export const message = z.object({
|
|||
avatar: z.boolean().optional(),
|
||||
display: z.boolean().optional(),
|
||||
message_state: z
|
||||
.enum(["read", "received", "sent", "sending", "awaiting"])
|
||||
.default("received"), // awaiting for 'internal' use
|
||||
.enum(["read", "received", "sent", "sending", "awaiting"]) // awaiting for 'internal' use
|
||||
.default("received"),
|
||||
});
|
||||
|
||||
export const failedUser = {
|
||||
|
|
|
|||
|
|
@ -67,26 +67,31 @@ const size = 20;
|
|||
export function toast(
|
||||
type: "error" | "info" | "warn" | "success",
|
||||
message: string,
|
||||
description?: string,
|
||||
) {
|
||||
switch (type) {
|
||||
case "error":
|
||||
sonnerToast(message, {
|
||||
icon: <Ban size={size} />,
|
||||
description,
|
||||
});
|
||||
break;
|
||||
case "info":
|
||||
sonnerToast(message, {
|
||||
icon: <Info size={size} />,
|
||||
description,
|
||||
});
|
||||
break;
|
||||
case "warn":
|
||||
sonnerToast(message, {
|
||||
icon: <TriangleAlert size={size} />,
|
||||
description,
|
||||
});
|
||||
break;
|
||||
case "success":
|
||||
sonnerToast(message, {
|
||||
icon: <Check size={size} />,
|
||||
description,
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
3
packages/ttp/todo.md
Normal file
3
packages/ttp/todo.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
- Replace with MTP
|
||||
- Remove queue
|
||||
- Use Date.now() for message id
|
||||
Loading…
Reference in a new issue