- Added API routes for fetching connected users, keywords, missions, and stations. - Created a new QueryProvider component for managing query states and socket events. - Introduced connection stores for dispatch and pilot, managing socket connections and states. - Updated Prisma schema for connected aircraft model. - Enhanced UI with toast notifications for status updates and chat interactions. - Implemented query functions for fetching connected users and keywords with error handling.
209 lines
5.8 KiB
TypeScript
209 lines
5.8 KiB
TypeScript
"use client";
|
|
import { ChatBubbleIcon, PaperPlaneIcon } from "@radix-ui/react-icons";
|
|
import { useLeftMenuStore } from "_store/leftMenuStore";
|
|
import { useSession } from "next-auth/react";
|
|
import { Fragment, useEffect, useState } from "react";
|
|
import { cn } from "helpers/cn";
|
|
import { asPublicUser } from "@repo/db";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { getConnectedUserAPI } from "querys/connected-user";
|
|
|
|
export const Chat = () => {
|
|
const {
|
|
setReportTabOpen,
|
|
chatOpen,
|
|
setChatOpen,
|
|
sendMessage,
|
|
addChat,
|
|
chats,
|
|
setOwnId,
|
|
selectedChat,
|
|
setSelectedChat,
|
|
setChatNotification,
|
|
} = useLeftMenuStore();
|
|
const [sending, setSending] = useState(false);
|
|
const session = useSession();
|
|
const [addTabValue, setAddTabValue] = useState<string>("default");
|
|
const [message, setMessage] = useState<string>("");
|
|
|
|
const { data: connectedUser } = useQuery({
|
|
queryKey: ["connected-users"],
|
|
queryFn: async () => {
|
|
const user = await getConnectedUserAPI();
|
|
return user.filter((u) => u.userId !== session.data?.user.id);
|
|
},
|
|
refetchInterval: 10000,
|
|
refetchOnWindowFocus: true,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!session.data?.user.id) return;
|
|
setOwnId(session.data.user.id);
|
|
}, [session, setOwnId]);
|
|
|
|
return (
|
|
<div className={cn("dropdown dropdown-right", chatOpen && "dropdown-open")}>
|
|
<div className="indicator">
|
|
{Object.values(chats).some((c) => c.notification) && (
|
|
<span className="indicator-item status status-info"></span>
|
|
)}
|
|
<button
|
|
className="btn btn-soft btn-sm btn-primary"
|
|
onClick={() => {
|
|
setReportTabOpen(false);
|
|
setChatOpen(!chatOpen);
|
|
if (selectedChat) {
|
|
setChatNotification(selectedChat, false);
|
|
}
|
|
}}
|
|
>
|
|
<ChatBubbleIcon className="w-4 h-4" />
|
|
</button>
|
|
</div>
|
|
{chatOpen && (
|
|
<div
|
|
tabIndex={0}
|
|
className="dropdown-content card bg-base-200 w-150 shadow-md z-[1100] ml-2 border-1 border-primary"
|
|
>
|
|
<div className="card-body">
|
|
<h2 className="inline-flex items-center gap-2 text-lg font-bold mb-2">
|
|
<ChatBubbleIcon /> Chat
|
|
</h2>
|
|
<div className="join">
|
|
<select
|
|
className="select select-sm w-full"
|
|
value={addTabValue}
|
|
onChange={(e) => setAddTabValue(e.target.value)}
|
|
>
|
|
{!connectedUser?.length && (
|
|
<option disabled value="default">
|
|
Keine Chatpartner gefunden
|
|
</option>
|
|
)}
|
|
{connectedUser?.length && (
|
|
<option disabled value="default">
|
|
Chatpartner auswählen
|
|
</option>
|
|
)}
|
|
|
|
{connectedUser?.map((user) => (
|
|
<option key={user.userId} value={user.userId}>
|
|
{asPublicUser(user.publicUser).fullName}
|
|
</option>
|
|
))}
|
|
</select>
|
|
<button
|
|
className="btn btn-sm btn-soft btn-primary join-item"
|
|
onClick={() => {
|
|
const user = connectedUser?.find(
|
|
(user) => user.userId === addTabValue,
|
|
);
|
|
if (!user) return;
|
|
addChat(addTabValue, asPublicUser(user.publicUser).fullName);
|
|
setSelectedChat(addTabValue);
|
|
}}
|
|
>
|
|
<span className="text-xl">+</span>
|
|
</button>
|
|
</div>
|
|
<div className="tabs tabs-lift">
|
|
{Object.keys(chats).map((userId) => {
|
|
const chat = chats[userId];
|
|
if (!chat) return null;
|
|
return (
|
|
<Fragment key={userId}>
|
|
<input
|
|
type="radio"
|
|
name="my_tabs_3"
|
|
className="tab"
|
|
aria-label={`<${chat.name}>`}
|
|
checked={selectedChat === userId}
|
|
onClick={() => {
|
|
setChatNotification(userId, false);
|
|
}}
|
|
onChange={(e) => {
|
|
if (e.target.checked) {
|
|
// Handle tab change
|
|
setSelectedChat(userId);
|
|
}
|
|
}}
|
|
/>
|
|
<div className="tab-content bg-base-100 border-base-300 p-6">
|
|
{chat.messages.map((chatMessage) => {
|
|
const isSender =
|
|
chatMessage.senderId === session.data?.user.id;
|
|
return (
|
|
<div
|
|
key={chatMessage.id}
|
|
className={`chat ${isSender ? "chat-end" : "chat-start"}`}
|
|
>
|
|
<p className="chat-footer opacity-50">
|
|
{new Date(
|
|
chatMessage.timestamp,
|
|
).toLocaleTimeString()}
|
|
</p>
|
|
<div className="chat-bubble">
|
|
{chatMessage.text}
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
{!chat.messages.length && (
|
|
<p className="text-xs opacity-50">
|
|
Noch keine Nachrichten
|
|
</p>
|
|
)}
|
|
</div>
|
|
</Fragment>
|
|
);
|
|
})}
|
|
</div>
|
|
<div className="join">
|
|
<div className="w-full">
|
|
<label className="input join-item w-full">
|
|
<input
|
|
type="text"
|
|
required
|
|
className="w-full"
|
|
onChange={(e) => {
|
|
setMessage(e.target.value);
|
|
}}
|
|
value={message}
|
|
/>
|
|
</label>
|
|
</div>
|
|
<button
|
|
className="btn btn-soft join-item"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
if (message.length < 1) return;
|
|
if (!selectedChat) return;
|
|
setSending(true);
|
|
sendMessage(selectedChat, message)
|
|
.then(() => {
|
|
setMessage("");
|
|
setSending(false);
|
|
})
|
|
.catch(() => {
|
|
setSending(false);
|
|
});
|
|
return false;
|
|
}}
|
|
disabled={sending}
|
|
role="button"
|
|
onSubmit={() => false} // prevent submit event for react hook form
|
|
>
|
|
{sending ? (
|
|
<span className="loading loading-spinner loading-sm"></span>
|
|
) : (
|
|
<PaperPlaneIcon />
|
|
)}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|