Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lu/tldraw issues #1

Merged
merged 4 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,27 @@
import { LiveImageShapeUtil } from "@/components/live-image";
import * as fal from "@fal-ai/serverless-client";
import { Editor, Tldraw } from "@tldraw/tldraw";
import { useCallback } from "react";

fal.config({
requestMiddleware: fal.withProxy({
targetUrl: "/api/fal/proxy",
}),
});

const shapeUtils = [LiveImageShapeUtil];

export default function Home() {
const onEditorMount = (editor: Editor) => {
// If there isn't a live image shape, create one
const liveImage = editor.getCurrentPageShapes().find((shape) => {
return shape.type === "live-image";
});

if (liveImage) {
return;
}

editor.createShape({
type: "live-image",
x: 120,
Expand All @@ -22,7 +34,7 @@ export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between">
<div className="fixed inset-0">
<Tldraw onMount={onEditorMount} shapeUtils={[LiveImageShapeUtil]} />
<Tldraw onMount={onEditorMount} shapeUtils={shapeUtils} />
</div>
</main>
);
Expand Down
5 changes: 4 additions & 1 deletion src/components/live-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
ShapeUtil,
TLBaseShape,
TLEventMapHandler,
TLShape,
useEditor,
} from "@tldraw/tldraw";

Expand Down Expand Up @@ -96,7 +97,7 @@ export function LiveImage() {
setImage(result.images[0].url);
}
}, 16),
[],
[]
);

useEffect(() => {
Expand Down Expand Up @@ -155,6 +156,8 @@ type LiveImageShape = TLBaseShape<"live-image", { w: number; h: number }>;
export class LiveImageShapeUtil extends ShapeUtil<LiveImageShape> {
static override type = "live-image" as const;

override canResize = () => false;

getDefaultProps(): LiveImageShape["props"] {
return {
w: 1060,
Expand Down