owncast/web/types/config-section.ts

78 lines
1.5 KiB
TypeScript
Raw Normal View History

// TS types for elements on the Config pages
2021-01-24 05:16:01 +01:00
// for dropdown
export interface SocialHandleDropdownItem {
icon: string;
platform: string;
key: string;
}
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;
2021-01-24 05:16:01 +01:00
socialHandles: SocialHandle[],
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-24 05:16:01 +01:00
// from data
export interface SocialHandle {
2021-01-19 19:34:06 +01:00
platform: string;
2021-01-24 05:16:01 +01:00
url: string;
2021-01-19 19:34:06 +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 {
latencyLevel: number;
2021-01-03 11:13:28 +01:00
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
}