bigbluebutton-html-plugin-sdk 0.0.66 → 0.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -24
- package/dist/cjs/core/api/BbbPluginSdk.js +2 -0
- package/dist/cjs/core/api/BbbPluginSdk.js.map +1 -1
- package/dist/cjs/core/api/types.d.ts +9 -0
- package/dist/cjs/event-persistence/enums.d.ts +3 -0
- package/dist/cjs/event-persistence/enums.js +8 -0
- package/dist/cjs/event-persistence/enums.js.map +1 -0
- package/dist/cjs/event-persistence/hooks.d.ts +1 -0
- package/dist/cjs/event-persistence/hooks.js +15 -0
- package/dist/cjs/event-persistence/hooks.js.map +1 -0
- package/dist/cjs/event-persistence/types.d.ts +6 -0
- package/dist/cjs/event-persistence/types.js +3 -0
- package/dist/cjs/event-persistence/types.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,8 @@ For development purposes you can run a plugin locally from source.
|
|
|
22
22
|
For example if you take the [`sample-action-button-dropdown-plugin`](samples/sample-action-button-dropdown-plugin),
|
|
23
23
|
you do the following:
|
|
24
24
|
|
|
25
|
+
*Running from source code with local BBB-server*
|
|
26
|
+
|
|
25
27
|
1. Start the development server:
|
|
26
28
|
|
|
27
29
|
```bash
|
|
@@ -29,19 +31,59 @@ you do the following:
|
|
|
29
31
|
npm install
|
|
30
32
|
npm start
|
|
31
33
|
```
|
|
32
|
-
2. Add reference to it on BigBlueButton's `settings.yml`:
|
|
33
34
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
2. Add reference to it on BigBlueButton's `/create` call or add it on `/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties`:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
pluginsManifests=[{"url": "http://localhost:4701/manifest.json"}]
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
*Running from souce code with a remote BBB-server*
|
|
42
|
+
|
|
43
|
+
If you are running your BBB-server elsewhere, than you can't simply point the manifest URL to a local address, you'll need to either serve the built version into a CDN or serve the dev version using a service to make it public. And for the second option we'd recommend NGROK. Here are the instructions to do that:
|
|
44
|
+
|
|
45
|
+
1. Create an account on https://ngrok.com/ (Official website of NGROK);
|
|
46
|
+
|
|
47
|
+
2. Install NGROK in your computer. They have a guide for that right after you created your account;
|
|
48
|
+
|
|
49
|
+
3. Start the Plugin development server:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
cd $HOME/src/plugin-pick-random-user-plugin
|
|
53
|
+
npm install
|
|
54
|
+
npm start
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
4. Start the NGROK server into your machine with the following command:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
ngrok http http://172.17.0.1:4701
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Make sure to point NGROK to the correct local URL (In our case - The samples are made this way, for instance - we used `http://172.17.0.1:4701`)
|
|
64
|
+
|
|
65
|
+
Right after that, NGROK will create an interface into your terminal and will display the URL which your static files are being served.
|
|
66
|
+
|
|
67
|
+
Here's an example of URL: `https://<uuid>.ngrok-free.app`
|
|
68
|
+
|
|
69
|
+
You can already interact with this URL and access both
|
|
40
70
|
|
|
41
|
-
|
|
42
|
-
so the localhost is actually your local development machine.
|
|
71
|
+
`https://<uuid>.ngrok-free.app/manifest.json`
|
|
43
72
|
|
|
44
|
-
|
|
73
|
+
or
|
|
74
|
+
|
|
75
|
+
`https://<uuid>.ngrok-free.app/PickRandomUserPlugin.js`
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
5. Add this create parameter into the API-mate of the server you are testing it on:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
pluginsManifests=[{"url": "https://<uuid>.ngrok-free.app/manifest.json"}]
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
And there you go, you can test it freely.
|
|
85
|
+
|
|
86
|
+
### Building the Plugin (Production)
|
|
45
87
|
|
|
46
88
|
To build a plugin for production use
|
|
47
89
|
(again, using the example of [`sample-action-button-dropdown-plugin`](samples/sample-action-button-dropdown-plugin)),
|
|
@@ -53,26 +95,20 @@ npm install
|
|
|
53
95
|
npm run build-bundle
|
|
54
96
|
```
|
|
55
97
|
|
|
56
|
-
The above command will generate the `dist` folder, containing the bundled JavaScript file named `SampleActionButtonDropdownPlugin.js`.
|
|
57
|
-
|
|
98
|
+
The above command will generate the `dist` folder, containing the bundled JavaScript file named `SampleActionButtonDropdownPlugin.js` along with the `manifest.json`.
|
|
99
|
+
These files can be hosted on any HTTPS server.
|
|
58
100
|
|
|
59
|
-
To use the plugin with BigBlueButton, add the plugin's URL to `
|
|
101
|
+
To use the plugin with BigBlueButton, add the plugin's `manifest.json` URL to `bigbluebutton.properties` or you can simply send it via `/create` parameter:
|
|
60
102
|
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
app:
|
|
64
|
-
... // All app configurations
|
|
65
|
-
plugins:
|
|
66
|
-
- name: SampleActionButtonDropdownPlugin
|
|
67
|
-
url: <<PLUGIN_URL>>
|
|
68
|
-
... // All other configurations
|
|
103
|
+
```
|
|
104
|
+
pluginManifests=[{"url":"<your-domain>/path/to/manifest.json"}]
|
|
69
105
|
```
|
|
70
106
|
|
|
71
107
|
#### Hosting the Plugin on a BBB Server
|
|
72
108
|
|
|
73
109
|
While the plugin can be hosted on any Server, it is also possible to host the bundled file directly on
|
|
74
|
-
a BigBlueButton server. For that you copy
|
|
75
|
-
In this case, the
|
|
110
|
+
a BigBlueButton server. For that you copy `dist/SampleActionButtonDropdownPlugin.js` and `dist/manifest.json` to the folder `/var/www/bigbluebutton-default/assets/plugins/sampleActionButtonDropdownPlugin`.
|
|
111
|
+
In this case, the your manifest URL will be `https://<your-host>/plugins/sampleActionButtonDropdownPlugin/manifest.json`.
|
|
76
112
|
|
|
77
113
|
## API
|
|
78
114
|
|
|
@@ -397,7 +433,7 @@ module.exports = {
|
|
|
397
433
|
```
|
|
398
434
|
|
|
399
435
|
**Does the builded plugin need to be in the same BBB server?**
|
|
400
|
-
No, feel free to host it anywhere you want, just make sure to point the URL from `
|
|
436
|
+
No, feel free to host it anywhere you want, just make sure to point the URL from `manifest.json` correctly (into the create endpoint or `bigbluebutton.properties`).
|
|
401
437
|
|
|
402
438
|
**I am making my plugin based on a sample inside the SDK, but somehow, the sample is not working properly, what do I do to run it in dev mode and make it work?**
|
|
403
439
|
Well there are several motives to why the sample is not working properly, so I will go through each one of them briefly:
|
|
@@ -23,6 +23,7 @@ var hooks_12 = require("../../data-consumption/domain/meeting/from-core/hooks");
|
|
|
23
23
|
var commands_2 = require("../../server-commands/commands");
|
|
24
24
|
var hooks_13 = require("../../learning-analytics-dashboard/hooks");
|
|
25
25
|
var utils_1 = require("../../remote-data/utils");
|
|
26
|
+
var hooks_14 = require("../../event-persistence/hooks");
|
|
26
27
|
/**
|
|
27
28
|
* Class responsible for either initialize or get the PluginApi
|
|
28
29
|
*
|
|
@@ -71,6 +72,7 @@ var BbbPluginSdk = /** @class */ (function () {
|
|
|
71
72
|
pluginApi.serverCommands = (0, commands_2.serverCommands)(pluginName);
|
|
72
73
|
pluginApi.sendGenericDataForLearningAnalyticsDashboard = function (data) { return (0, hooks_13.sendGenericDataForLearningAnalyticsDashboard)(data, pluginName); };
|
|
73
74
|
pluginApi.getRemoteData = function (dataSourceName) { return (0, utils_1.getRemoteData)(dataSourceName, pluginName); };
|
|
75
|
+
pluginApi.persistEvent = function (eventName, payload) { return (0, hooks_14.persistEventFunctionWrapper)(pluginName, eventName, payload); };
|
|
74
76
|
}
|
|
75
77
|
else {
|
|
76
78
|
throw new Error('Plugin name not set');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BbbPluginSdk.js","sourceRoot":"","sources":["../../../../src/core/api/BbbPluginSdk.ts"],"names":[],"mappings":";;;AAAA,+BAA+B;AAC/B,+BAAkC;AAOlC,kDAA4D;AAO5D,uDAAwD;AAQxD,kDAAiE;AACjE,gGAEgF;AAChF,wFAEwE;AACxE,oFAA+F;AAC/F,gFAAwF;AACxF,oFAA+F;AAC/F,4DAAoE;AACpE,uDAA0D;AAC1D,mEAA2E;AAE3E,uFAAsG;AACtG,2EAA8F;AAC9F,0EAA4F;AAE5F,2FAAuG;AACvG,oDAAsD;AAEtD,gFAAmF;AACnF,2DAAgE;AAChE,mEAAwG;AAExG,iDAAwD;
|
|
1
|
+
{"version":3,"file":"BbbPluginSdk.js","sourceRoot":"","sources":["../../../../src/core/api/BbbPluginSdk.ts"],"names":[],"mappings":"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"}
|
|
@@ -31,6 +31,7 @@ import { SendGenericDataForLearningAnalyticsDashboard } from '../../learning-ana
|
|
|
31
31
|
import { UseUserCameraDomElementsFunction } from '../../dom-element-manipulation/user-camera/types';
|
|
32
32
|
import { ScreenshareHelperInterface, UserCameraHelperInterface } from '../../extensible-areas';
|
|
33
33
|
import { GetDataSource } from '../../remote-data/types';
|
|
34
|
+
import { PersistEventFunction } from '../../event-persistence/types';
|
|
34
35
|
export type SetPresentationToolbarItems = (presentationToolbarItem: PresentationToolbarInterface[]) => string[];
|
|
35
36
|
export type SetUserListDropdownItems = (userListDropdownItem: UserListDropdownInterface[]) => string[];
|
|
36
37
|
export type SetActionButtonDropdownItems = (actionButtonDropdownInterface: ActionButtonDropdownInterface[]) => string[];
|
|
@@ -199,6 +200,14 @@ export interface PluginApi {
|
|
|
199
200
|
*
|
|
200
201
|
*/
|
|
201
202
|
getRemoteData?: GetDataSource;
|
|
203
|
+
/**
|
|
204
|
+
* Persists events to `events.xml` file.
|
|
205
|
+
*
|
|
206
|
+
* @param eventName - name of the event to be persisted in `events.xml`
|
|
207
|
+
* @param payload - payload to be persisted in `events.xml`
|
|
208
|
+
*
|
|
209
|
+
*/
|
|
210
|
+
persistEvent?: PersistEventFunction;
|
|
202
211
|
}
|
|
203
212
|
export interface PluginBrowserWindow extends Window {
|
|
204
213
|
bbb_plugins: {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventPersistenceEvents = void 0;
|
|
4
|
+
var EventPersistenceEvents;
|
|
5
|
+
(function (EventPersistenceEvents) {
|
|
6
|
+
EventPersistenceEvents["EVENT_PERSISTED"] = "PLUGIN_EVENT_PERSISTED";
|
|
7
|
+
})(EventPersistenceEvents || (exports.EventPersistenceEvents = EventPersistenceEvents = {}));
|
|
8
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/event-persistence/enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAChC,oEAA0C,CAAA;AAC5C,CAAC,EAFW,sBAAsB,sCAAtB,sBAAsB,QAEjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const persistEventFunctionWrapper: <T = object>(pluginName: string, eventName: string, payload: T) => void;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.persistEventFunctionWrapper = void 0;
|
|
4
|
+
var enums_1 = require("./enums");
|
|
5
|
+
var persistEventFunctionWrapper = function (pluginName, eventName, payload) {
|
|
6
|
+
window.dispatchEvent(new CustomEvent(enums_1.EventPersistenceEvents.EVENT_PERSISTED, {
|
|
7
|
+
detail: {
|
|
8
|
+
pluginName: pluginName,
|
|
9
|
+
eventName: eventName,
|
|
10
|
+
payload: payload,
|
|
11
|
+
},
|
|
12
|
+
}));
|
|
13
|
+
};
|
|
14
|
+
exports.persistEventFunctionWrapper = persistEventFunctionWrapper;
|
|
15
|
+
//# sourceMappingURL=hooks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hooks.js","sourceRoot":"","sources":["../../../src/event-persistence/hooks.ts"],"names":[],"mappings":";;;AAGA,iCAAiD;AAE1C,IAAM,2BAA2B,GAAG,UACzC,UAAkB,EAClB,SAAiB,EACjB,OAAU;IAEV,MAAM,CAAC,aAAa,CAClB,IAAI,WAAW,CACa,8BAAsB,CAAC,eAAe,EAAE;QAClE,MAAM,EAAE;YACN,UAAU,YAAA;YACV,SAAS,WAAA;YACT,OAAO,SAAA;SACR;KACF,CAAC,CACH,CAAC;AACJ,CAAC,CAAC;AAfW,QAAA,2BAA2B,+BAetC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/event-persistence/types.ts"],"names":[],"mappings":""}
|