import React, { useContext, useEffect } from 'react'; import { Typography, Form, Slider } from 'antd'; import { ServerStatusContext } from '../utils/server-status-context'; import VideoVariantsTable from './components/config/video-variants-table'; import TextField, { TEXTFIELD_TYPE_NUMBER } from './components/config/form-textfield'; import { TEXTFIELD_DEFAULTS } from './components/config/constants'; import VideoSegmentsEditor from './components/config/video-segments-editor'; const { Title } = Typography; export default function VideoConfig() { // const [form] = Form.useForm(); const serverStatusData = useContext(ServerStatusContext); const { serverConfig } = serverStatusData || {}; const { videoSettings } = serverConfig || {}; // const { numberOfPlaylistItems, segmentLengthSeconds } = videoSettings || {}; // const videoSettings = serverStatusData?.serverConfig?.videoSettings; // const { numberOfPlaylistItems, segmentLengthSeconds } = videoSettings || {}; // const initialValues = { // numberOfPlaylistItems, // segmentLengthSeconds, // }; // useEffect(() => { // form.setFieldsValue(initialValues); // }, [serverStatusData]); // const handleResetValue = (fieldName: string) => { // const defaultValue = TEXTFIELD_DEFAULTS.videoSettings[fieldName] && TEXTFIELD_DEFAULTS.videoSettings[fieldName].defaultValue || ''; // form.setFieldsValue({ [fieldName]: initialValues[fieldName] || defaultValue }); // } // const extraProps = { // handleResetValue, // initialValues: videoSettings, // configPath: 'videoSettings', // }; return (
Video configuration

Learn more about configuring Owncast by visiting the documentation.

{/*
{JSON.stringify(videoSettings)}
*/}

{/*
*/}
); }