PHP 8.2.31
Preview: useSiteVibesOverride.js Size: 2.39 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Agent/hooks/useSiteVibesOverride.js

import { isInEditor } from '@agent/lib/util';
import { useCallback, useEffect, useRef, useState } from '@wordpress/element';

const styleId = 'block-style-variation-styles-inline-css';
const editorIframeSelector = 'iframe[name="editor-canvas"]';
const editorStylesWrapper = '.editor-styles-wrapper';

const getEditorDocument = () => {
	const iframe = document.querySelector(editorIframeSelector);
	return iframe?.contentDocument || document;
};

// update the CSS so that it won't affect the switcher preview area
const transformVibeCSS = (css, slug) => css.replaceAll(slug, 'natural-1');

export const useSiteVibesOverride = ({ css, slug }) => {
	const blockStyles = useRef(null);
	const [theDocument, setDocument] = useState(null);
	const onEditor = isInEditor();

	useEffect(() => {
		if (!css || onEditor || !slug) return;
		const style = document.getElementById(styleId);
		if (!style) return;
		if (!blockStyles.current) {
			blockStyles.current = style.innerHTML;
		}
		style.innerHTML = transformVibeCSS(css, slug);
	}, [css, slug, onEditor]);

	useEffect(() => {
		if (!css || !theDocument || !onEditor) return;
		const style = theDocument.getElementById(styleId);
		const hasIframe = document.querySelector(editorIframeSelector);

		let modifiedCss = css
			.replaceAll(':root', hasIframe ? ':root' : editorStylesWrapper)
			.replaceAll(slug, 'natural-1')
			.replace(
				/:where\(([^)]+)\)/g,
				':where($1):not(.ext-vibe-container, .ext-vibe-container *)',
			);

		if (!hasIframe) {
			modifiedCss = modifiedCss
				.replace('body{', `${editorStylesWrapper}{`)
				.replace(
					/(h[1-6](?:\s*,\s*h[1-6])*)\s*\{/g,
					`${editorStylesWrapper} $1{`,
				);
		}

		style.innerHTML = modifiedCss;
	}, [css, slug, theDocument, onEditor]);

	useEffect(() => {
		if (theDocument) return;
		const timer = setTimeout(() => {
			if (theDocument) return;
			const doc = getEditorDocument();
			if (!doc || !doc.body) return;
			const newStyle = doc.createElement('style');
			newStyle.id = styleId;
			doc.body.appendChild(newStyle);
			setDocument(doc);
		}, 300);
		return () => clearTimeout(timer);
	}, [theDocument]);

	const undoChange = useCallback(() => {
		const style = document.getElementById(styleId);
		if (style && blockStyles.current) {
			style.innerHTML = blockStyles.current;
		}

		if (!onEditor) return;
		const doc = getEditorDocument();
		doc?.getElementById(styleId)?.remove();
	}, [onEditor]);

	return { undoChange };
};

Directory Contents

Dirs: 0 × Files: 12

Name Size Perms Modified Actions
3.77 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
3.92 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.11 KB lrw-r--r-- 2026-04-16 23:02:08
Edit Download
607 B lrw-r--r-- 2026-03-24 18:55:54
Edit Download
478 B lrw-r--r-- 2026-03-19 23:35:18
Edit Download
3.17 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
2.39 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.82 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1.17 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1.14 KB lrw-r--r-- 2025-09-09 19:55:14
Edit Download
3.14 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
2.20 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).