-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedbacks.ts
92 lines (86 loc) · 3.9 KB
/
feedbacks.ts
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
import type {CompanionFeedbackDefinitions, CompanionFeedbackDefinition, CompanionInputFieldDropdown, CompanionFeedbackBooleanEvent, CompanionFeedbackContext, DropdownChoice, CompanionFeedbackButtonStyleResult} from '@companion-module/base'
import type {ModuleInstance} from './main'
export async function getFeedbacks(instance: ModuleInstance): Promise<CompanionFeedbackDefinitions> {
const feedbacks: CompanionFeedbackDefinitions = {}
let encoders = await instance.resiApi.getEncoders(); // hash of encoder uuids to names
let encoderOptions: DropdownChoice[] = [];
for (const [uuid, name] of Object.entries(encoders)) {
encoderOptions.push({ id: uuid, label: name as string });
}
let intervalId: NodeJS.Timeout | null = null;
feedbacks['encoder_status'] = {
name: 'Encoder Status',
type: 'boolean',
description: 'Feedback when an encoder changes status',
defaultStyle: {
bgcolor: 0xff0000,
color: 0xffffff,
} as CompanionFeedbackButtonStyleResult,
options: [
{
type: 'dropdown',
id: 'encoder',
label: 'Encoder',
choices: encoderOptions,
default: Object.keys(encoders)[0],
} as CompanionInputFieldDropdown,
],
callback: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
const encoderStatus = await instance.resiApi.getEncoderStatusById(feedback.options.encoder);
return encoderStatus.status === 'started';
},
subscribe: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
if (intervalId !== null) {
// already subscribed
return;
}
intervalId = setInterval(async () => {
const encoderStatus = await instance.resiApi.getEncoderStatusById(feedback.options.encoder);
instance.checkFeedbacks('encoder_status')
}, 5000);
}, unsubscribe: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
if (intervalId !== null) {
clearInterval(intervalId);
intervalId = null;
}
}
} as CompanionFeedbackDefinition
feedbacks['encoder_has_video'] = {
name: 'Encoder Has Video',
type: 'boolean',
description: 'Feedback when an encoder has video',
defaultStyle: {
bgcolor: 0x00ff00,
color: 0xffffff,
} as CompanionFeedbackButtonStyleResult,
options: [
{
type: 'dropdown',
id: 'encoder',
label: 'Encoder',
choices: encoderOptions,
default: Object.keys(encoders)[0],
} as CompanionInputFieldDropdown,
],
callback: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
const encoderStatus = await instance.resiApi.getEncoderStatusById(feedback.options.encoder);
return encoderStatus.videoInputSource !== null;
},
subscribe: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
if (intervalId !== null) {
// already subscribed
return;
}
intervalId = setInterval(async () => {
const encoderStatus = await instance.resiApi.getEncoderStatusById(feedback.options.encoder);
instance.checkFeedbacks('encoder_has_video')
}, 5000);
}, unsubscribe: async (feedback: CompanionFeedbackBooleanEvent, context: CompanionFeedbackContext) => {
if (intervalId !== null) {
clearInterval(intervalId);
intervalId = null;
}
}
} as CompanionFeedbackDefinition
return feedbacks
}