0
owncast/web/types/config-section.ts

92 lines
1.8 KiB
TypeScript
Raw Normal View History

// TS types for elements on the Config pages
2021-01-23 20:16:01 -08:00
// for dropdown
export interface SocialHandleDropdownItem {
icon: string;
platform: string;
key: string;
}
export type FieldUpdaterFunc = (args: UpdateArgs) => void;
export interface UpdateArgs {
value: any;
2021-01-30 01:39:58 -08:00
fieldName?: string;
path?: string;
}
export interface ApiPostArgs {
2021-01-31 01:55:19 -08:00
apiPath: string;
data: object;
onSuccess?: (arg: any) => void;
onError?: (arg: any) => void;
}
export interface ConfigDirectoryFields {
enabled: boolean;
2021-01-31 01:55:19 -08:00
instanceUrl: string;
}
export interface ConfigInstanceDetailsFields {
extraPageContent: string;
logo: string;
name: string;
nsfw: boolean;
2021-01-31 01:55:19 -08:00
socialHandles: SocialHandle[];
streamTitle: string;
summary: string;
tags: string[];
title: string;
}
2021-01-30 22:53:00 -08:00
export type CpuUsageLevel = 1 | 2 | 3 | 4 | 5;
2021-01-10 02:37:22 -08:00
2021-01-23 20:16:01 -08:00
// from data
export interface SocialHandle {
2021-01-19 10:34:06 -08:00
platform: string;
2021-01-23 20:16:01 -08:00
url: string;
2021-01-19 10:34:06 -08:00
}
2021-01-03 02:13:28 -08:00
export interface VideoVariant {
2021-01-10 02:37:22 -08:00
key?: number; // unique identifier generated on client side just for ant table rendering
2021-01-31 01:55:19 -08:00
cpuUsageLevel: CpuUsageLevel;
2021-01-03 02:13:28 -08:00
framerate: number;
2021-01-10 02:37:22 -08:00
audioPassthrough: boolean;
audioBitrate: number;
2021-01-03 02:13:28 -08:00
videoPassthrough: boolean;
2021-01-10 02:37:22 -08:00
videoBitrate: number;
scaledWidth: number;
scaledHeight: number;
name: string;
2021-01-03 02:13:28 -08:00
}
export interface VideoSettingsFields {
latencyLevel: number;
2021-01-31 01:55:19 -08:00
videoQualityVariants: VideoVariant[];
cpuUsageLevel: CpuUsageLevel;
2021-01-03 02:13:28 -08:00
}
export interface S3Field {
acl?: string;
accessKey: string;
bucket: string;
enabled: boolean;
endpoint: string;
region: string;
secret: string;
servingEndpoint?: string;
}
export interface ConfigDetails {
ffmpegPath: string;
instanceDetails: ConfigInstanceDetailsFields;
rtmpServerPort: string;
s3: S3Field;
streamKey: string;
webServerPort: string;
yp: ConfigDirectoryFields;
2021-01-03 04:03:18 -08:00
videoSettings: VideoSettingsFields;
2021-01-03 02:13:28 -08:00
}