PHP 8.2.31
Preview: useContentHighlight.js Size: 705 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Draft/hooks/useContentHighlight.js

import { useDispatch, useSelect } from '@wordpress/data';

export const useContentHighlight = () => {
	const { getBlockInsertionPoint } = useSelect(
		(select) => select('core/block-editor'),
		[],
	);
	const { toggleBlockHighlight, showInsertionPoint, hideInsertionPoint } =
		useDispatch('core/block-editor');

	const toggleHighlight = (clientIds, { isHighlighted }) => {
		toggleBlockHighlight(clientIds[0], isHighlighted);
	};

	const toggleInsertionPoint = ({ isVisible }) => {
		if (!isVisible) {
			hideInsertionPoint();
			return;
		}
		const { rootClientId, index } = getBlockInsertionPoint();
		showInsertionPoint(rootClientId, index);
	};

	return { toggleHighlight, toggleInsertionPoint };
};

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
1.37 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
705 B lrw-r--r-- 2023-10-11 06:07:34
Edit Download
2.87 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
992 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
650 B lrw-r--r-- 2025-05-19 16:47:28
Edit Download

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