__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { createElement, createRoot } from '@wordpress/element'
import OptionsRoot from './OptionsRoot.js'
import { getValueFromInput } from './helpers/get-value-from-input'
import $ from 'jquery'
export const initAllPanels = () =>
[...document.querySelectorAll('.ct-options-panel')].map((singleTarget) => {
if (singleTarget.closest('[id="available-widgets"]')) {
return
}
if (singleTarget.ctHasOptions) return
singleTarget.ctHasOptions = true
$(singleTarget).on('remove', () => setTimeout(() => initAllPanels()))
$(singleTarget).on('remove', () => () => initAllPanels())
const root = createRoot(singleTarget)
root.render(
<OptionsRoot
options={JSON.parse(
singleTarget.firstElementChild.dataset.ctOptions
)}
value={getValueFromInput(
JSON.parse(
singleTarget.firstElementChild.dataset.ctOptions
),
JSON.parse(singleTarget.firstElementChild.value),
null,
false
)}
input_id={singleTarget.firstElementChild.id}
input_name={singleTarget.firstElementChild.name}
hasRevertButton={
Object.keys(singleTarget.dataset).indexOf(
'disableReverseButton'
) === -1
}
/>
)
})
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| components | Folder | 0750 |
|
|
| containers | Folder | 0750 |
|
|
| helpers | Folder | 0750 |
|
|
| options | Folder | 0750 |
|
|
| GenericContainerType.js | File | 1.46 KB | 0640 |
|
| GenericOptionType.js | File | 15.61 KB | 0640 |
|
| OptionsPanel.js | File | 3.31 KB | 0640 |
|
| OptionsRoot.js | File | 1.36 KB | 0640 |
|
| initPanels.js | File | 1.15 KB | 0640 |
|