feat(base): inline embed extends grid + toolbar beyond page width

When a base is embedded inline in a doc page, measure the parent
container's available area and extend toolbar + grid sections to fill
it via CSS variables (--embed-width / --embed-shift / --embed-pad).
Inner content is re-padded so toolbar buttons and the first column
visually align with the page text, while the box itself reaches the
viewport edges for horizontal scroll headroom on wide databases.
Sticky inset-inline-start keeps the toolbar pinned to the page-content
edge during horizontal scroll. Standalone full-page bases are
unaffected (the embedded prop defaults to false).
This commit is contained in:
Philipinho
2026-04-27 03:39:03 +01:00
parent 8aabf86abb
commit e0e87329f4
2 changed files with 136 additions and 40 deletions
@@ -1,10 +1,69 @@
import { NodeViewWrapper, NodeViewProps } from '@tiptap/react';
import { Box, Text } from '@mantine/core';
import { BaseTable } from '@/features/base/components/base-table';
import { useBaseQuery } from '@/features/base/queries/base-query';
import { NodeViewWrapper, NodeViewProps } from "@tiptap/react";
import { Box, Text } from "@mantine/core";
import { useEffect, useRef } from "react";
import { BaseTable } from "@/features/base/components/base-table";
import { useBaseQuery } from "@/features/base/queries/base-query";
const SIDE_GUTTER = 8;
// Walk up from `el` to find the closest ancestor that's meaningfully
// wider than `el` itself. That ancestor is the available drawing area
// our embed should expand into (e.g. AppShell.Main when the page sits
// inside a 900px Mantine Container). Returns null if no such ancestor
// exists — the embed then renders without extension.
function findWiderAncestor(el: HTMLElement): HTMLElement | null {
const baseWidth = el.getBoundingClientRect().width;
let cur: HTMLElement | null = el.parentElement;
while (cur && cur !== document.body) {
const w = cur.getBoundingClientRect().width;
if (w > baseWidth + 32) return cur;
cur = cur.parentElement;
}
return null;
}
function applyExtension(wrapper: HTMLDivElement) {
const wrapperRect = wrapper.getBoundingClientRect();
const wider = findWiderAncestor(wrapper);
if (!wider) {
wrapper.style.setProperty("--embed-shift", "0px");
wrapper.style.setProperty("--embed-width", "100%");
wrapper.style.setProperty("--embed-pad", "0px");
return;
}
const widerRect = wider.getBoundingClientRect();
const targetLeft = widerRect.left + SIDE_GUTTER;
const targetWidth = widerRect.width - SIDE_GUTTER * 2;
const shift = targetLeft - wrapperRect.left;
wrapper.style.setProperty("--embed-shift", `${shift}px`);
wrapper.style.setProperty("--embed-width", `${targetWidth}px`);
// Re-pad inner content back to the original wrapper bounds so
// toolbar buttons / first column visually align with page text.
wrapper.style.setProperty("--embed-pad", `${-shift}px`);
}
export function BaseEmbedView({ node }: NodeViewProps) {
const pageId = node.attrs.pageId as string | null;
const wrapperRef = useRef<HTMLDivElement | null>(null);
useEffect(() => {
const wrapper = wrapperRef.current;
if (!wrapper) return;
const update = () => applyExtension(wrapper);
update();
const ro = new ResizeObserver(update);
ro.observe(wrapper);
const wider = findWiderAncestor(wrapper);
if (wider) ro.observe(wider);
window.addEventListener("resize", update);
return () => {
ro.disconnect();
window.removeEventListener("resize", update);
};
}, []);
if (!pageId) {
return (
@@ -40,9 +99,9 @@ export function BaseEmbedView({ node }: NodeViewProps) {
return (
<NodeViewWrapper>
<Box style={{ minHeight: 200 }}>
<BaseTable pageId={pageId} />
</Box>
<div ref={wrapperRef} style={{ minHeight: 200 }}>
<BaseTable pageId={pageId} embedded />
</div>
</NodeViewWrapper>
);
}