client/apps/web/src/routes/app/home.tsx
Alois 6a5236bafe
All checks were successful
/ build-web (push) Successful in 7m40s
/ build-desktop (linux) (push) Successful in 12m6s
/ build-mobile (push) Successful in 19m4s
/ release (push) Successful in 3m25s
(feat): add reply box to messages
(feat): update methanium ui
(fix): user data caching
(fix): other random stuff
(qol): update todo
2026-07-30 23:01:42 +02:00

182 lines
4.9 KiB
TypeScript

import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
Input,
Button,
useIsMobile,
} from "@methanium/ui";
import z from "zod";
import { useMTP } from "@tensamin/mtp";
import { useState } from "react";
import { Loader2 } from "lucide-react";
import { isTauri } from "@tauri-apps/api/core";
import { useSession } from "@tensamin/storage/session";
import { useStorage } from "@tensamin/storage/context";
import { ShieldAlert } from "lucide-react";
// The page
export default function Page() {
const isMobile = useIsMobile();
const { secureStorage } = useStorage();
return (
<div
className={`px-3 flex flex-col gap-3 ${!(isTauri() && isMobile) && "pt-3"}`}
>
<div className="flex gap-2">
<AddConversationButton />
<Button disabled>Add Community</Button>
</div>
{secureStorage && !secureStorage.secure && (
<div className="flex max-w-2xl gap-3 rounded-lg border border-(--destructive)/60 bg-(--destructive)/10 p-3 text-sm">
<ShieldAlert className="mt-0.5 size-5 shrink-0 text-destructive" />
<div>
<p className="font-medium">Secure storage is unavailable</p>
<p>{secureStorage.reason}</p>
<p className="text-muted-foreground">
Your keyring and cached messages will get saved in regular
storage.
</p>
</div>
</div>
)}
</div>
);
}
// Add Conversation Button Component
function AddConversationButton() {
const { send } = useMTP();
const { contacts, insertContact } = useSession();
const [loading, setLoading] = useState(false);
const [open, setOpen] = useState(false);
const [error, setError] = useState<string | null>(null);
async function submit(username: string | null) {
if (loading) return;
setError(null);
// username check
const schema = z
.string()
.min(1, "Username is too short")
.max(15, "Username is too long");
const result = schema.safeParse(username?.toLowerCase().trim());
if (!result.success) {
setError(result.error.issues[0].message);
return;
}
// user existence check
const user = await send("GetUserData", {
Username: result.data,
})
.then((data) => {
if (data.type === "ErrorNotFound" || data.data.UserId === 0) {
throw new Error();
}
return data;
})
.catch(() => {
setError("User not found");
return;
});
if (!user) return;
// alrady added check
if (contacts.some((contact) => contact.UserId === user.data.UserId)) {
setError("Conversation already exists");
return;
}
// add the conv
const timeout = setTimeout(() => setLoading(true), 500);
send("AddConversation", {
ChatPartnerId: user.data.UserId,
})
.then(() => {
insertContact(user.data.UserId);
setOpen(false);
})
.catch((error) => {
if (String(error).includes("error_not_found")) {
setError("User not found");
return;
}
setError(String(error));
})
.finally(() => {
clearTimeout(timeout);
setLoading(false);
});
}
return (
<Dialog
open={open}
onOpenChange={(value) => {
if (value) {
setError(null);
}
setOpen(value);
}}
>
<DialogTrigger
render={({ onClick }) => (
<Button onClick={onClick}>Add Conversation</Button>
)}
/>
<DialogContent showCloseButton={false}>
<DialogHeader>
<DialogTitle>New Conversation</DialogTitle>
</DialogHeader>
<DialogDescription>
Add a new conversation. Just enter the username of the person you want
to add as a conversation.
</DialogDescription>
<form
className="flex flex-col gap-5"
onSubmit={(event) => {
event.preventDefault();
const form = new FormData(event.currentTarget);
const username = form.get("username") as string | null;
submit(username);
}}
>
<Input
required
type="text"
id="username"
name="username"
placeholder="Enter username..."
/>
<div className="flex w-full justify-end items-center gap-1">
{error && (
<p className="text-sm text-destructive w-full">{error}</p>
)}
<DialogClose
render={({ onClick }) => (
<Button onClick={onClick} variant="outline">
Cancel
</Button>
)}
/>
<Button disabled={loading} type="submit">
{loading && <Loader2 className="animate-spin" />} Continue
</Button>
</div>
</form>
</DialogContent>
</Dialog>
);
}