mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 21:28:29 +03:00
a122ee6c42
* tweaks to offline state in admin viewers page If stream is offline, hide current viewers statistic and viewers table. Also, change wording for describing max viewers. * take out ant dark stylesheet, organize ant color overrides * remove ant dark css; cleanup ant overrides; format public-detail page * combine toggleswitch component style with textfield so layout can be shared * fix toggleswitch status message placement * - update styles for modals, collapses - move reset dir into its own component - assorted style cleanups ans consistencies * hide entire advanced section for resetyp if no yp * temp adjustments to video modal * temp comment out toggle switch use for later' * address PR comments * lint * update type * allow warnings during lint Co-authored-by: nebunez <uoj2y7wak869@opayq.net>
69 lines
1.6 KiB
TypeScript
69 lines
1.6 KiB
TypeScript
import React, { useContext, useState, useEffect } from 'react';
|
|
import { Typography, Slider } from 'antd';
|
|
import { ServerStatusContext } from '../../utils/server-status-context';
|
|
|
|
const { Title } = Typography;
|
|
|
|
const SLIDER_MARKS = {
|
|
1: 'lowest',
|
|
2: '',
|
|
3: '',
|
|
4: '',
|
|
5: 'highest',
|
|
};
|
|
|
|
const TOOLTIPS = {
|
|
1: 'lowest',
|
|
2: 'low',
|
|
3: 'medium',
|
|
4: 'high',
|
|
5: 'highest',
|
|
};
|
|
interface Props {
|
|
defaultValue: number;
|
|
onChange: (arg: number) => void;
|
|
}
|
|
export default function CPUUsageSelector({ defaultValue, onChange }: Props) {
|
|
const [selectedOption, setSelectedOption] = useState(null);
|
|
|
|
const serverStatusData = useContext(ServerStatusContext);
|
|
const { serverConfig } = serverStatusData || {};
|
|
const { videoSettings } = serverConfig || {};
|
|
|
|
if (!videoSettings) {
|
|
return null;
|
|
}
|
|
|
|
useEffect(() => {
|
|
setSelectedOption(defaultValue);
|
|
}, [videoSettings]);
|
|
|
|
const handleChange = value => {
|
|
setSelectedOption(value);
|
|
onChange(value);
|
|
};
|
|
|
|
return (
|
|
<div className="config-video-segements-conatiner">
|
|
<Title level={3} className="section-title">
|
|
CPU Usage
|
|
</Title>
|
|
<p className="description">
|
|
There are trade-offs when considering CPU usage blah blah more wording here.
|
|
</p>
|
|
<br />
|
|
|
|
<div className="segment-slider-container">
|
|
<Slider
|
|
tipFormatter={value => TOOLTIPS[value]}
|
|
onChange={handleChange}
|
|
min={1}
|
|
max={Object.keys(SLIDER_MARKS).length}
|
|
marks={SLIDER_MARKS}
|
|
defaultValue={selectedOption}
|
|
value={selectedOption}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|