"use client"; import { useEffect, useRef, useState, type PointerEvent as ReactPointerEvent } from "react"; import { Button, Modal } from "antd"; import { Check, Lock, LockOpen, X } from "lucide-react"; import { readImageMeta } from "@/lib/image-utils"; export type CanvasImageCropRect = { x: number; y: number; width: number; height: number; }; type DragMode = "move" | "resize"; type ResizeHandle = "n" | "e" | "s" | "w" | "ne" | "nw" | "se" | "sw"; const handles: ResizeHandle[] = ["nw", "n", "ne", "e", "se", "s", "sw", "w"]; const minSize = 0.06; const defaultCrop = { x: 0.12, y: 0.12, width: 0.76, height: 0.76 }; export function CanvasNodeCropDialog({ dataUrl, open, onClose, onConfirm, }: { dataUrl: string; open: boolean; onClose: () => void; onConfirm: (crop: CanvasImageCropRect) => void; }) { const boxRef = useRef(null); const [crop, setCrop] = useState(defaultCrop); const [locked, setLocked] = useState(false); const [image, setImage] = useState<{ width: number; height: number } | null>(null); const cropSize = image ? { width: Math.max(1, Math.round(crop.width * image.width)), height: Math.max(1, Math.round(crop.height * image.height)) } : null; useEffect(() => { if (open) setCrop(defaultCrop); }, [dataUrl, open]); useEffect(() => { if (!open) return; void readImageMeta(dataUrl).then(setImage); }, [dataUrl, open]); const startDrag = (mode: DragMode, event: ReactPointerEvent, handle?: ResizeHandle) => { const box = boxRef.current?.getBoundingClientRect(); if (!box) return; event.preventDefault(); event.stopPropagation(); const start = { x: event.clientX, y: event.clientY, crop }; const move = (event: PointerEvent) => { const dx = (event.clientX - start.x) / box.width; const dy = (event.clientY - start.y) / box.height; setCrop(mode === "move" ? moveCrop(start.crop, dx, dy) : resizeCrop(start.crop, dx, dy, handle || "se", locked, box)); }; const up = () => { document.removeEventListener("pointermove", move); document.removeEventListener("pointerup", up); }; document.addEventListener("pointermove", move); document.addEventListener("pointerup", up); }; return (
startDrag("move", event)}>
{handles.map((handle) => (
裁剪尺寸 {cropSize ? `${cropSize.width} x ${cropSize.height}` : "未知"} 比例 {cropSize ? formatRatio(cropSize.width, cropSize.height) : "未知"} {image ? 原图 {image.width} x {image.height} : null}
); } function CropMask({ crop }: { crop: CanvasImageCropRect }) { return ( <>
); } function moveCrop(crop: CanvasImageCropRect, dx: number, dy: number): CanvasImageCropRect { return { ...crop, x: clamp(crop.x + dx, 0, 1 - crop.width), y: clamp(crop.y + dy, 0, 1 - crop.height) }; } function resizeCrop(crop: CanvasImageCropRect, dx: number, dy: number, handle: ResizeHandle, locked: boolean, box: DOMRect): CanvasImageCropRect { let next = { ...crop }; if (handle.includes("e")) next.width = crop.width + dx; if (handle.includes("s")) next.height = crop.height + dy; if (handle.includes("w")) { next.x = crop.x + dx; next.width = crop.width - dx; } if (handle.includes("n")) { next.y = crop.y + dy; next.height = crop.height - dy; } if (locked) { const size = Math.max(next.width * box.width, next.height * box.height); next.width = size / box.width; next.height = size / box.height; if (handle.includes("w")) next.x = crop.x + crop.width - next.width; if (handle.includes("n")) next.y = crop.y + crop.height - next.height; } next.width = clamp(next.width, minSize, 1); next.height = clamp(next.height, minSize, 1); next.x = clamp(next.x, 0, 1 - next.width); next.y = clamp(next.y, 0, 1 - next.height); return next; } function cropStyle(crop: CanvasImageCropRect) { return { left: `${crop.x * 100}%`, top: `${crop.y * 100}%`, width: `${crop.width * 100}%`, height: `${crop.height * 100}%` }; } function handleStyle(handle: ResizeHandle) { const top = handle.includes("n") ? "-6px" : handle.includes("s") ? "calc(100% - 6px)" : "calc(50% - 6px)"; const left = handle.includes("w") ? "-6px" : handle.includes("e") ? "calc(100% - 6px)" : "calc(50% - 6px)"; return { top, left, cursor: `${handle}-resize` }; } function clamp(value: number, min: number, max: number) { return Math.min(max, Math.max(min, value)); } function formatRatio(width: number, height: number) { const divisor = gcd(width, height); return `${Math.round(width / divisor)}:${Math.round(height / divisor)}`; } function gcd(a: number, b: number): number { return b ? gcd(b, a % b) : Math.max(1, a); }