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
This section provides instructions on how to use the built-in plugins for SpringRoll Container. For writing or updating older plugins, see the [Plugin Authoring Guide](https://github.com/SpringRoll/SpringRollContainer/tree/main/src/plugins).
76
77
77
78
The Container has several built-in plugins that allow the user to control various aspects of a game/application.
78
79
These are initialized with either a query selector string (similar to what you would pass to [document.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector))
79
80
or an `HTMLElement`.
80
81
82
+
81
83
Plugins in the SpringRollContainer correspond to a matching [feature in SpringRoll Core](https://github.com/SpringRoll/SpringRoll/tree/develop/src#features).
82
84
If the container has a plugin enabled corresponding to a feature that the game doesn't contain, the container will automatically _hide the corresponding UI element_.
83
85
For example, if the container has the `CaptionsTogglePlugin` enabled with a corresponding button to toggle captions but the game doesn't actually _have_ captions, the container will hide the captions toggle button automatically.
@@ -86,7 +88,7 @@ For example, if the container has the `CaptionsTogglePlugin` enabled with a corr
The process for writing a Container plugin differs based on whether it is going to be a built-in plugin, or external.
4
+
5
+
Plugins for Container should take the form of an ES6 module, preferably with a named export. E.g.:
6
+
```javascript
7
+
exportclassMyContainerPlugin() {...}
8
+
```
9
+
10
+
When developing a plugin for Container v2.x there are 3 main lifecycle hooks to keep in mind: `preload`, `init`, and `start`.
11
+
12
+
`preload()`: Preload must return a `Promise`. It can be async. The method is passed the Container instance. In general, most plugins will only need to access the [Bellhop client](https://github.com/SpringRoll/Bellhop). However, the entire Container instance is available should you require it.
13
+
*Note: if this method is missing or the returned promise is rejected, Container will automatically discard your plugin and it will not be loaded in properly.*
14
+
15
+
Example:
16
+
```javascript
17
+
exportclassContainerPlugin() {
18
+
constructor() {...}
19
+
20
+
asyncpreload({ client }) {
21
+
this.client= client;
22
+
}
23
+
}
24
+
```
25
+
26
+
`init()`: The init method is called once all plugin `preload` promises have resolved. Most setup that involves interacting with the Springroll Application via Bellhop would happen here. Any event listeners (bellhop or otherwise) should go here. `init()` is also passed the Container instance if you need it.
27
+
28
+
`start()`: The `start()` method is called after all preloaded plugins have finished their `init()` calls. This method allows plugins to depend on others by allowing a second plugin to `start()` after a first plugin has ran `init()`. This can help ease race conditions between plugins, as they are not guarenteed to call `init()` in a consistent order. Similarly to `preload()`, `start()` is also passed the Container instance if required.
29
+
30
+
In general every plugin will follow a similar blueprint and will look something like this:
31
+
```javascript
32
+
exportclassContainerPlugin() {
33
+
constructor() {...}
34
+
35
+
asyncpreload({ client }) {
36
+
this.client= client;
37
+
}
38
+
39
+
init() {...}
40
+
41
+
start() {...}
42
+
43
+
//Any other helper functions required
44
+
}
45
+
```
46
+
47
+
However, some more customized plugins plugins may have additional concerns. These are detailed below.```
48
+
49
+
## External Plugin
50
+
External Plugins are generally specific to an application or organization and follow the above blueprint. They don't tend to follow a Springroll Application feature like `sound` or `captions`, and may just be additional custom functionality for your particular page. In this case, you can implement the methods you need for your plugin with no additional considerations.
51
+
52
+
## Porting Container v1.x plugins to v2.x
53
+
Exactly how you go about porting your plugin from the SpringRollContainer 1 to 2 will depend on how the original plugin was written. The `init()` function for Container 2.0 plugins will loosely correspond to the older `setup()` from Container 1.0.
54
+
55
+
The older hook methods `open` and `opened` should now be implemented as event listeners in the main plugin.:
56
+
```javascript
57
+
exportclassMyPlugin {
58
+
preload() {
59
+
returnPromise.resolve();
60
+
}
61
+
62
+
init({ client }) {
63
+
client.on('opened', () => {
64
+
// do things
65
+
});
66
+
67
+
client.on('open', () => {
68
+
// do things
69
+
});
70
+
}
71
+
}
72
+
```
73
+
74
+
75
+
## Internal a.k.a. Built-In Plugins
76
+
If you're developing for SpringrollContainer directly the process is still the same but there are base plugin classes available to keep your plugins DRY and more consistent.
The most barebones plugin class avaialable. Should be used if none of the other plugins match your needs.
81
+
Provides very basic implementations of `preload()`, `init()`, and `start()`.
82
+
83
+
| It also provides a few useful helper functions: ||
84
+
| --- | --- |
85
+
|`SendProperty(prop, value)`| Sends a single property and it's value through Bellhop to the application. `prop` should match the springroll feature name. Also [saves the property](https://github.com/SpringRoll/SpringRollContainer#saved-data-api) for re-use |
86
+
|`warn(warningText)`| prints out an informative console warning |
The `ButtonPlugin` is useful for any plugin that requires a `mute` state (i.e. on or off). It extends the `BasePlugin` and has access to all of the methods above.
92
+
| It also includes: ||
93
+
| --- | --- |
94
+
| `_setMuteProp(prop, button, muted)` | Sets the current state of the property, and sends it to the application. This also handles applying styles to the button or buttons to match. `button` can be a single instance of a button or an array of matching buttons.
If your plugin requires a range input to control volume or a similar setting this plugin will handle most of it. It can only accept one setting to control however so if you require more than one setting (e.g. `MusicVolume` and `VoiceOverVolume`) consider breaking it out into multiple plugins or just using `BasePlugin`. If your plugin extends this base class all you have to do is pass the configuration options through the `super()` call and the `SliderPlugin` handles the rest.
The RadioGroupPlugin is used for any plugin that uses groups of radio buttons to allow selection between pre-determined options. Similarly to the SliderPlugin above, the RadioGroupPlugin handles most of the set up behind the scenes and you won't have to interact directly with any of its methods.
104
+
105
+
### UI-Elements
106
+
Container also provides a few base ui-element classes to help set up any HTML controls you have. These are:
Note: these are used automatically by the `RadioGroupPlugin` and `SliderPlugin`. So these should only be required if you're not using one of those two as your base.
0 commit comments