owncast/web/types/config-section.ts

90 lines
1.8 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 {
value: any;
2021-01-30 10:39:58 +01:00
fieldName?: string;
path?: string;
}
export interface ApiPostArgs {
2021-01-31 10:55:19 +01:00
apiPath: string;
data: object;
onSuccess?: (arg: any) => void;
onError?: (arg: any) => void;
}
export interface ConfigDirectoryFields {
enabled: boolean;
2021-01-31 10:55:19 +01:00
instanceUrl: string;
}
export interface ConfigInstanceDetailsFields {
extraPageContent: string;
logo: string;
name: string;
nsfw: boolean;
2021-01-31 10:55:19 +01:00
socialHandles: SocialHandle[];
streamTitle: string;
summary: string;
tags: string[];
title: string;
}
2021-01-31 07:53:00 +01:00
export type CpuUsageLevel = 1 | 2 | 3 | 4 | 5;
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
2021-01-31 10:55:19 +01:00
cpuUsageLevel: CpuUsageLevel;
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;
scaledWidth: number;
scaledHeight: number;
2021-01-03 11:13:28 +01:00
}
export interface VideoSettingsFields {
latencyLevel: number;
2021-01-31 10:55:19 +01:00
videoQualityVariants: VideoVariant[];
cpuUsageLevel: CpuUsageLevel;
2021-01-03 11:13:28 +01: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 13:03:18 +01:00
videoSettings: VideoSettingsFields;
2021-01-03 11:13:28 +01:00
}