2021-01-03 09:29:37 +01:00
|
|
|
// Note: references to "yp" in the app are likely related to Owncast Directory
|
2021-01-28 12:08:57 +01:00
|
|
|
import React, { useState, useContext, useEffect } from 'react';
|
|
|
|
import { Typography } from 'antd';
|
2021-01-03 09:26:26 +01:00
|
|
|
|
2021-01-31 09:58:27 +01:00
|
|
|
import ToggleSwitch from './form-toggleswitch-with-submit';
|
2021-01-03 09:26:26 +01:00
|
|
|
|
|
|
|
import { ServerStatusContext } from '../../../utils/server-status-context';
|
2021-01-28 12:08:57 +01:00
|
|
|
import { FIELD_PROPS_NSFW, FIELD_PROPS_YP } from './constants';
|
2021-01-03 09:26:26 +01:00
|
|
|
|
|
|
|
const { Title } = Typography;
|
|
|
|
|
|
|
|
export default function EditYPDetails() {
|
2021-01-28 12:08:57 +01:00
|
|
|
const [formDataValues, setFormDataValues] = useState(null);
|
2021-01-03 09:26:26 +01:00
|
|
|
|
|
|
|
const serverStatusData = useContext(ServerStatusContext);
|
|
|
|
const { serverConfig } = serverStatusData || {};
|
|
|
|
|
|
|
|
const { yp, instanceDetails } = serverConfig;
|
|
|
|
const { nsfw } = instanceDetails;
|
|
|
|
const { enabled, instanceUrl } = yp;
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-01-28 12:08:57 +01:00
|
|
|
setFormDataValues({
|
|
|
|
...yp,
|
|
|
|
enabled,
|
|
|
|
nsfw,
|
|
|
|
});
|
|
|
|
}, [yp, instanceDetails]);
|
2021-01-03 09:26:26 +01:00
|
|
|
|
2021-01-28 12:08:57 +01:00
|
|
|
const hasInstanceUrl = instanceUrl !== '';
|
|
|
|
if (!formDataValues) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-01-03 09:26:26 +01:00
|
|
|
return (
|
|
|
|
<div className="config-directory-details-form">
|
|
|
|
<Title level={3}>Owncast Directory Settings</Title>
|
|
|
|
|
2021-01-31 10:38:20 +01:00
|
|
|
<p>
|
|
|
|
Would you like to appear in the{' '}
|
|
|
|
<a href="https://directory.owncast.online" target="_blank" rel="noreferrer">
|
|
|
|
<strong>Owncast Directory</strong>
|
|
|
|
</a>
|
|
|
|
?
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p style={{ backgroundColor: 'black', fontSize: '.75rem', padding: '5px' }}>
|
|
|
|
<em>
|
|
|
|
NOTE: You will need to have a URL specified in the <code>Instance URL</code> field to be
|
|
|
|
able to use this.
|
|
|
|
</em>
|
|
|
|
</p>
|
2021-01-03 09:26:26 +01:00
|
|
|
|
|
|
|
<div className="config-yp-container">
|
2021-01-28 12:08:57 +01:00
|
|
|
<ToggleSwitch
|
|
|
|
fieldName="enabled"
|
|
|
|
{...FIELD_PROPS_YP}
|
|
|
|
checked={formDataValues.enabled}
|
|
|
|
disabled={!hasInstanceUrl}
|
|
|
|
/>
|
|
|
|
<ToggleSwitch
|
|
|
|
fieldName="nsfw"
|
|
|
|
{...FIELD_PROPS_NSFW}
|
|
|
|
checked={formDataValues.nsfw}
|
|
|
|
disabled={!hasInstanceUrl}
|
|
|
|
/>
|
2021-01-31 10:38:20 +01:00
|
|
|
</div>
|
2021-01-03 09:26:26 +01:00
|
|
|
</div>
|
2021-01-31 10:38:20 +01:00
|
|
|
);
|
2021-01-03 09:26:26 +01:00
|
|
|
}
|