| 1 |
import React from 'react' |
| 2 |
import { __ } from '@wordpress/i18n' |
| 3 |
import { useSnippetForm } from '../../../hooks/useSnippetForm' |
| 4 |
import { Tooltip } from '../../common/Tooltip' |
| 5 |
|
| 6 |
export const MultisiteSharingSettings: React.FC = () => { |
| 7 |
const { snippet, setSnippet, isReadOnly } = useSnippetForm() |
| 8 |
|
| 9 |
return ( |
| 10 |
<div className="inline-form-field activation-switch-container"> |
| 11 |
<h4> |
| 12 |
{__('Share with Subsites', 'code-snippets')} |
| 13 |
</h4> |
| 14 |
|
| 15 |
<Tooltip inline start> |
| 16 |
{__('Instead of running on every site, allow this snippet to be activated on individual sites on the network.', 'code-snippets')} |
| 17 |
</Tooltip> |
| 18 |
|
| 19 |
<label> |
| 20 |
{snippet.shared_network |
| 21 |
? __('Enabled', 'code-snippets') |
| 22 |
: __('Disabled', 'code-snippets')} |
| 23 |
|
| 24 |
<input |
| 25 |
id="snippet_sharing" |
| 26 |
name="snippet_sharing" |
| 27 |
type="checkbox" |
| 28 |
className="switch" |
| 29 |
checked={!!snippet.shared_network} |
| 30 |
disabled={isReadOnly} |
| 31 |
onChange={event => |
| 32 |
setSnippet(previous => ({ |
| 33 |
...previous, |
| 34 |
active: false, |
| 35 |
shared_network: event.target.checked |
| 36 |
}))} |
| 37 |
/> |
| 38 |
</label> |
| 39 |
</div> |
| 40 |
) |
| 41 |
} |
| 42 |
|