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
|
// there should be no deps to dom APIs in this file for the tablegen to work
export function hex_id(len = 8): string {
if (len > 8) return hex_id() + hex_id(len - 8)
return Math.floor(Math.random() * 16 ** len).toString(16).padStart(len, "0")
}
// TODO this could be simpler
const string = "", bool = false, number = 0; // example types for ts
const optional = <T>(a: T): T | undefined => a
export const PREF_DECLS = {
username: { type: string, default: "guest-" + hex_id(), description: "Username" },
warn_redirect: { type: bool, hidden: true, default: false, description: "Internal option that is set by a server redirect." },
image_view_popup: { type: bool, default: true, description: "Open image in popup instead of new tab" },
/* MEDIA */
microphone_enabled: { type: bool, default: false, description: "Add one microphone track on startup" },
screencast_enabled: { type: bool, default: false, description: "Add one screencast track on startup" },
camera_enabled: { type: bool, default: false, description: "Add one camera track on startup" },
rnnoise: { type: bool, default: true, description: "Use RNNoise for noise suppression" },
native_noise_suppression: { type: bool, default: false, description: "Suggest the browser to do noise suppression" },
microphone_gain: { type: number, default: 1, description: "Amplify microphone volume" },
video_fps: { type: number, description: "Preferred framerate (in 1/s) for screencast and camera" },
video_resolution: { type: number, description: "Preferred width for screencast and camera" },
camera_facing_mode: { type: optional(string), possible_values: ["environment", "user"], description: "Prefer user-facing or env-facing camera" },
auto_gain_control: { type: bool, description: "Automatically adjust mic gain" },
echo_cancellation: { type: bool, description: "Cancel echo" },
notify_chat: { type: bool, default: true, description: "Send notifications for incoming chat messages" },
notify_join: { type: bool, default: true, description: "Send notifications when users join" },
notify_leave: { type: bool, default: true, description: "Send notifications when users leave" },
}
|