Files
reflector/www/app/lib/videoPlatforms/jitsi/JitsiAdapter.tsx
Mathieu Virbel 293f7d4f1f feat: implement frontend video platform configuration and abstraction
- Add NEXT_PUBLIC_VIDEO_PLATFORM environment variable support
- Create video platform abstraction layer with factory pattern
- Implement Whereby and Jitsi platform providers
- Update room meeting page to use platform-agnostic component
- Add platform display in room management (cards and table views)
- Support single platform per deployment configuration
- Maintain backward compatibility with existing Whereby integration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 12:21:51 -06:00

9 lines
306 B
TypeScript

import { VideoPlatformAdapter } from "../types";
import JitsiProvider from "./JitsiProvider";
export const JitsiAdapter: VideoPlatformAdapter = {
component: JitsiProvider,
requiresConsent: true,
supportsFocusManagement: false, // Jitsi iframe doesn't support the same focus management as Whereby
};