2020-12-28 10:11:26 +01:00
|
|
|
// TS types for elements on the Config pages
|
|
|
|
|
|
|
|
export interface TextFieldProps {
|
2021-01-03 13:10:08 +01:00
|
|
|
handleResetValue?: (fieldName: string) => void;
|
2020-12-28 10:11:26 +01:00
|
|
|
fieldName: string;
|
2021-01-03 09:29:37 +01:00
|
|
|
initialValues?: any;
|
|
|
|
type?: string;
|
|
|
|
configPath?: string;
|
|
|
|
required?: boolean;
|
|
|
|
disabled?: boolean;
|
|
|
|
onSubmit?: () => void;
|
2021-01-04 08:32:47 +01:00
|
|
|
onBlur?: () => void;
|
|
|
|
onChange?: () => void;
|
2021-01-03 09:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ToggleSwitchProps {
|
|
|
|
fieldName: string;
|
|
|
|
initialValues?: any;
|
|
|
|
configPath?: string;
|
|
|
|
disabled?: boolean;
|
2020-12-28 10:11:26 +01:00
|
|
|
}
|
|
|
|
|
2021-01-17 04:46:19 +01:00
|
|
|
export type FieldUpdaterFunc = (args: UpdateArgs) => void;
|
|
|
|
|
2020-12-28 10:11:26 +01:00
|
|
|
export interface UpdateArgs {
|
|
|
|
fieldName: string;
|
2021-01-17 04:46:19 +01:00
|
|
|
value: any;
|
2020-12-28 10:11:26 +01:00
|
|
|
path?: string;
|
|
|
|
}
|
2021-01-03 09:29:37 +01:00
|
|
|
|
|
|
|
export interface ApiPostArgs {
|
|
|
|
apiPath: string,
|
|
|
|
data: object,
|
2021-01-03 13:10:08 +01:00
|
|
|
onSuccess?: (arg: any) => void,
|
|
|
|
onError?: (arg: any) => void,
|
2021-01-03 09:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ConfigDirectoryFields {
|
|
|
|
enabled: boolean;
|
|
|
|
instanceUrl: string,
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ConfigInstanceDetailsFields {
|
|
|
|
extraPageContent: string;
|
|
|
|
logo: string;
|
|
|
|
name: string;
|
|
|
|
nsfw: boolean;
|
2021-01-19 19:34:06 +01:00
|
|
|
socialHandles: SocialHandleItem[],
|
2021-01-03 09:29:37 +01:00
|
|
|
streamTitle: string;
|
|
|
|
summary: string;
|
|
|
|
tags: string[];
|
|
|
|
title: string;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:37:22 +01:00
|
|
|
|
2021-01-17 04:46:19 +01:00
|
|
|
export type PRESET = 'fast' | 'faster' | 'veryfast' | 'superfast' | 'ultrafast';
|
2021-01-10 11:37:22 +01:00
|
|
|
|
2021-01-19 19:34:06 +01:00
|
|
|
export interface SocialHandleItem {
|
|
|
|
icon: string;
|
|
|
|
platform: string;
|
|
|
|
key: string;
|
|
|
|
}
|
|
|
|
|
2021-01-03 11:13:28 +01:00
|
|
|
export interface VideoVariant {
|
2021-01-10 11:37:22 +01:00
|
|
|
key?: number; // unique identifier generated on client side just for ant table rendering
|
2021-01-17 04:46:19 +01:00
|
|
|
encoderPreset: PRESET,
|
2021-01-03 11:13:28 +01:00
|
|
|
framerate: number;
|
2021-01-10 11:37:22 +01:00
|
|
|
|
|
|
|
audioPassthrough: boolean;
|
|
|
|
audioBitrate: number;
|
2021-01-03 11:13:28 +01:00
|
|
|
videoPassthrough: boolean;
|
2021-01-10 11:37:22 +01:00
|
|
|
videoBitrate: number;
|
2021-01-03 11:13:28 +01:00
|
|
|
}
|
|
|
|
export interface VideoSettingsFields {
|
2021-01-18 21:11:48 +01:00
|
|
|
latencyLevel: number;
|
2021-01-03 11:13:28 +01:00
|
|
|
videoQualityVariants: VideoVariant[],
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-03 09:29:37 +01:00
|
|
|
export interface ConfigDetails {
|
|
|
|
ffmpegPath: string;
|
|
|
|
instanceDetails: ConfigInstanceDetailsFields;
|
|
|
|
rtmpServerPort: string;
|
|
|
|
s3: any; // tbd
|
|
|
|
streamKey: string;
|
|
|
|
webServerPort: string;
|
|
|
|
yp: ConfigDirectoryFields;
|
2021-01-03 13:03:18 +01:00
|
|
|
videoSettings: VideoSettingsFields;
|
2021-01-03 11:13:28 +01:00
|
|
|
}
|