resize triggers anchor position update

This commit is contained in:
mrjvs 2023-10-25 23:38:09 +02:00
parent 248384124a
commit 4f7728bb51
2 changed files with 46 additions and 17 deletions

View File

@ -3,7 +3,10 @@ import { ReactNode, useCallback, useEffect, useRef, useState } from "react";
import { createPortal } from "react-dom"; import { createPortal } from "react-dom";
import { Transition } from "@/components/Transition"; import { Transition } from "@/components/Transition";
import { useInternalOverlayRouter } from "@/hooks/useOverlayRouter"; import {
useInternalOverlayRouter,
useRouterAnchorUpdate,
} from "@/hooks/useOverlayRouter";
export interface OverlayProps { export interface OverlayProps {
id: string; id: string;
@ -32,6 +35,9 @@ export function Overlay(props: OverlayProps) {
const ref = useRef<HTMLDivElement>(null); const ref = useRef<HTMLDivElement>(null);
const target = useRef<Element | null>(null); const target = useRef<Element | null>(null);
// listen for anchor updates
useRouterAnchorUpdate(props.id);
useEffect(() => { useEffect(() => {
function listen(e: MouseEvent) { function listen(e: MouseEvent) {
target.current = e.target as Element; target.current = e.target as Element;

View File

@ -1,4 +1,4 @@
import { useCallback } from "react"; import { useCallback, useEffect, useMemo } from "react";
import { useQueryParam } from "@/hooks/useQueryParams"; import { useQueryParam } from "@/hooks/useQueryParams";
import { useOverlayStore } from "@/stores/overlay/store"; import { useOverlayStore } from "@/stores/overlay/store";
@ -12,11 +12,47 @@ function joinPath(path: string[]): string {
return `/${path.join("/")}`; return `/${path.join("/")}`;
} }
export function useRouterAnchorUpdate(id: string) {
const setAnchorPoint = useOverlayStore((s) => s.setAnchorPoint);
const [route] = useQueryParam("r");
const routerActive = useMemo(
() => !!route && route.startsWith(`/${id}`),
[route, id]
);
const update = useCallback(() => {
if (!routerActive) return;
const anchor = document.getElementById(`__overlayRouter::${id}`);
if (anchor) {
const rect = anchor.getBoundingClientRect();
setAnchorPoint({
h: rect.height,
w: rect.width,
x: rect.x,
y: rect.y,
});
}
}, [routerActive, setAnchorPoint, id]);
useEffect(() => {
update();
}, [routerActive, update]);
useEffect(() => {
function resizeEvent() {
update();
}
window.addEventListener("resize", resizeEvent);
return () => {
window.removeEventListener("resize", resizeEvent);
};
}, [update]);
}
export function useInternalOverlayRouter(id: string) { export function useInternalOverlayRouter(id: string) {
const [route, setRoute] = useQueryParam("r"); const [route, setRoute] = useQueryParam("r");
const transition = useOverlayStore((s) => s.transition); const transition = useOverlayStore((s) => s.transition);
const setTransition = useOverlayStore((s) => s.setTransition); const setTransition = useOverlayStore((s) => s.setTransition);
const setAnchorPoint = useOverlayStore((s) => s.setAnchorPoint);
const routerActive = !!route && route.startsWith(`/${id}`); const routerActive = !!route && route.startsWith(`/${id}`);
function makePath(path: string) { function makePath(path: string) {
@ -62,23 +98,10 @@ export function useInternalOverlayRouter(id: string) {
const open = useCallback( const open = useCallback(
(defaultRoute = "/") => { (defaultRoute = "/") => {
const anchor = document.getElementById(`__overlayRouter::${id}`);
if (anchor) {
const rect = anchor.getBoundingClientRect();
setAnchorPoint({
h: rect.height,
w: rect.width,
x: rect.x,
y: rect.y,
});
} else {
setAnchorPoint(null);
}
setTransition(null); setTransition(null);
setRoute(joinPath(splitPath(defaultRoute, id))); setRoute(joinPath(splitPath(defaultRoute, id)));
}, },
[id, setRoute, setTransition, setAnchorPoint] [id, setRoute, setTransition]
); );
const activeRoute = routerActive const activeRoute = routerActive