feat(view): show transform measurements
This commit is contained in:
@@ -20,6 +20,9 @@ export function App({ app }: AppProps) {
|
|||||||
const viewportActivityIsland = useViewportActivityIsland(state.editor.viewport);
|
const viewportActivityIsland = useViewportActivityIsland(state.editor.viewport);
|
||||||
const [layersOpen, setLayersOpen] = useState(false);
|
const [layersOpen, setLayersOpen] = useState(false);
|
||||||
const selectionSummary = getSelectionSummary(state.document, state.editor.selection);
|
const selectionSummary = getSelectionSummary(state.document, state.editor.selection);
|
||||||
|
const transformBounds = state.editor.transformSession?.target.type === "artboard"
|
||||||
|
? state.document.artboards.find((artboard) => artboard.id === state.editor.transformSession?.target.id)?.bounds
|
||||||
|
: undefined;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className="relative h-full overflow-hidden bg-background text-foreground">
|
<main className="relative h-full overflow-hidden bg-background text-foreground">
|
||||||
@@ -41,9 +44,10 @@ export function App({ app }: AppProps) {
|
|||||||
<div className="absolute inset-x-0 bottom-4 z-10 flex justify-center">
|
<div className="absolute inset-x-0 bottom-4 z-10 flex justify-center">
|
||||||
<BottomControlsIsland
|
<BottomControlsIsland
|
||||||
viewport={state.editor.viewport}
|
viewport={state.editor.viewport}
|
||||||
visible={selectionSummary.type !== "none" || viewportActivityIsland.visible}
|
visible={Boolean(transformBounds) || selectionSummary.type !== "none" || viewportActivityIsland.visible}
|
||||||
action={viewportActivityIsland.action}
|
action={viewportActivityIsland.action}
|
||||||
selection={selectionSummary}
|
selection={selectionSummary}
|
||||||
|
transformBounds={transformBounds}
|
||||||
dispatch={app.store.dispatch}
|
dispatch={app.store.dispatch}
|
||||||
onOpenLayers={() => setLayersOpen(true)}
|
onOpenLayers={() => setLayersOpen(true)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -2,7 +2,9 @@ import type { AppStore } from "@editor/store";
|
|||||||
import type { ViewportState } from "@editor/state";
|
import type { ViewportState } from "@editor/state";
|
||||||
import { PanControls } from "./bottom-controls/PanControls";
|
import { PanControls } from "./bottom-controls/PanControls";
|
||||||
import { SelectionControls } from "./bottom-controls/SelectionControls";
|
import { SelectionControls } from "./bottom-controls/SelectionControls";
|
||||||
|
import { TransformControls } from "./bottom-controls/TransformControls";
|
||||||
import { ZoomControls } from "./bottom-controls/ZoomControls";
|
import { ZoomControls } from "./bottom-controls/ZoomControls";
|
||||||
|
import type { Rect } from "@core/geometry";
|
||||||
import type { SelectionSummary } from "./selectionSummary";
|
import type { SelectionSummary } from "./selectionSummary";
|
||||||
|
|
||||||
export type BottomControlsAction = "pan" | "zoom";
|
export type BottomControlsAction = "pan" | "zoom";
|
||||||
@@ -12,11 +14,12 @@ export type BottomControlsIslandProps = {
|
|||||||
visible: boolean;
|
visible: boolean;
|
||||||
action: BottomControlsAction;
|
action: BottomControlsAction;
|
||||||
selection: SelectionSummary;
|
selection: SelectionSummary;
|
||||||
|
transformBounds?: Rect;
|
||||||
dispatch: AppStore["dispatch"];
|
dispatch: AppStore["dispatch"];
|
||||||
onOpenLayers: () => void;
|
onOpenLayers: () => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function BottomControlsIsland({ viewport, visible, action, selection, dispatch, onOpenLayers }: BottomControlsIslandProps) {
|
export function BottomControlsIsland({ viewport, visible, action, selection, transformBounds, dispatch, onOpenLayers }: BottomControlsIslandProps) {
|
||||||
const zoomPercent = Math.round(viewport.zoom * 100);
|
const zoomPercent = Math.round(viewport.zoom * 100);
|
||||||
const x = Math.round(viewport.center.x);
|
const x = Math.round(viewport.center.x);
|
||||||
const y = Math.round(viewport.center.y);
|
const y = Math.round(viewport.center.y);
|
||||||
@@ -28,7 +31,9 @@ export function BottomControlsIsland({ viewport, visible, action, selection, dis
|
|||||||
visible ? "pointer-events-auto translate-y-0 opacity-100" : "pointer-events-none translate-y-3 opacity-0"
|
visible ? "pointer-events-auto translate-y-0 opacity-100" : "pointer-events-none translate-y-3 opacity-0"
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
{selection.type !== "none" ? (
|
{transformBounds ? (
|
||||||
|
<TransformControls bounds={transformBounds} />
|
||||||
|
) : selection.type !== "none" ? (
|
||||||
<SelectionControls selection={selection} onOpenLayers={onOpenLayers} />
|
<SelectionControls selection={selection} onOpenLayers={onOpenLayers} />
|
||||||
) : action === "pan" ? (
|
) : action === "pan" ? (
|
||||||
<PanControls x={x} y={y} />
|
<PanControls x={x} y={y} />
|
||||||
|
|||||||
28
view/bottom-controls/TransformControls.tsx
Normal file
28
view/bottom-controls/TransformControls.tsx
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import { BoundingBox } from "@phosphor-icons/react";
|
||||||
|
import type { Rect } from "@core/geometry";
|
||||||
|
import { BottomControlDivider } from "./Divider";
|
||||||
|
import { bottomControlIconSlotClass, bottomControlLabelClass, bottomControlValueClass } from "./styles";
|
||||||
|
|
||||||
|
export type TransformControlsProps = {
|
||||||
|
bounds: Rect;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function TransformControls({ bounds }: TransformControlsProps) {
|
||||||
|
return (
|
||||||
|
<div className="flex w-full items-center justify-center gap-2 tabular-nums">
|
||||||
|
<span className={bottomControlIconSlotClass()}>
|
||||||
|
<BoundingBox size={16} weight="regular" />
|
||||||
|
</span>
|
||||||
|
<BottomControlDivider />
|
||||||
|
<span className={bottomControlLabelClass()}>X</span>
|
||||||
|
<span className={bottomControlValueClass()}>{Math.round(bounds.x)}</span>
|
||||||
|
<span className={bottomControlLabelClass()}>Y</span>
|
||||||
|
<span className={bottomControlValueClass()}>{Math.round(bounds.y)}</span>
|
||||||
|
<BottomControlDivider />
|
||||||
|
<span className={bottomControlLabelClass()}>W</span>
|
||||||
|
<span className={bottomControlValueClass()}>{Math.round(bounds.w)}</span>
|
||||||
|
<span className={bottomControlLabelClass()}>H</span>
|
||||||
|
<span className={bottomControlValueClass()}>{Math.round(bounds.h)}</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user