feat(view): show default artboard canvas

This commit is contained in:
syntaxbullet
2026-07-03 10:01:02 +02:00
parent fb0c424745
commit b4f1a149c6
4 changed files with 25 additions and 6 deletions

View File

@@ -7,10 +7,18 @@ import { createAppStore } from "@editor/store";
export type ImageStudioApp = ReturnType<typeof createImageStudioApp>; export type ImageStudioApp = ReturnType<typeof createImageStudioApp>;
export function createImageStudioApp(options?: { documentName?: string }) { export function createImageStudioApp(options?: { documentName?: string; createDefaultArtboard?: boolean }) {
const registry = createCommandRegistry([...viewportCommands, ...selectionCommands, ...documentCommands]); const registry = createCommandRegistry([...viewportCommands, ...selectionCommands, ...documentCommands]);
const store = createAppStore(createInitialAppState(options?.documentName), registry); const store = createAppStore(createInitialAppState(options?.documentName), registry);
if (options?.createDefaultArtboard !== false) {
store.dispatch("document.addArtboard", {
id: crypto.randomUUID(),
name: "Artboard 1",
bounds: { x: -400, y: -300, w: 800, h: 600 },
});
}
return { return {
registry, registry,
store, store,

View File

@@ -12,7 +12,7 @@ export function App({ app }: AppProps) {
const zoomPercent = Math.round(state.editor.viewport.zoom * 100); const zoomPercent = Math.round(state.editor.viewport.zoom * 100);
return ( return (
<main className="flex min-h-screen flex-col bg-background text-foreground"> <main className="flex h-full flex-col bg-background text-foreground">
<header className="flex h-12 items-center justify-between border-b px-4"> <header className="flex h-12 items-center justify-between border-b px-4">
<h1 className="font-semibold">Image Studio</h1> <h1 className="font-semibold">Image Studio</h1>
<div className="text-sm text-muted-foreground"> <div className="text-sm text-muted-foreground">

View File

@@ -1,4 +1,4 @@
import { useEffect, useRef } from "react"; import { useEffect, useRef, useState } from "react";
import type { AppStore } from "@editor/store"; import type { AppStore } from "@editor/store";
import type { GlobalPointerConsumer, GlobalWheelConsumer } from "@input/index"; import type { GlobalPointerConsumer, GlobalWheelConsumer } from "@input/index";
import { import {
@@ -24,6 +24,7 @@ export function CanvasViewport({
globalWheelConsumer = ignoreGlobalWheel, globalWheelConsumer = ignoreGlobalWheel,
}: CanvasViewportProps) { }: CanvasViewportProps) {
const canvasRef = useRef<HTMLCanvasElement | null>(null); const canvasRef = useRef<HTMLCanvasElement | null>(null);
const [isPanning, setIsPanning] = useState(false);
useEffect(() => { useEffect(() => {
const canvas = canvasRef.current; const canvas = canvasRef.current;
@@ -73,6 +74,7 @@ export function CanvasViewport({
if (!consumed) return; if (!consumed) return;
canvas.setPointerCapture(event.pointerId); canvas.setPointerCapture(event.pointerId);
setIsPanning(true);
event.preventDefault(); event.preventDefault();
}; };
@@ -83,7 +85,10 @@ export function CanvasViewport({
const handlePointerUp = (event: PointerEvent) => { const handlePointerUp = (event: PointerEvent) => {
const consumed = panHandler.pointerUp(pointerInputEventFromPointerEvent(event)); const consumed = panHandler.pointerUp(pointerInputEventFromPointerEvent(event));
if (consumed) event.preventDefault(); if (!consumed) return;
setIsPanning(false);
event.preventDefault();
}; };
canvas.addEventListener("pointerdown", handlePointerDown); canvas.addEventListener("pointerdown", handlePointerDown);
@@ -118,5 +123,5 @@ export function CanvasViewport({
return () => canvas.removeEventListener("wheel", handleWheel); return () => canvas.removeEventListener("wheel", handleWheel);
}, [globalWheelConsumer, store]); }, [globalWheelConsumer, store]);
return <canvas ref={canvasRef} className="h-full w-full" />; return <canvas ref={canvasRef} className={isPanning ? "h-full w-full cursor-grabbing" : "h-full w-full cursor-grab"} />;
} }

View File

@@ -5,7 +5,13 @@
@apply font-sans; @apply font-sans;
} }
html,
body,
#root {
@apply h-full;
}
body { body {
@apply m-0 min-w-[320px] min-h-screen bg-background text-foreground; @apply m-0 min-w-[320px] bg-background text-foreground;
} }
} }