Ability to load past meetings + URL management

This commit is contained in:
Koper
2023-09-14 23:05:13 +07:00
parent 07204ee2db
commit c9d01a9d30
13 changed files with 437 additions and 59 deletions

View File

@@ -1,6 +1,7 @@
import { useEffect, useState } from "react";
import { Topic, FinalSummary, Status } from "./webSocketTypes";
import { useError } from "../(errors)/errorContext";
import { useRouter } from "next/navigation";
type UseWebSockets = {
transcriptText: string;
@@ -17,6 +18,7 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => {
});
const [status, setStatus] = useState<Status>({ value: "disconnected" });
const { setError } = useError();
const router = useRouter();
useEffect(() => {
document.onkeyup = (e) => {
@@ -94,22 +96,21 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => {
break;
case "FINAL_LONG_SUMMARY":
if (message.data) {
message.data = { summary: message.data.long_summary };
setFinalSummary(message.data);
console.debug("FINAL_LONG_SUMMARY event:", message.data);
}
break;
case "FINAL_SUMMARY":
if (message.data) {
setFinalSummary(message.data);
console.debug("FINAL_SUMMARY event:", message.data);
}
console.debug("FINAL_LONG_SUMMARY event:", message.data);
break;
case "FINAL_SHORT_SUMMARY":
console.debug("FINAL_SHORT_SUMMARY event:", message.data);
if (message.data) {
setFinalSummary(message.data);
const newUrl = "/transcripts/" + transcriptId;
router.push(newUrl);
console.debug(
"FINAL_SUMMARY event:",
message.data,
"newUrl",
newUrl,
);
}
break;
case "FINAL_TITLE":
@@ -137,10 +138,15 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => {
ws.onclose = (event) => {
console.debug("WebSocket connection closed");
if (event.code !== 1000) {
setError(
new Error(`WebSocket closed unexpectedly with code: ${event.code}`),
);
switch (event.code) {
case 1000: // Normal Closure:
case 1001: // Going Away:
case 1005:
break;
default:
setError(
new Error(`WebSocket closed unexpectedly with code: ${event.code}`),
);
}
};