-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpluginManager.js
More file actions
56 lines (48 loc) · 1.12 KB
/
pluginManager.js
File metadata and controls
56 lines (48 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"use strict"
const ElgatoKeyLightPlugin = require('./plugins/elgato-key-light.js')
const SpotifyPlugin = require('./plugins/spotify.js')
const LifxPlugin = require('./plugins/lifx.js')
class PluginManager {
constructor() {
this.plugins = [
new ElgatoKeyLightPlugin(),
new SpotifyPlugin(),
new LifxPlugin()
]
}
menuItems() {
let items = []
for (var i in this.plugins) {
var plugin = this.plugins[i]
if (plugin && plugin.menuItems) {
items = items.concat(plugin.menuItems())
}
}
return items
}
beginActiveCall() {
for (var i in this.plugins) {
var plugin = this.plugins[i]
if (plugin && plugin.beginActiveCall) {
plugin.beginActiveCall()
}
}
}
endActiveCall() {
for (var i in this.plugins) {
var plugin = this.plugins[i]
if (plugin && plugin.endActiveCall) {
plugin.endActiveCall()
}
}
}
appClosed() {
for (var i in this.plugins) {
var plugin = this.plugins[i]
if (plugin && plugin.appClosed) {
plugin.appClosed()
}
}
}
}
module.exports = PluginManager