File: /var/www/vhosts/allende-losmares.com/httpdocs/wp-content/plugins/code-snippets/js/edit/shortcode.ts
const updateShortcode = (options: HTMLCollectionOf<HTMLInputElement>) => {
	const isNetworkAdmin = -1 !== document.body.className.indexOf('network-admin')
	const snippetIdInput = document.querySelector<HTMLInputElement>('input[name=snippet_id]')
	const snippetId = snippetIdInput ? parseInt(snippetIdInput.value, 10) : 0
	let shortcode = '[code_snippet'
	if (snippetId) {
		shortcode += ` id=${snippetId}`
	}
	if (isNetworkAdmin) {
		shortcode += ' network=true'
	}
	for (const option of options) {
		if (option.checked) {
			shortcode += ` ${option.value}=true`
		}
	}
	shortcode += ']'
	const scopes = document.querySelector('.html-scopes-list')
	if (scopes) {
		const shortcodeScope = scopes.querySelector('.shortcode-tag')
		if (shortcodeScope) {
			shortcodeScope.textContent = shortcode
		}
	}
}
export const handleContentShortcodeOptions = () => {
	const options = document.querySelector('.html-shortcode-options')?.getElementsByTagName('input')
	if (options) {
		for (const option of options) {
			option.addEventListener('change', () => updateShortcode(options))
		}
	}
}