REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 3.77 KB
Close
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Agent/hooks/useDraggable.js
Text
Base64
import { clamp } from '@agent/lib/util'; import { useLayoutEffect, useRef } from '@wordpress/element'; export const useDraggable = ({ el, open, initialPosition, onDragEnd }) => { const offset = useRef({ x: 0, y: 0 }); const pointerIdRef = useRef(null); const lastPosition = useRef({ x: initialPosition.x, y: initialPosition.y, }); useLayoutEffect(() => { if (!el) return; const id = requestAnimationFrame(() => { el.style.setProperty('left', `${initialPosition.x}px`, 'important'); el.style.setProperty('top', `${initialPosition.y}px`, 'important'); }); return () => cancelAnimationFrame(id); }, [el, initialPosition]); useLayoutEffect(() => { if (!el || !open) return; // keep in bounds const minX = 0; const minY = 0; const maxX = window.innerWidth - el.offsetWidth; const maxY = window.innerHeight - el.offsetHeight; const left = parseFloat(el.style.left) || 0; const top = parseFloat(el.style.top) || 0; const x = clamp(left, minX, maxX); const y = clamp(top, minY, maxY); if (left !== x || top !== y) { el.style.setProperty('left', `${x}px`, 'important'); el.style.setProperty('top', `${y}px`, 'important'); } }, [el, open]); useLayoutEffect(() => { const bg = document.getElementById('wpwrap') || // TODO: is this on all block themes? document.querySelector('.wp-site-blocks'); if (!el || !open || !bg) return; const handle = el.querySelector('[data-extendify-agent-handle]'); if (!(handle instanceof HTMLElement)) return; el.style.setProperty('left', `${initialPosition.x}px`, 'important'); el.style.setProperty('top', `${initialPosition.y}px`, 'important'); const onPointerDown = (e) => { e.preventDefault(); e.stopPropagation(); bg.style.pointerEvents = 'none'; if (pointerIdRef.current !== null) { return; } pointerIdRef.current = e.pointerId; handle.setPointerCapture(e.pointerId); offset.current = { x: e.clientX - el.offsetLeft, y: e.clientY - el.offsetTop, }; document.addEventListener('pointermove', onPointerMove); document.addEventListener('pointerup', onPointerUp); }; const onPointerMove = (e) => { const minX = 0; const minY = 0; const maxX = window.innerWidth - handle.offsetWidth; const maxY = window.innerHeight - handle.offsetHeight; const x = clamp(e.clientX - offset.current.x, minX, maxX); const y = clamp(e.clientY - offset.current.y, minY, maxY); el.style.setProperty('left', `${x}px`, 'important'); el.style.setProperty('top', `${y}px`, 'important'); lastPosition.current = { x, y }; }; const onPointerUp = (e) => { bg.style.pointerEvents = 'auto'; if (pointerIdRef.current !== e.pointerId) { return; } pointerIdRef.current = null; handle.releasePointerCapture(e.pointerId); document.removeEventListener('pointermove', onPointerMove); document.removeEventListener('pointerup', onPointerUp); onDragEnd(lastPosition.current.x, lastPosition.current.y); }; const onBlur = () => onPointerUp(new PointerEvent('pointerup')); const onContextMenu = (e) => { e.preventDefault(); e.stopPropagation(); return false; }; handle.addEventListener('pointerdown', onPointerDown); handle.addEventListener('contextmenu', onContextMenu); handle.addEventListener('blur', onBlur); return () => { handle.removeEventListener('pointerdown', onPointerDown); handle.removeEventListener('blur', onBlur); handle.removeEventListener('contextmenu', onContextMenu); document.removeEventListener('pointermove', onPointerMove); document.removeEventListener('pointerup', onPointerUp); bg.style.pointerEvents = 'auto'; if (pointerIdRef.current !== null) { handle.releasePointerCapture(pointerIdRef.current); pointerIdRef.current = null; } }; }, [el, open, initialPosition.x, initialPosition.y, onDragEnd]); };
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 12
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
useDraggable.js
3.77 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useFontVariationOverride.js
3.92 KB
lrw-r--r--
2026-03-19 23:35:18
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useIframeScale.js
1.11 KB
lrw-r--r--
2026-04-16 23:02:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useLockPost.js
607 B
lrw-r--r--
2026-03-24 18:55:54
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
usePortal.js
478 B
lrw-r--r--
2026-03-19 23:35:18
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useResizable.js
3.17 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useSiteVibesOverride.js
2.39 KB
lrw-r--r--
2026-03-19 23:35:18
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useSiteVibesVariations.js
1.82 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useThemeFontsVariations.js
1.17 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useThemeVariations.js
1.14 KB
lrw-r--r--
2025-09-09 19:55:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useVariationOverride.js
3.14 KB
lrw-r--r--
2026-03-19 23:35:18
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useWhenFinishedToolProps.js
2.20 KB
lrw-r--r--
2026-03-05 22:57:38
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).