261 lines
6.5 KiB
TypeScript
261 lines
6.5 KiB
TypeScript
import {
|
|
createContext,
|
|
useMemo,
|
|
useEffect,
|
|
useCallback,
|
|
useState,
|
|
useContext,
|
|
type ReactNode,
|
|
} from "react";
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
import { useRouterState } from "@tanstack/react-router";
|
|
import type { InfiniteData } from "@tanstack/react-query";
|
|
import type { LiveMessage, RawMessage, RawMessages } from "./values";
|
|
import { useCrypto } from "@tensamin/crypto/context";
|
|
import { useUser } from "@tensamin/user/context";
|
|
import { useStorage } from "@tensamin/storage/context";
|
|
import { useTTP } from "@tensamin/ttp/context";
|
|
|
|
export const context = createContext<contextType | undefined>(undefined);
|
|
|
|
const queryClient = new QueryClient();
|
|
|
|
/**
|
|
* Executes Provider.
|
|
* @param props Parameter props.
|
|
* @returns unknown.
|
|
*/
|
|
export default function Provider(props: { children: ReactNode }) {
|
|
const { getSharedSecret } = useCrypto();
|
|
const { get } = useUser();
|
|
const { load } = useStorage();
|
|
const { send, subscribePush } = useTTP();
|
|
|
|
const [liveMessagesState, setLiveMessagesState] = useState<LiveMessage[]>([]);
|
|
const [currentSharedSecret, setCurrentSharedSecret] = useState("");
|
|
|
|
const locationSearch = useRouterState({
|
|
select: (state) => state.location.search,
|
|
});
|
|
|
|
const userIdValue = useMemo(() => {
|
|
const rawId = (locationSearch as unknown as { id?: unknown })?.id;
|
|
return Number(rawId ?? 0);
|
|
}, [locationSearch]);
|
|
|
|
useEffect(() => {
|
|
const recipientId = userIdValue;
|
|
|
|
if (!recipientId) {
|
|
setCurrentSharedSecret("");
|
|
return;
|
|
}
|
|
|
|
let active = true;
|
|
|
|
void (async () => {
|
|
try {
|
|
const recipientData = await get(recipientId);
|
|
const ownId = await load("user_id");
|
|
const privateKey = await load("private_key");
|
|
const ownData = await get(ownId);
|
|
const sharedSecret = await getSharedSecret(
|
|
privateKey,
|
|
ownData.public_key,
|
|
recipientData.public_key,
|
|
);
|
|
|
|
if (active) {
|
|
setCurrentSharedSecret(sharedSecret);
|
|
}
|
|
} catch {
|
|
if (active) {
|
|
setCurrentSharedSecret("");
|
|
}
|
|
}
|
|
})();
|
|
|
|
return () => {
|
|
active = false;
|
|
};
|
|
}, [get, getSharedSecret, load, userIdValue]);
|
|
|
|
const customGetMessages = useCallback(
|
|
async (amount: number, offset: number) => {
|
|
const messages = await send("messages_get", {
|
|
amount,
|
|
offset,
|
|
user_id: userIdValue,
|
|
});
|
|
|
|
if (messages.type.startsWith("error")) {
|
|
throw new Error(messages.type);
|
|
}
|
|
|
|
const rawMessages = messages.data.messages;
|
|
const sorted = [...rawMessages].sort((a, b) => a.timestamp - b.timestamp);
|
|
return sorted;
|
|
},
|
|
[send, userIdValue],
|
|
);
|
|
|
|
const addLiveMessage = useCallback((message: RawMessage) => {
|
|
const localId =
|
|
globalThis.crypto?.randomUUID?.() ??
|
|
`${Date.now()}-${Math.random().toString(36).slice(2)}`;
|
|
|
|
setLiveMessagesState((prev) => [
|
|
...prev,
|
|
{
|
|
...message,
|
|
localId,
|
|
failed: false,
|
|
},
|
|
]);
|
|
|
|
return {
|
|
setFailed: (failed: boolean) => {
|
|
setLiveMessagesState((prev) =>
|
|
prev.map((liveMessage) =>
|
|
liveMessage.localId === localId
|
|
? { ...liveMessage, failed }
|
|
: liveMessage,
|
|
),
|
|
);
|
|
},
|
|
};
|
|
}, []);
|
|
|
|
const clearLiveMessages = useCallback(() => {
|
|
setLiveMessagesState([]);
|
|
}, []);
|
|
|
|
// Get live updates for message states
|
|
useEffect(() => {
|
|
return subscribePush((message) => {
|
|
if (message.type !== "message_state") {
|
|
return;
|
|
}
|
|
|
|
const nextState = message.data as {
|
|
chat_partner_id: number;
|
|
timestamp: number;
|
|
message_state: RawMessage["message_state"];
|
|
};
|
|
|
|
if (nextState.chat_partner_id !== userIdValue) {
|
|
return;
|
|
}
|
|
|
|
setLiveMessagesState((prev) => {
|
|
let updated = false;
|
|
|
|
const mapped = prev.map((liveMessage) => {
|
|
if (liveMessage.timestamp !== nextState.timestamp) {
|
|
return liveMessage;
|
|
}
|
|
|
|
if (liveMessage.message_state === nextState.message_state) {
|
|
return liveMessage;
|
|
}
|
|
|
|
updated = true;
|
|
return {
|
|
...liveMessage,
|
|
message_state: nextState.message_state,
|
|
};
|
|
});
|
|
|
|
return updated ? mapped : prev;
|
|
});
|
|
|
|
const queryKey = ["chat-messages", String(userIdValue)] as const;
|
|
queryClient.setQueryData<InfiniteData<RawMessages>>(
|
|
queryKey,
|
|
(current) => {
|
|
if (!current) {
|
|
return current;
|
|
}
|
|
|
|
let updated = false;
|
|
|
|
const pages = current.pages.map((page) =>
|
|
page.map((historicalMessage) => {
|
|
if (historicalMessage.timestamp !== nextState.timestamp) {
|
|
return historicalMessage;
|
|
}
|
|
|
|
if (historicalMessage.message_state === nextState.message_state) {
|
|
return historicalMessage;
|
|
}
|
|
|
|
updated = true;
|
|
return {
|
|
...historicalMessage,
|
|
message_state: nextState.message_state,
|
|
};
|
|
}),
|
|
);
|
|
|
|
if (!updated) {
|
|
return current;
|
|
}
|
|
|
|
return {
|
|
...current,
|
|
pages,
|
|
};
|
|
},
|
|
);
|
|
});
|
|
}, [subscribePush, userIdValue]);
|
|
|
|
const value = useMemo<contextType>(
|
|
() => ({
|
|
getMessages: customGetMessages,
|
|
liveMessages: () => liveMessagesState,
|
|
addLiveMessage,
|
|
clearLiveMessages,
|
|
sharedSecret: () => currentSharedSecret,
|
|
userId: () => userIdValue,
|
|
}),
|
|
[
|
|
addLiveMessage,
|
|
clearLiveMessages,
|
|
currentSharedSecret,
|
|
customGetMessages,
|
|
liveMessagesState,
|
|
userIdValue,
|
|
],
|
|
);
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<context.Provider value={value}>{props.children}</context.Provider>
|
|
</QueryClientProvider>
|
|
);
|
|
}
|
|
|
|
type contextType = {
|
|
getMessages: (amount: number, offset: number) => Promise<RawMessages>;
|
|
liveMessages: () => LiveMessage[];
|
|
addLiveMessage: (message: RawMessage) => {
|
|
setFailed: (failed: boolean) => void;
|
|
};
|
|
clearLiveMessages: () => void;
|
|
sharedSecret: () => string;
|
|
userId: () => number;
|
|
};
|
|
|
|
/**
|
|
* Executes useChat.
|
|
* @param none This function has no parameters.
|
|
* @returns contextType.
|
|
*/
|
|
export function useChat(): contextType {
|
|
const ctx = useContext(context);
|
|
if (!ctx) {
|
|
throw new Error("useChat must be used within a ChatProvider");
|
|
}
|
|
return ctx;
|
|
}
|