You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
My feature request is not related with a problem, it is an improvement request for the project.
Describe the solution you'd like
This project works fine for BBB installation, but if you want to integrate this project in another project, it is not easy, as Loader is directly coupled with how the BBB playback url works. MeetingId is required to be in the url with a specific format.
The Loader component, and all its dependencies, could be in a single project and added as npm package. And this project would be just the bridge to build the bbb playback html and load the Loader with the proper parameters.
The loader component, then will have to receive the source path where the playback files are stored via props, and all the configuration required via properties.
Aslo, with this change this could be integrated as part of any react application.
Additional context
I propose this solution as I have BBB integrated in a custom application.
My application receives an id for a virtual class, and then internally checks that the user has access to the class, and then has to load the playback, but as I've said, this only works if the meeting id is in the url, it cannot be passed as a property loaded from a database for example.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
My feature request is not related with a problem, it is an improvement request for the project.
Describe the solution you'd like
This project works fine for BBB installation, but if you want to integrate this project in another project, it is not easy, as Loader is directly coupled with how the BBB playback url works. MeetingId is required to be in the url with a specific format.
The Loader component, and all its dependencies, could be in a single project and added as npm package. And this project would be just the bridge to build the bbb playback html and load the Loader with the proper parameters.
The loader component, then will have to receive the source path where the playback files are stored via props, and all the configuration required via properties.
This could be an example of how to use it.
With this change I could build my own html page and pass the meeting source files in the html code:
<div id="root" data-src="https://example.com/my-meetings/{{ meeting.externalId }}"></div>
And also I could even have several bbb playbacks in a single page, or even load them in a modal.
Aslo, with this change this could be integrated as part of any react application.
Additional context
I propose this solution as I have BBB integrated in a custom application.
My application receives an id for a virtual class, and then internally checks that the user has access to the class, and then has to load the playback, but as I've said, this only works if the meeting id is in the url, it cannot be passed as a property loaded from a database for example.
The text was updated successfully, but these errors were encountered: