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>
117 lines
3.0 KiB
TypeScript
117 lines
3.0 KiB
TypeScript
// This is a wrapper for the Ant Switch component.
|
|
// onChange of the switch, it will automatically post a change to the config api.
|
|
|
|
import React, { useState, useContext } from 'react';
|
|
import { Switch } from 'antd';
|
|
import {
|
|
createInputStatus,
|
|
StatusState,
|
|
STATUS_ERROR,
|
|
STATUS_PROCESSING,
|
|
STATUS_SUCCESS,
|
|
} from '../../utils/input-statuses';
|
|
import FormStatusIndicator from './form-status-indicator';
|
|
|
|
import { RESET_TIMEOUT, postConfigUpdateToAPI } from '../../utils/config-constants';
|
|
|
|
import { ServerStatusContext } from '../../utils/server-status-context';
|
|
|
|
interface ToggleSwitchProps {
|
|
apiPath: string;
|
|
fieldName: string;
|
|
|
|
checked?: boolean;
|
|
configPath?: string;
|
|
disabled?: boolean;
|
|
label?: string;
|
|
tip?: string;
|
|
useSubmit?: boolean;
|
|
onChange?: (arg: boolean) => void;
|
|
}
|
|
export default function ToggleSwitch(props: ToggleSwitchProps) {
|
|
const [submitStatus, setSubmitStatus] = useState<StatusState>(null);
|
|
|
|
let resetTimer = null;
|
|
|
|
const serverStatusData = useContext(ServerStatusContext);
|
|
const { setFieldInConfigState } = serverStatusData || {};
|
|
|
|
const {
|
|
apiPath,
|
|
checked,
|
|
configPath = '',
|
|
disabled = false,
|
|
fieldName,
|
|
label,
|
|
tip,
|
|
useSubmit,
|
|
onChange,
|
|
} = props;
|
|
|
|
const resetStates = () => {
|
|
setSubmitStatus(null);
|
|
clearTimeout(resetTimer);
|
|
resetTimer = null;
|
|
};
|
|
|
|
const handleChange = async (isChecked: boolean) => {
|
|
if (useSubmit) {
|
|
setSubmitStatus(createInputStatus(STATUS_PROCESSING));
|
|
|
|
await postConfigUpdateToAPI({
|
|
apiPath,
|
|
data: { value: isChecked },
|
|
onSuccess: () => {
|
|
setFieldInConfigState({ fieldName, value: isChecked, path: configPath });
|
|
setSubmitStatus(createInputStatus(STATUS_SUCCESS));
|
|
},
|
|
onError: (message: string) => {
|
|
setSubmitStatus(createInputStatus(STATUS_ERROR, `There was an error: ${message}`));
|
|
},
|
|
});
|
|
resetTimer = setTimeout(resetStates, RESET_TIMEOUT);
|
|
}
|
|
if (onChange) {
|
|
onChange(isChecked);
|
|
}
|
|
};
|
|
|
|
const loading = submitStatus !== null && submitStatus.type === STATUS_PROCESSING;
|
|
return (
|
|
<div className="formfield-container toggleswitch-container">
|
|
{label && (
|
|
<div className="label-side">
|
|
<span className="formfield-label">{label}</span>
|
|
</div>
|
|
)}
|
|
|
|
<div className="input-side">
|
|
<div className="input-group">
|
|
<Switch
|
|
className={`switch field-${fieldName}`}
|
|
loading={loading}
|
|
onChange={handleChange}
|
|
defaultChecked={checked}
|
|
checked={checked}
|
|
checkedChildren="ON"
|
|
unCheckedChildren="OFF"
|
|
disabled={disabled}
|
|
/>
|
|
<FormStatusIndicator status={submitStatus} />
|
|
</div>
|
|
<p className="field-tip">{tip}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ToggleSwitch.defaultProps = {
|
|
checked: false,
|
|
configPath: '',
|
|
disabled: false,
|
|
label: '',
|
|
tip: '',
|
|
useSubmit: false,
|
|
onChange: null,
|
|
};
|