PHP 8.2.31
Preview: ScrollIntoViewOnce.jsx Size: 876 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Agent/components/ScrollIntoViewOnce.jsx

import { useEffect, useRef } from 'react';

export const ScrollIntoViewOnce = ({ children, ...props }) => {
	const ref = useRef(null);
	const once = useRef(false);

	useEffect(() => {
		if (!ref.current || once.current) return;
		const c = ref.current;
		// only scroll if 50% isnt visible
		const rect = c.getBoundingClientRect();
		const windowHeight =
			window.innerHeight || document.documentElement.clientHeight;
		const elementHeight = rect.height;
		const visibleTop = Math.max(rect.top, 0);
		const visibleBottom = Math.min(rect.bottom, windowHeight);
		const visibleHeight = Math.max(0, visibleBottom - visibleTop);
		const visibleRatio = visibleHeight / elementHeight;

		if (visibleRatio >= 0.5) return;
		c.scrollIntoView({ behavior: 'smooth', block: 'end' });
		once.current = true;
	}, []);

	return (
		<div ref={ref} {...props}>
			{children}
		</div>
	);
};

Directory Contents

Dirs: 5 × Files: 13

Name Size Perms Modified Actions
buttons DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
layouts DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
messages DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
redirects DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
__tests__ DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
6.98 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
6.07 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
2.94 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.28 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
8.77 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
872 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
14.88 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
6.03 KB lrw-r--r-- 2026-04-09 23:45:00
Edit Download
5.36 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.04 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
1.85 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1.10 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
876 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download

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