-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedbacks.js
124 lines (115 loc) · 3.14 KB
/
feedbacks.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const { combineRgb } = require('@companion-module/base')
module.exports = {
/**
* INTERNAL: Get the available feedbacks.
*
* @access protected
* @since 1.0.0
* @returns {Object} - the available feedbacks
*/
getFeedbacks() {
let feedbacks = {}
feedbacks['channelLayout'] = {
name: 'Change style on channel layout change',
type: 'boolean',
description: 'Change style if the specified layout is active',
defaultStyle: {
color: combineRgb(255, 255, 255),
bgcolor: combineRgb(255, 0, 0),
},
options: [
{
type: 'dropdown',
label: 'Channel',
id: 'channelIdlayoutId',
choices: this.choicesChannelLayout(),
default: this.firstId(this.choicesChannelLayout()),
},
],
callback: (feedback) => {
if (!feedback.options.channelIdlayoutId) {
return false
}
const [channelId, layoutId] = feedback.options.channelIdlayoutId.split('-')
try {
if (this.state.channels[channelId]?.layouts[layoutId]?.active) {
return true
}
} catch (error) {
this.log(
'error',
`trying to read feedback for a non-existing layout (Channel ${channelId}, Layout ${layoutId})`
)
}
return false
},
}
feedbacks['channelStreaming'] = {
name: 'Change style if streaming',
type: 'boolean',
description: 'Change style if specified channel is streaming',
defaultStyle: {
color: combineRgb(255, 255, 255),
bgcolor: combineRgb(0, 255, 0),
},
options: [
{
type: 'dropdown',
label: 'Channel publisher',
id: 'channelIdpublisherId',
choices: this.choicesChannelPublishers(),
default: this.firstId(this.choicesChannelPublishers()),
},
],
callback: (feedback) => {
if (!feedback.options.channelIdpublisherId) {
return false
}
const [channelId, publisherId] = feedback.options.channelIdpublisherId.split('-')
const channel = this.state.channels[channelId]
try {
if (publisherId === 'all') {
return !Object.keys(channel.publishers)
.map((id) => channel.publishers[id].status.state)
.some((state) => state !== 'started')
} else {
return channel.publishers[publisherId].status.state === 'started'
}
} catch (error) {
this.log(
'error',
`trying to read feedback for a non-existing publisher (Channel ${channelId}, Publisher ${publisherId})`
)
return false
}
},
}
feedbacks['recorderRecording'] = {
name: 'Change style if recording',
type: 'boolean',
description: 'Change style if channel/recorder is recording',
defaultStyle: {
color: combineRgb(255, 255, 255),
bgcolor: combineRgb(0, 255, 0),
},
options: [
{
type: 'dropdown',
label: 'Recorders',
id: 'recorderId',
choices: this.choicesRecorders(),
default: this.firstId(this.choicesRecorders()),
},
],
callback: (feedback) => {
try {
return this.state.recorders[feedback.options.recorderId]?.status?.state === 'started'
} catch (error) {
this.log('error', `trying to read feedback for a non-existing recorder (${feedback.options.recorderId})`)
return false
}
},
}
return feedbacks
},
}