mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* refactor: migrate from @hey-api/openapi-ts to openapi-react-query
- Replace @hey-api/openapi-ts with openapi-typescript and openapi-react-query
- Generate TypeScript types from OpenAPI spec
- Set up React Query infrastructure with QueryClientProvider
- Migrate all API hooks to use React Query patterns
- Maintain backward compatibility for existing components
- Remove old API infrastructure and dependencies
* fix: resolve import errors and add missing api hooks
- Create constants.ts for RECORD_A_MEETING_URL
- Add api-types.ts for backward compatible type exports
- Update all imports from deleted api folder to new locations
- Add missing React Query hooks for rooms and zulip operations
- Create useApi compatibility layer for unmigrated components
* feat: migrate components to React Query hooks
- Add comprehensive API hooks for all operations
- Migrate rooms page to use React Query mutations
- Update transcript title component to use mutation hook
- Refactor share/privacy component with proper error handling
- Remove direct API client usage in favor of hooks
* feat: complete migration from @hey-api/openapi-ts to openapi-react-query
- Migrated all components from useApi compatibility layer to direct React Query hooks
- Added new hooks for participant operations, room meetings, and speaker operations
- Updated all imports from old api module to api-types
- Fixed TypeScript types and API endpoint signatures
- Removed deprecated useApi.ts compatibility layer
- Fixed SourceKind enum values to match OpenAPI spec
- Added @ts-ignore for Zulip endpoints not in OpenAPI spec yet
- Fixed all compilation errors and type issues
* fix: authentication flow with React Query migration
- Fix middleware management in apiClient to properly handle auth tokens
- Update ApiAuthProvider to correctly configure base URL and auth
- Add missing NextAuth API route handler at app/api/auth/[...nextauth]/route.ts
- Remove middleware ejection attempts (not supported by openapi-fetch)
- Use global variables to store current auth token and API URL
- Setup middleware once on initialization instead of repeatedly adding
This fixes the login/logout flow that was broken after migrating from
the useApi compatibility layer to native React Query hooks.
* fix: prevent unauthorized API calls before authentication
- Add global AuthGuard component to handle authentication at layout level
- Make all API query hooks conditional on authentication status
- Define public routes (like /transcripts/new) that don't require auth
- Fix login flow to use NextAuth signIn instead of non-existent /login route
- Prevent 401 errors by waiting for auth token before making API calls
Previously, all routes under (app) were publicly accessible with each page
handling auth individually. Now authentication is enforced globally while
still allowing specific routes to remain public.
* refactor: remove redundant client-side AuthGuard
The authentication is already properly handled by Next.js middleware
in middleware.ts with LOGIN_REQUIRED_PAGES. The middleware approach is
superior as it:
- Provides server-side protection before page loads
- Prevents flash of unauthorized content
- Centralizes auth logic in one place
- Better performance (no client-side JS needed)
Keep the API hooks conditional to prevent 401 errors before token is ready.
* fix: use direct status check for API query authentication
Changed all query hooks to use direct `status === "authenticated"` check
instead of derived `isAuthenticated && !isLoading` to avoid race conditions
where queries might fire before the authentication token is properly set.
This prevents the brief 401 errors that occur on page refresh when the
session is being restored.
* fix: correct content-type header for FormData uploads
Previously, the API client was setting a default Content-Type of application/json
for all requests, which broke file uploads that need multipart/form-data.
Now the client only sets application/json when the body is not FormData,
allowing FormData to automatically set the correct multipart boundary.
* fix: resolve authentication race condition with React Query
Previously, API calls were being made before the auth token was configured,
causing initial 401 errors that would retry with 200 after token setup.
Changes:
- Add global auth readiness tracking in apiClient
- Create useAuthReady hook that checks both session and token state
- Update all API hooks to use isAuthReady instead of just session status
- Add AuthWrapper component at layout level for consistent loading UX
- Show spinner while authentication initializes across all pages
This ensures API calls only fire after authentication is fully configured,
eliminating the 401/retry pattern and improving user experience.
* refactor: clean up api-hooks.ts comments and improve search invalidation
- Remove redundant function category comments (exports are self-explanatory)
- Remove obvious inline comments for query invalidation
- Fix search endpoint invalidation to clear all queries regardless of parameters
* refactor: remove api-types.ts compatibility layer
- Migrated all 29 files from api-types.ts to use reflector-api.d.ts directly
- Removed $SourceKind manual enum in favor of OpenAPI-generated types
- Fixed unrelated Spinner component TypeScript error in AuthWrapper.tsx
- All imports now use: import type { components } from "path/to/reflector-api"
- Deleted api-types.ts file completely
* refactor: rename api-hooks.ts to apiHooks.ts for consistency
- Renamed api-hooks.ts to apiHooks.ts to follow camelCase convention
- Updated all 21 import statements across the codebase
- Maintains consistency with other non-component files (apiClient.tsx, useAuthReady.ts, etc.)
- Follows established naming pattern: PascalCase for components, camelCase for utilities/hooks
* chore: add .playwright-mcp to .gitignore
* refactor: remove SK helper object and use inline type casting in FilterSidebar
Replace the SK (SourceKind) helper object with direct inline type casting
to simplify the code and reduce unnecessary abstraction.
* chore: clean up migration comments from React Query refactoring
- Remove temporary "// Use new React Query hooks" comments
- Remove "// React Query hooks" comments from browse and rooms pages
- Update package.json script name from codegen to openapi for consistency
* refactor: remove Redis dependencies from frontend authentication
- Replace Redis/Redlock with in-memory cache for token management
- Remove @vercel/kv, ioredis, and redlock dependencies from package.json
- Implement simple lock mechanism for concurrent token refresh prevention
- Use Map-based cache with TTL for token storage
- Maintain same authentication flow without external dependencies
This simplifies the infrastructure requirements and removes the need for
Redis while maintaining the same functionality through in-memory caching.
* fix: add staleTime to prevent cross-tab staled data
* fix: remove infinite re-render loop in useSessionAccessToken
The hook was maintaining redundant local state that caused re-renders
on every update, which triggered NextAuth to continuously refetch the
session, resulting in hundreds of POST requests to /api/auth/session.
Simplified the hook to directly return session values without
unnecessary state duplication.
* fix: handle undefined access tokens in auth.ts
Added fallback to empty string for potentially undefined access_token
and refresh_token from NextAuth account object to satisfy
JWTWithAccessToken type requirements.
* Igor/mathieu/frontend openapi react query (#597)
* small typing
* typing fixes
---------
Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
* self-review-fix
* authReady callback simplify
* fix auth
* fix compose
* room detail page fix
* compile fix
* room edit fix
* normalize auth provider
* room edition state granular management
* cover TODOs + cross-tab cache
* session auto refresh blink
* schema generator error type doc
* protect from zombie auth
* clarify access token refresh logic a bit
* remove react-query tab sharing cache
* remove react-query tab sharing cache
* websocket dupe react devmode protection
* invalidate room on room update
* redis cache
* test ts server
* ci randomness
* less edgy config (ci)
* less edgy config (ci)
* less edgy config (ci)
* ci randomness
* ci randomness
* ci randomness
* ci randomness
* less edgy config (ci)
* added vs edited room state cleanup
* file upload real-time state management fix
* prettier auth state ternary
* prettier auth state ternary
* proper api address from env
* INTERVAL_REFRESH_MS
* node version 20 for tests
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* github debug
* CI debug
* CI debug
* nextjs magic
* nextjs magic
* doc
* client-side stale auth soft safety net
---------
Co-authored-by: Mathieu Virbel <mat@meltingrocks.com>
Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
171 lines
5.3 KiB
TypeScript
171 lines
5.3 KiB
TypeScript
"use client";
|
|
import Modal from "../modal";
|
|
import useTranscript from "../useTranscript";
|
|
import useTopics from "../useTopics";
|
|
import useWaveform from "../useWaveform";
|
|
import useMp3 from "../useMp3";
|
|
import { TopicList } from "./_components/TopicList";
|
|
import { Topic } from "../webSocketTypes";
|
|
import React, { useEffect, useState } from "react";
|
|
import FinalSummary from "./finalSummary";
|
|
import TranscriptTitle from "../transcriptTitle";
|
|
import Player from "../player";
|
|
import { useRouter } from "next/navigation";
|
|
import { Box, Flex, Grid, GridItem, Skeleton, Text } from "@chakra-ui/react";
|
|
|
|
type TranscriptDetails = {
|
|
params: {
|
|
transcriptId: string;
|
|
};
|
|
};
|
|
|
|
export default function TranscriptDetails(details: TranscriptDetails) {
|
|
const transcriptId = details.params.transcriptId;
|
|
const router = useRouter();
|
|
const statusToRedirect = ["idle", "recording", "processing"];
|
|
|
|
const transcript = useTranscript(transcriptId);
|
|
const transcriptStatus = transcript.response?.status;
|
|
const waiting = statusToRedirect.includes(transcriptStatus || "");
|
|
|
|
const mp3 = useMp3(transcriptId, waiting);
|
|
const topics = useTopics(transcriptId);
|
|
const waveform = useWaveform(
|
|
transcriptId,
|
|
waiting || mp3.audioDeleted === true,
|
|
);
|
|
const useActiveTopic = useState<Topic | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (waiting) {
|
|
const newUrl = "/transcripts/" + details.params.transcriptId + "/record";
|
|
// Shallow redirection does not work on NextJS 13
|
|
// https://github.com/vercel/next.js/discussions/48110
|
|
// https://github.com/vercel/next.js/discussions/49540
|
|
router.replace(newUrl);
|
|
// history.replaceState({}, "", newUrl);
|
|
}
|
|
}, [waiting]);
|
|
|
|
if (transcript.error || topics?.error) {
|
|
return (
|
|
<Modal
|
|
title="Transcription Not Found"
|
|
text="A trascription with this ID does not exist."
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (transcript?.loading || topics?.loading) {
|
|
return <Modal title="Loading" text={"Loading transcript..."} />;
|
|
}
|
|
|
|
if (mp3.error) {
|
|
return (
|
|
<Modal
|
|
title="Transcription error"
|
|
text={`There was an error loading the recording. Error: ${mp3.error}`}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Grid
|
|
templateColumns="1fr"
|
|
templateRows="auto minmax(0, 1fr)"
|
|
gap={4}
|
|
mt={4}
|
|
mb={4}
|
|
>
|
|
{!mp3.audioDeleted && (
|
|
<>
|
|
{waveform.waveform && mp3.media && topics.topics ? (
|
|
<Player
|
|
topics={topics?.topics}
|
|
useActiveTopic={useActiveTopic}
|
|
waveform={waveform.waveform}
|
|
media={mp3.media}
|
|
mediaDuration={transcript.response?.duration || null}
|
|
/>
|
|
) : !mp3.loading && (waveform.error || mp3.error) ? (
|
|
<Box p={4} bg="red.100" borderRadius="md">
|
|
<Text>Error loading this recording</Text>
|
|
</Box>
|
|
) : (
|
|
<Skeleton h={14} />
|
|
)}
|
|
</>
|
|
)}
|
|
<Grid
|
|
templateColumns={{ base: "minmax(0, 1fr)", md: "repeat(2, 1fr)" }}
|
|
templateRows={{
|
|
base: "auto minmax(0, 1fr) minmax(0, 1fr)",
|
|
md: "auto minmax(0, 1fr)",
|
|
}}
|
|
gap={4}
|
|
gridRowGap={2}
|
|
padding={4}
|
|
paddingBottom={0}
|
|
background="gray.bg"
|
|
border={"2px solid"}
|
|
borderColor={"gray.bg"}
|
|
borderRadius={8}
|
|
>
|
|
<GridItem colSpan={{ base: 1, md: 2 }}>
|
|
<Flex direction="column" gap={0}>
|
|
<Flex alignItems="center" gap={2}>
|
|
<TranscriptTitle
|
|
title={transcript.response?.title || "Unnamed Transcript"}
|
|
transcriptId={transcriptId}
|
|
onUpdate={(newTitle) => {
|
|
transcript.reload();
|
|
}}
|
|
/>
|
|
</Flex>
|
|
{mp3.audioDeleted && (
|
|
<Text fontSize="xs" color="gray.600" fontStyle="italic">
|
|
No audio is available because one or more participants didn't
|
|
consent to keep the audio
|
|
</Text>
|
|
)}
|
|
</Flex>
|
|
</GridItem>
|
|
<TopicList
|
|
topics={topics.topics || []}
|
|
useActiveTopic={useActiveTopic}
|
|
autoscroll={false}
|
|
transcriptId={transcriptId}
|
|
status={transcript.response?.status}
|
|
currentTranscriptText=""
|
|
/>
|
|
{transcript.response && topics.topics ? (
|
|
<>
|
|
<FinalSummary
|
|
transcriptResponse={transcript.response}
|
|
topicsResponse={topics.topics}
|
|
onUpdate={(newSummary) => {
|
|
transcript.reload();
|
|
}}
|
|
/>
|
|
</>
|
|
) : (
|
|
<Flex justify={"center"} alignItems={"center"} h={"100%"}>
|
|
<div className="flex flex-col h-full justify-center content-center">
|
|
{transcript.response.status == "processing" ? (
|
|
<Text>Loading Transcript</Text>
|
|
) : (
|
|
<Text>
|
|
There was an error generating the final summary, please come
|
|
back later
|
|
</Text>
|
|
)}
|
|
</div>
|
|
</Flex>
|
|
)}
|
|
</Grid>
|
|
</Grid>
|
|
</>
|
|
);
|
|
}
|