import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import VideoJS from './VideoJS.jsx'; // Mount the components when the DOM is ready const mountComponents = () => { // Mount main video player const rootContainerMainNew = document.getElementById('video-js-root-main'); if (rootContainerMainNew && !rootContainerMainNew.hasChildNodes()) { const rootMain = createRoot(rootContainerMainNew); rootMain.render( ); } // Mount embed video player const rootContainerEmbedNew = document.getElementById('video-js-root-embed'); if (rootContainerEmbedNew && !rootContainerEmbedNew.hasChildNodes()) { const rootEmbed = createRoot(rootContainerEmbedNew); rootEmbed.render( ); } }; // Expose the mounting function globally for manual triggering window.triggerVideoJSMount = mountComponents; // Listen for custom events to trigger mounting document.addEventListener('triggerVideoJSMount', () => { mountComponents(); }); // Initial mount if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', mountComponents); } else { mountComponents(); } // Also periodically check for new containers (as a fallback) setInterval(() => { const embedContainer = document.getElementById('video-js-root-embed'); if (embedContainer && !embedContainer.hasChildNodes()) { mountComponents(); } }, 1000);