mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* feat: separate page into different component, greatly improving the loading and reactivity
* fix: various fixes
* feat: migrate to Chakra UI v3 - update theme, fix deprecated props
- Add whiteAlpha color palette with semantic tokens
- Update button recipe with fontWeight 600 and hover states
- Move Poppins font from theme to HTML tag className
- Fix deprecated props: isDisabled→disabled, align→alignItems/textAlign
- Remove button.css as styles are now handled by Chakra v3
* fix: complete Chakra UI v3 deprecated prop migrations
- Replace all isDisabled with disabled
- Replace all isChecked with checked
- Replace all isLoading with loading
- Replace all isOpen with open
- Replace all noOfLines with lineClamp
- Replace all align with alignItems on Flex/Stack components
- Replace all justify with justifyContent on Flex/Stack components
- Update temporary Select components to use new prop names
- Update REFACTOR2.md with completion status
* fix: add value prop to Menu.Item for proper hover states in Chakra v3
* fix: update browse page components for Chakra UI v3 compatibility
- Fix FilterSidebar status filter styling and prop usage
- Update Pagination component to use new Chakra v3 props and structure
- Refactor TranscriptTable to use modern Chakra patterns
- Clean up browse page layout and props
- Remove unused import from transcripts API view
- Enhance theme with additional semantic color tokens
* fix: polish browse page UI for Chakra v3
- Add rounded corners to FilterSidebar
- Adjust responsive breakpoints from md to lg for table/card view
- Add consistent font weights to table headers
- Improve card view typography and spacing
- Fix padding and margins for better mobile experience
- Remove unused table recipe from theme
* fix: padding
* fix: rework transcript page
* fix: more tidy layout for topic
* fix: share and privacy using chakra3 select
* fix: fix share and privacy select, now working, with closing dialog
* fix: complete Chakra UI v3 migration for share components and fix all TypeScript errors
- Refactor shareZulip.tsx to integrate modal content directly
- Replace react-select-search with Chakra UI v3 Select components using collection pattern
- Convert all Checkbox components to use v3 composable structure (Checkbox.Root, etc.)
- Fix Card components to use Card.Root and Card.Body
- Replace deprecated textColor prop with color prop
- Update Menu components to use v3 namespace pattern (Menu.Root, Menu.Trigger, etc.)
- Remove unused AlertDialog imports
- Fix useDisclosure hook changes (isOpen -> open)
- Replace UnorderedList with List.Root and ListItem with List.Item
- Fix Skeleton components by removing isLoaded prop and using conditional rendering
- Update Button variants to valid v3 options
- Fix Spinner props (remove thickness, speed, emptyColor)
- Update toast API to use custom toaster component
- Fix Progress components and FormControl to Field.Root
- Update Alert to use compound component pattern
- Remove shareModal.tsx file after integration
* fix: bring back topic list
* fix: normalize menu item
* fix: migrate rooms page to Chakra UI v3 pattern
- Updated layout to match browse page with Flex container and proper spacing
- Migrated add/edit room modal from custom HTML to Chakra UI v3 Dialog component
- Replaced all Select components with Chakra UI v3 Select using createListCollection
- Replaced FormControl/FormLabel/FormHelperText with Field.Root/Field.Label/Field.HelperText
- Removed inline styles and used Chakra props (mr={2} instead of style={{ marginRight: "8px" }})
- Fixed TypeScript interfaces removing OptionBase extension
- Fixed theme.ts accordion anatomy import issue
* refactor: convert rooms list to table view with responsive design
- Create RoomTable component for desktop view showing room details in columns
- Create RoomCards component for mobile/tablet responsive view
- Refactor RoomList to use table/card components based on screen size
- Display Zulip configuration, room size, and recording settings in table
- Remove unused RoomItem component
- Import Room type from API for proper typing
* refactor: extract RoomActionsMenu component to eliminate duplication
- Create RoomActionsMenu component for consistent room action menus
- Update RoomCards and RoomTable to use the new shared component
- Remove duplicated menu code from both components
* feat: add icons to TranscriptActionsMenu for consistency
- Add FaTrash icon for Delete action with red color
- Add FaArrowsRotate icon for Reprocess action
- Matches the pattern established in RoomActionsMenu
* refactor: update icons from Font Awesome to Lucide React
- Replace FaEllipsisVertical with LuMenu in menu triggers
- Replace FaLink with LuLink for copy URL buttons
- Replace FaPencil with LuPen for edit actions
- Replace FaTrash with LuTrash for delete actions
- Replace FaArrowsRotate with LuRotateCw for reprocess action
- Consistent icon library usage across all components
* refactor: little pass on the icons
* fix: lu icon
* fix: primary for button
* fix: recording page with mic selection
* fix: also fix duration
* fix: use combobox for share zulip
* fix: use proper theming for button, variant was not recognized
* fix: room actions menu
* fix: remove other variant primary left.
220 lines
7.0 KiB
TypeScript
220 lines
7.0 KiB
TypeScript
"use client";
|
||
import React, { useEffect, useState } from "react";
|
||
import useAudioDevice from "../useAudioDevice";
|
||
import "react-select-search/style.css";
|
||
import "../../../styles/form.scss";
|
||
import About from "../../../(aboutAndPrivacy)/about";
|
||
import Privacy from "../../../(aboutAndPrivacy)/privacy";
|
||
import { useRouter } from "next/navigation";
|
||
import useCreateTranscript from "../createTranscript";
|
||
import SelectSearch from "react-select-search";
|
||
import { supportedLanguages } from "../../../supportedLanguages";
|
||
import useSessionStatus from "../../../lib/useSessionStatus";
|
||
import { featureEnabled } from "../../../domainContext";
|
||
import { signIn } from "next-auth/react";
|
||
import {
|
||
Flex,
|
||
Box,
|
||
Spinner,
|
||
Heading,
|
||
Button,
|
||
Card,
|
||
Center,
|
||
Link,
|
||
CardBody,
|
||
Stack,
|
||
Text,
|
||
Icon,
|
||
Grid,
|
||
IconButton,
|
||
Spacer,
|
||
Menu,
|
||
Tooltip,
|
||
Input,
|
||
} from "@chakra-ui/react";
|
||
const TranscriptCreate = () => {
|
||
const isClient = typeof window !== "undefined";
|
||
const router = useRouter();
|
||
const { isLoading, isAuthenticated } = useSessionStatus();
|
||
const requireLogin = featureEnabled("requireLogin");
|
||
|
||
const [name, setName] = useState<string>("");
|
||
const nameChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
||
setName(event.target.value);
|
||
};
|
||
const [targetLanguage, setTargetLanguage] = useState<string>("NOTRANSLATION");
|
||
|
||
const onLanguageChange = (newval) => {
|
||
(!newval || typeof newval === "string") && setTargetLanguage(newval);
|
||
};
|
||
|
||
const createTranscript = useCreateTranscript();
|
||
|
||
const [loadingRecord, setLoadingRecord] = useState(false);
|
||
const [loadingUpload, setLoadingUpload] = useState(false);
|
||
|
||
const getTargetLanguage = () => {
|
||
if (targetLanguage === "NOTRANSLATION") return;
|
||
return targetLanguage;
|
||
};
|
||
|
||
const send = () => {
|
||
if (loadingRecord || createTranscript.loading || permissionDenied) return;
|
||
setLoadingRecord(true);
|
||
createTranscript.create({ name, target_language: getTargetLanguage() });
|
||
};
|
||
|
||
const uploadFile = () => {
|
||
if (loadingUpload || createTranscript.loading || permissionDenied) return;
|
||
setLoadingUpload(true);
|
||
createTranscript.create({ name, target_language: getTargetLanguage() });
|
||
};
|
||
|
||
useEffect(() => {
|
||
let action = "record";
|
||
if (loadingUpload) action = "upload";
|
||
|
||
createTranscript.transcript &&
|
||
router.push(`/transcripts/${createTranscript.transcript.id}/${action}`);
|
||
}, [createTranscript.transcript]);
|
||
|
||
useEffect(() => {
|
||
if (createTranscript.error) setLoadingRecord(false);
|
||
}, [createTranscript.error]);
|
||
|
||
const { loading, permissionOk, permissionDenied, requestPermission } =
|
||
useAudioDevice();
|
||
|
||
return (
|
||
<Flex
|
||
maxW="container.xl"
|
||
flexDir="column"
|
||
margin="auto"
|
||
gap={2}
|
||
maxH="100%"
|
||
px={{ base: 5, md: 10 }}
|
||
py={5}
|
||
>
|
||
<Flex
|
||
flexDir={{ base: "column", md: "row" }}
|
||
justifyContent="space-between"
|
||
alignItems="center"
|
||
gap={8}
|
||
>
|
||
<Flex
|
||
flexDir="column"
|
||
h="full"
|
||
justifyContent="evenly"
|
||
flexBasis="1"
|
||
flexGrow={1}
|
||
>
|
||
<Heading size="2xl" textAlign={{ base: "center", md: "left" }}>
|
||
Welcome to Reflector
|
||
</Heading>
|
||
<Text mt={6}>
|
||
Reflector is a transcription and summarization pipeline that
|
||
transforms audio into knowledge.
|
||
<span className="hidden md:block">
|
||
The output is meeting minutes and topic summaries enabling
|
||
topic-specific analyses stored in your systems of record. This is
|
||
accomplished on your infrastructure – without 3rd parties –
|
||
keeping your data private, secure, and organized.
|
||
</span>
|
||
</Text>
|
||
<About buttonText="Learn more" />
|
||
<Text mt={6}>
|
||
In order to use Reflector, we kindly request permission to access
|
||
your microphone during meetings and events.
|
||
</Text>
|
||
{featureEnabled("privacy") && <Privacy buttonText="Privacy policy" />}
|
||
</Flex>
|
||
<Flex flexDir="column" h="full" flexBasis="1" flexGrow={1}>
|
||
<Center>
|
||
{isLoading ? (
|
||
<Spinner />
|
||
) : requireLogin && !isAuthenticated ? (
|
||
<Button onClick={() => signIn("authentik")}>Log in</Button>
|
||
) : (
|
||
<Flex
|
||
rounded="xl"
|
||
bg="blue.primary"
|
||
color="white"
|
||
maxW="96"
|
||
p={8}
|
||
flexDir="column"
|
||
my={4}
|
||
>
|
||
<Heading size="xl" mb={4}>
|
||
Try Reflector
|
||
</Heading>
|
||
<Box mb={4}>
|
||
<Text>Recording name</Text>
|
||
<div className="select-search-container">
|
||
<input
|
||
className="select-search-input"
|
||
type="text"
|
||
onChange={nameChange}
|
||
placeholder="Optional"
|
||
/>
|
||
</div>
|
||
</Box>
|
||
<Box mb={4}>
|
||
<Text>Do you want to enable live translation?</Text>
|
||
<SelectSearch
|
||
search
|
||
options={supportedLanguages}
|
||
value={targetLanguage}
|
||
onChange={onLanguageChange}
|
||
placeholder="Choose your language"
|
||
/>
|
||
</Box>
|
||
{isClient && !loading ? (
|
||
permissionOk ? (
|
||
<Spacer />
|
||
) : permissionDenied ? (
|
||
<Text className="">
|
||
Permission to use your microphone was denied, please
|
||
change the permission setting in your browser and refresh
|
||
this page.
|
||
</Text>
|
||
) : (
|
||
<Button
|
||
colorPalette="whiteAlpha"
|
||
onClick={requestPermission}
|
||
disabled={permissionDenied}
|
||
>
|
||
Request Microphone Permission
|
||
</Button>
|
||
)
|
||
) : (
|
||
<Text className="">Checking permissions...</Text>
|
||
)}
|
||
<Button
|
||
colorPalette="whiteAlpha"
|
||
onClick={send}
|
||
disabled={!permissionOk || loadingRecord || loadingUpload}
|
||
mt={2}
|
||
>
|
||
{loadingRecord ? "Loading..." : "Record Meeting"}
|
||
</Button>
|
||
<Text textAlign="center" m="2">
|
||
OR
|
||
</Text>
|
||
<Button
|
||
colorPalette="whiteAlpha"
|
||
onClick={uploadFile}
|
||
disabled={loadingRecord || loadingUpload}
|
||
>
|
||
{loadingUpload ? "Loading..." : "Upload File"}
|
||
</Button>
|
||
</Flex>
|
||
)}
|
||
</Center>
|
||
</Flex>
|
||
</Flex>
|
||
</Flex>
|
||
);
|
||
};
|
||
|
||
export default TranscriptCreate;
|