PluginProbe
Code Snippets / 3.10.0
Code Snippets v3.10.0
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / js / components / EditorSidebar / controls / MultisiteSharingSettings.tsx

MultisiteSharingSettings.tsx in Code Snippets 3.10.0, at js/components/EditorSidebar/controls/MultisiteSharingSettings.tsx

42 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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