owncast/web/types/config-section.ts

84 lines
1.8 KiB
TypeScript
Raw Normal View History

// TS types for elements on the Config pages
export interface TextFieldProps {
2021-01-03 13:10:08 +01:00
handleResetValue?: (fieldName: string) => void;
fieldName: string;
initialValues?: any;
type?: string;
configPath?: string;
required?: boolean;
disabled?: boolean;
onSubmit?: () => void;
onBlur?: () => void;
onChange?: () => void;
}
export interface ToggleSwitchProps {
fieldName: string;
initialValues?: any;
configPath?: string;
disabled?: boolean;
}
export type FieldUpdaterFunc = (args: UpdateArgs) => void;
export interface UpdateArgs {
fieldName: string;
value: any;
path?: string;
}
export interface ApiPostArgs {
apiPath: string,
data: object,
2021-01-03 13:10:08 +01:00
onSuccess?: (arg: any) => void,
onError?: (arg: any) => void,
}
export interface ConfigDirectoryFields {
enabled: boolean;
instanceUrl: string,
}
export interface ConfigInstanceDetailsFields {
extraPageContent: string;
logo: string;
name: string;
nsfw: boolean;
streamTitle: string;
summary: string;
tags: string[];
title: string;
}
2021-01-10 11:37:22 +01:00
export type PRESET = 'fast' | 'faster' | 'veryfast' | 'superfast' | 'ultrafast';
2021-01-10 11:37:22 +01:00
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
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 {
numberOfPlaylistItems: number;
segmentLengthSeconds: number;
videoQualityVariants: VideoVariant[],
}
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
}