indicate and hide overflow + always keep on top

This commit is contained in:
Orion Reed 2024-03-29 19:34:49 -07:00
parent cb02547248
commit 877acb3103
2 changed files with 29 additions and 4 deletions

View File

@ -31,6 +31,12 @@ body {
display: none;
}
.overflowing {
box-shadow: 0 0px 16px rgba(0, 0, 0, 0.2);
overflow: hidden;
background-color: white;
}
/* Non-tldraw stuff */
main {

View File

@ -1,5 +1,5 @@
import { Rectangle2d, resizeBox, TLBaseShape, TLOnResizeHandler } from '@tldraw/tldraw';
import { HTMLContainer, ShapeUtil } from 'tldraw'
import { Rectangle2d, resizeBox, TLBaseShape, TLOnBeforeUpdateHandler, TLOnResizeHandler } from '@tldraw/tldraw';
import { ShapeUtil } from 'tldraw'
export type HTMLShape = TLBaseShape<'html', { w: number; h: number, html: string }>
@ -18,7 +18,26 @@ export class HTMLShapeUtil extends ShapeUtil<HTMLShape> {
}
}
override onResize: TLOnResizeHandler<any> = (shape, info) => {
override onTranslate: TLOnBeforeUpdateHandler<HTMLShape> = (prev, next) => {
if (prev.x !== next.x || prev.y !== next.y) {
this.editor.bringToFront([next.id]);
}
}
override onResize: TLOnResizeHandler<HTMLShape> = (shape: HTMLShape, info) => {
const element = document.getElementById(shape.id);
if (!element || !element.parentElement) return resizeBox(shape, info);
const { width, height } = element.parentElement.getBoundingClientRect();
if (element) {
console.log(element);
const isOverflowing = element.scrollWidth > width || element.scrollHeight > height;
if (isOverflowing) {
element.parentElement?.classList.add('overflowing');
} else {
element.parentElement?.classList.remove('overflowing');
}
}
return resizeBox(shape, info)
}
@ -31,7 +50,7 @@ export class HTMLShapeUtil extends ShapeUtil<HTMLShape> {
}
component(shape: HTMLShape) {
return <div dangerouslySetInnerHTML={{ __html: shape.props.html }}></div>
return <div id={shape.id} dangerouslySetInnerHTML={{ __html: shape.props.html }} />
}