bigbluebutton-html-plugin-sdk 0.0.46 → 0.0.47
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 +25 -40
- 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/data-consumption/domain/meeting/from-core/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/meeting/from-core/hooks.js +8 -0
- package/dist/cjs/data-consumption/domain/meeting/from-core/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/domain/meeting/from-core/types.d.ts +7 -0
- package/dist/cjs/data-consumption/domain/meeting/from-core/types.js +3 -0
- package/dist/cjs/data-consumption/domain/meeting/from-core/types.js.map +1 -0
- package/dist/cjs/data-consumption/domain/meeting/index.d.ts +1 -0
- package/dist/cjs/data-consumption/domain/meeting/index.js +3 -0
- package/dist/cjs/data-consumption/domain/meeting/index.js.map +1 -0
- package/dist/cjs/data-consumption/enums.d.ts +1 -0
- package/dist/cjs/data-consumption/enums.js +1 -0
- package/dist/cjs/data-consumption/enums.js.map +1 -1
- package/dist/cjs/data-consumption/index.d.ts +1 -0
- package/dist/cjs/data-consumption/index.js +1 -0
- package/dist/cjs/data-consumption/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,19 +23,20 @@ For example if you take the [`sample-action-button-dropdown-plugin`](samples/sam
|
|
|
23
23
|
you do the following:
|
|
24
24
|
|
|
25
25
|
1. Start the development server:
|
|
26
|
-
```bash
|
|
27
|
-
cd $HOME/src/bigbluebutton-html-plugin-sdk/samples/sample-action-button-dropdown-plugin
|
|
28
|
-
npm install
|
|
29
|
-
npm start
|
|
30
|
-
```
|
|
31
26
|
|
|
27
|
+
```bash
|
|
28
|
+
cd $HOME/src/bigbluebutton-html-plugin-sdk/samples/sample-action-button-dropdown-plugin
|
|
29
|
+
npm install
|
|
30
|
+
npm start
|
|
31
|
+
```
|
|
32
32
|
2. Add reference to it on BigBlueButton's `settings.yml`:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
|
|
34
|
+
```yaml
|
|
35
|
+
public:
|
|
36
|
+
plugins:
|
|
37
|
+
- name: SampleActionButtonDropdownPlugin
|
|
38
|
+
url: http://127.0.0.1:4701/static/SampleActionButtonDropdownPlugin.js
|
|
39
|
+
```
|
|
39
40
|
|
|
40
41
|
_N.B.:_ Be aware that in this case the url is interpreted from the plugin in the browser,
|
|
41
42
|
so the localhost is actually your local development machine.
|
|
@@ -78,52 +79,34 @@ In this case, the `<<PLUGIN_URL>>` will be `https://<your-host>/plugins/SampleAc
|
|
|
78
79
|
### Extensible UI areas
|
|
79
80
|
|
|
80
81
|
- Action bar items (button, separator)
|
|
81
|
-
|
|
82
82
|
- Action Button Dropdown Items (option, separator)
|
|
83
|
-
|
|
84
83
|
- Audio settings dropdown items (option, separator)
|
|
85
|
-
|
|
86
84
|
- Camera settings dropdown items (option, separator)
|
|
87
|
-
|
|
88
85
|
- Nav bar items (button, info)
|
|
89
|
-
|
|
90
86
|
- Presentation dropdown items (option, separator)
|
|
91
|
-
|
|
92
87
|
- Presentation toolbar items (button, separator, spinner)
|
|
93
|
-
|
|
94
88
|
- User camera settings dropdown items (option, separator)
|
|
95
|
-
|
|
96
89
|
- User list dropdown items (option, separator)
|
|
97
|
-
|
|
98
90
|
- User list item additional information (item, label)
|
|
99
|
-
|
|
100
91
|
- Floating window item (floatingWindow)
|
|
101
|
-
|
|
102
92
|
- Generic component (genericComponent)
|
|
103
93
|
|
|
104
94
|
### Getters available through the API:
|
|
105
95
|
|
|
106
96
|
- `getSessionToken`: returns the user session token located on the user's URL.
|
|
107
|
-
|
|
108
97
|
- `getJoinUrl`: returns the join url associated with the parameters passed as an argument. Since it fetches the BigBlueButton API, this getter method is asynchronous.
|
|
109
98
|
|
|
110
99
|
### Realtime data consumption
|
|
111
100
|
|
|
112
101
|
- `useCurrentPresentation` hook: provides information regarding the current presentation;
|
|
113
|
-
|
|
114
102
|
- `useLoadedUserList` hook: provides information regarding the loaded user list (displayed in the screen);
|
|
115
|
-
|
|
116
103
|
- `useCurrentUser` hook: provides information regarding the current user;
|
|
117
|
-
|
|
118
104
|
- `useUsersBasicInfo` hook: provides information regarding all users (only crucial information: userId, name and role);
|
|
119
|
-
|
|
120
105
|
- `useLoadedChatMessages` hook: provides information regarding the loaded chat messages;
|
|
121
|
-
|
|
122
106
|
- `useCustomSubscription` hook: with this hook, the developer can query pretty much anything graphql can provide. Note: Make sure that, on BBB version change, the custom subscriptions you make will work as expected.
|
|
123
|
-
|
|
124
107
|
- `usePluginSettings` hook: it provides all the specific settings regarding the current plugin it's been loaded from.
|
|
125
|
-
|
|
126
108
|
- `useTalkingIndicator` hook: it gives you invormation on the user-voice data, that is, who is talking or muted.
|
|
109
|
+
- `useMeeting` hook: it gives you information on the current meeting that the user is on.
|
|
127
110
|
|
|
128
111
|
### Real time data exchange
|
|
129
112
|
|
|
@@ -197,6 +180,7 @@ export type ObjectTo = ToUserId | ToRole;
|
|
|
197
180
|
- UserListUiDataNames.USER_LIST_IS_OPEN;
|
|
198
181
|
|
|
199
182
|
Example of usage:
|
|
183
|
+
|
|
200
184
|
```typscript
|
|
201
185
|
const currentLocale = pluginApi.useUiData(IntlLocaleUiDataNames.CURRENT_LOCALE, {
|
|
202
186
|
locale: 'en',
|
|
@@ -207,16 +191,17 @@ const currentLocale = pluginApi.useUiData(IntlLocaleUiDataNames.CURRENT_LOCALE,
|
|
|
207
191
|
### Ui Commands to automatize tasks in BBB
|
|
208
192
|
|
|
209
193
|
`uiCommands` object: It basically contains all the possible commands available to the developer to interact with the core BBB UI, see the ones implemented down below:
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
194
|
+
|
|
195
|
+
- chat:
|
|
196
|
+
- form:
|
|
197
|
+
- open: this function will open the sidebar chat panel automatically;
|
|
198
|
+
- fill: this function will fill the form input field of the chat passed in the argument as {text: string}
|
|
199
|
+
- external-video:
|
|
200
|
+
- volume:
|
|
201
|
+
- set: this function will set the external video volume to a certain number between 0 and 1 (that is 0% and);
|
|
202
|
+
- layout:
|
|
203
|
+
- set: This function set the current layout with its argument (example: LayoutComponentListEnum.GENERIC_COMPONENT)
|
|
204
|
+
- unset: This function unset the current layout with its argument (example: LayoutComponentListEnum.GENERIC_COMPONENT)
|
|
220
205
|
|
|
221
206
|
### Dom Element Manipulation
|
|
222
207
|
|
|
@@ -16,6 +16,7 @@ var hooks_7 = require("../../data-consumption/domain/chat/loaded-chat-messages/h
|
|
|
16
16
|
var hooks_8 = require("../../dom-element-manipulation/chat/message/hooks");
|
|
17
17
|
var hooks_9 = require("../../data-consumption/domain/user-voice/talking-indicator/hooks");
|
|
18
18
|
var hooks_10 = require("../../ui-data-hooks/hooks");
|
|
19
|
+
var hooks_11 = require("../../data-consumption/domain/meeting/from-core/hooks");
|
|
19
20
|
/**
|
|
20
21
|
* Class responsible for either initialize or get the PluginApi
|
|
21
22
|
*
|
|
@@ -43,6 +44,7 @@ var BbbPluginSdk = /** @class */ (function () {
|
|
|
43
44
|
pluginApi.useCurrentPresentation = (function () { return (0, hooks_2.useCurrentPresentation)(); });
|
|
44
45
|
pluginApi.useLoadedUserList = (function () { return (0, hooks_4.useLoadedUserList)(); });
|
|
45
46
|
pluginApi.useCurrentUser = (function () { return (0, hooks_5.useCurrentUser)(); });
|
|
47
|
+
pluginApi.useMeeting = (function () { return (0, hooks_11.useMeeting)(); });
|
|
46
48
|
pluginApi.useUsersBasicInfo = (function () { return (0, hooks_6.useUsersBasicInfo)(); });
|
|
47
49
|
pluginApi.useTalkingIndicator = (function () { return (0, hooks_9.useTalkingIndicator)(); });
|
|
48
50
|
pluginApi.useLoadedChatMessages = (function () { return (0, hooks_7.useLoadedChatMessages)(); });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BbbPluginSdk.js","sourceRoot":"","sources":["../../../../src/core/api/BbbPluginSdk.ts"],"names":[],"mappings":";;;AAMA,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;AAE9F,0FAAuG;AACvG,oDAAsD;
|
|
1
|
+
{"version":3,"file":"BbbPluginSdk.js","sourceRoot":"","sources":["../../../../src/core/api/BbbPluginSdk.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,6 +25,7 @@ import { UseLoadedChatMessagesFunction } from '../../data-consumption/domain/cha
|
|
|
25
25
|
import { UseTalkingIndicatorFunction } from '../../data-consumption/domain/user-voice/talking-indicator/types';
|
|
26
26
|
import { GenericComponentInterface } from '../../extensible-areas/generic-component/types';
|
|
27
27
|
import { UseUiDataFunction } from '../../ui-data-hooks/types';
|
|
28
|
+
import { UseMeetingFunction } from '../../data-consumption/domain/meeting/from-core/types';
|
|
28
29
|
export type SetPresentationToolbarItems = (presentationToolbarItem: PresentationToolbarInterface[]) => string[];
|
|
29
30
|
export type SetUserListDropdownItems = (userListDropdownItem: UserListDropdownInterface[]) => string[];
|
|
30
31
|
export type SetActionButtonDropdownItems = (actionButtonDropdownInterface: ActionButtonDropdownInterface[]) => string[];
|
|
@@ -79,6 +80,14 @@ export interface PluginApi {
|
|
|
79
80
|
*
|
|
80
81
|
*/
|
|
81
82
|
useCurrentUser?: UseCurrentUserFunction;
|
|
83
|
+
/**
|
|
84
|
+
* Returns an object containing the data on the current meeting, i.e. the meeting on which the
|
|
85
|
+
* plugin is running.
|
|
86
|
+
*
|
|
87
|
+
* @returns `GraphqlResponseWrapper` with the CurrentMeeting type.
|
|
88
|
+
*
|
|
89
|
+
*/
|
|
90
|
+
useMeeting?: UseMeetingFunction;
|
|
82
91
|
/**
|
|
83
92
|
* Returns an object containing the brief data on every user in te meeting.
|
|
84
93
|
*
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useMeeting = void 0;
|
|
4
|
+
var enums_1 = require("../../../enums");
|
|
5
|
+
var hookCreator_1 = require("../../../factory/hookCreator");
|
|
6
|
+
var useMeeting = function () { return (0, hookCreator_1.createDataConsumptionHook)(enums_1.DataConsumptionHooks.MEETING); };
|
|
7
|
+
exports.useMeeting = useMeeting;
|
|
8
|
+
//# sourceMappingURL=hooks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hooks.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/meeting/from-core/hooks.ts"],"names":[],"mappings":";;;AAAA,wCAAsD;AACtD,4DAAyE;AAGlE,IAAM,UAAU,GAAG,cAAM,OAAA,IAAA,uCAAyB,EAGvD,4BAAoB,CAAC,OAAO,CAC7B,EAJ+B,CAI/B,CAAC;AAJW,QAAA,UAAU,cAIrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../../src/data-consumption/domain/meeting/from-core/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Meeting } from './from-core/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/data-consumption/domain/meeting/index.ts"],"names":[],"mappings":""}
|
|
@@ -3,6 +3,7 @@ export declare enum DataConsumptionHooks {
|
|
|
3
3
|
LOADED_USER_LIST = "Hooks::UseLoadedUserList",
|
|
4
4
|
CURRENT_USER = "Hooks::UseCurrentUser",
|
|
5
5
|
LOADED_CHAT_MESSAGES = "Hooks::UseLoadedChatMessages",
|
|
6
|
+
MEETING = "Hooks::UseMeeting",
|
|
6
7
|
TALKING_INDICATOR = "Hooks::UseTalkingIndicator",
|
|
7
8
|
CUSTOM_SUBSCRIPTION = "Hooks::CustomSubscription"
|
|
8
9
|
}
|
|
@@ -7,6 +7,7 @@ var DataConsumptionHooks;
|
|
|
7
7
|
DataConsumptionHooks["LOADED_USER_LIST"] = "Hooks::UseLoadedUserList";
|
|
8
8
|
DataConsumptionHooks["CURRENT_USER"] = "Hooks::UseCurrentUser";
|
|
9
9
|
DataConsumptionHooks["LOADED_CHAT_MESSAGES"] = "Hooks::UseLoadedChatMessages";
|
|
10
|
+
DataConsumptionHooks["MEETING"] = "Hooks::UseMeeting";
|
|
10
11
|
DataConsumptionHooks["TALKING_INDICATOR"] = "Hooks::UseTalkingIndicator";
|
|
11
12
|
DataConsumptionHooks["CUSTOM_SUBSCRIPTION"] = "Hooks::CustomSubscription";
|
|
12
13
|
})(DataConsumptionHooks || (exports.DataConsumptionHooks = DataConsumptionHooks = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/data-consumption/enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/data-consumption/enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAQX;AARD,WAAY,oBAAoB;IAC9B,8EAAsD,CAAA;IACtD,qEAA6C,CAAA;IAC7C,8DAAsC,CAAA;IACtC,6EAAqD,CAAA;IACrD,qDAA6B,CAAA;IAC7B,wEAAgD,CAAA;IAChD,yEAAiD,CAAA;AACnD,CAAC,EARW,oBAAoB,oCAApB,oBAAoB,QAQ/B"}
|
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./domain/presentations"), exports);
|
|
18
18
|
__exportStar(require("./domain/chat"), exports);
|
|
19
|
+
__exportStar(require("./domain/meeting"), exports);
|
|
19
20
|
__exportStar(require("./domain/users"), exports);
|
|
20
21
|
__exportStar(require("./domain/user-voice"), exports);
|
|
21
22
|
__exportStar(require("./domain/shared"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/data-consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,gDAA8B;AAC9B,iDAA+B;AAC/B,sDAAoC;AACpC,kDAAgC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/data-consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,gDAA8B;AAC9B,mDAAiC;AACjC,iDAA+B;AAC/B,sDAAoC;AACpC,kDAAgC"}
|