Improve ImageCanvas - zoom, selection fixes, tool modes
- Add zoom support via prop (scales image around center) - Fix selection interaction: clicking on selection transforms, clicking elsewhere creates new - Use refs for state accessed in event handlers (fixes stale closure issue) - Add smart select mode (clicks call onSmartSelect with image coordinates) - Add color select mode placeholder - Add pan mode with cursor feedback - Add move mode for manipulating selections - Use dashed blue selection style (more visible) - forwardRef to expose canvas methods
This commit is contained in:
@@ -1,26 +1,47 @@
|
|||||||
import React, { useEffect, useRef, useState, useCallback } from 'react';
|
import React, { useEffect, useRef, useState, useCallback, forwardRef, useImperativeHandle } from 'react';
|
||||||
import { fabric } from 'fabric';
|
import { fabric } from 'fabric';
|
||||||
import './ImageCanvas.css';
|
import './ImageCanvas.css';
|
||||||
|
|
||||||
const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
const ImageCanvas = forwardRef(({
|
||||||
|
imageUrl,
|
||||||
|
onSelectionChange,
|
||||||
|
selectionMode,
|
||||||
|
activeTool,
|
||||||
|
zoom = 100,
|
||||||
|
onSmartSelect,
|
||||||
|
isProcessing
|
||||||
|
}, ref) => {
|
||||||
const canvasRef = useRef(null);
|
const canvasRef = useRef(null);
|
||||||
const fabricCanvasRef = useRef(null);
|
const fabricCanvasRef = useRef(null);
|
||||||
const [currentSelection, setCurrentSelection] = useState(null);
|
const [currentSelection, setCurrentSelection] = useState(null);
|
||||||
const [isDrawing, setIsDrawing] = useState(false);
|
const currentSelectionRef = useRef(null);
|
||||||
const [isTransformMode, setIsTransformMode] = useState(false);
|
|
||||||
const lassoPoints = useRef([]);
|
const lassoPoints = useRef([]);
|
||||||
|
const isDrawingRef = useRef(false);
|
||||||
|
const imageRef = useRef(null);
|
||||||
|
const baseScaleRef = useRef(1);
|
||||||
|
|
||||||
|
// Expose methods to parent
|
||||||
|
useImperativeHandle(ref, () => ({
|
||||||
|
getCanvas: () => fabricCanvasRef.current,
|
||||||
|
clearSelection: () => clearSelection(),
|
||||||
|
}));
|
||||||
|
|
||||||
|
// Update selection ref when state changes
|
||||||
|
useEffect(() => {
|
||||||
|
currentSelectionRef.current = currentSelection;
|
||||||
|
}, [currentSelection]);
|
||||||
|
|
||||||
|
// Initialize canvas
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!canvasRef.current) return;
|
if (!canvasRef.current) return;
|
||||||
|
|
||||||
// Initialize Fabric.js canvas
|
|
||||||
const canvas = new fabric.Canvas(canvasRef.current, {
|
const canvas = new fabric.Canvas(canvasRef.current, {
|
||||||
selection: false,
|
selection: false,
|
||||||
backgroundColor: '#2a2a2a',
|
backgroundColor: 'transparent',
|
||||||
|
preserveObjectStacking: true,
|
||||||
});
|
});
|
||||||
fabricCanvasRef.current = canvas;
|
fabricCanvasRef.current = canvas;
|
||||||
|
|
||||||
// Handle window resize
|
|
||||||
const handleResize = () => {
|
const handleResize = () => {
|
||||||
const container = canvasRef.current?.parentElement;
|
const container = canvasRef.current?.parentElement;
|
||||||
if (container) {
|
if (container) {
|
||||||
@@ -29,19 +50,9 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
canvas.setWidth(width);
|
canvas.setWidth(width);
|
||||||
canvas.setHeight(height);
|
canvas.setHeight(height);
|
||||||
|
|
||||||
// Re-center and rescale the image if it exists
|
// Re-center image if it exists
|
||||||
const bgImage = canvas.backgroundImage;
|
if (imageRef.current) {
|
||||||
if (bgImage) {
|
centerImage(canvas, imageRef.current, zoom / 100);
|
||||||
// Allow scaling up to fill the canvas
|
|
||||||
const scale = Math.min(
|
|
||||||
(width - 40) / bgImage.width,
|
|
||||||
(height - 40) / bgImage.height
|
|
||||||
);
|
|
||||||
bgImage.scale(scale);
|
|
||||||
bgImage.set({
|
|
||||||
left: (width - bgImage.width * scale) / 2,
|
|
||||||
top: (height - bgImage.height * scale) / 2,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
canvas.renderAll();
|
canvas.renderAll();
|
||||||
}
|
}
|
||||||
@@ -56,97 +67,211 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
// Center and scale image
|
||||||
|
const centerImage = (canvas, img, zoomFactor) => {
|
||||||
|
if (!img) return;
|
||||||
|
|
||||||
|
const padding = 40;
|
||||||
|
const availableWidth = canvas.width - padding;
|
||||||
|
const availableHeight = canvas.height - padding;
|
||||||
|
|
||||||
|
// Calculate base scale to fit
|
||||||
|
const fitScale = Math.min(
|
||||||
|
availableWidth / img.width,
|
||||||
|
availableHeight / img.height
|
||||||
|
);
|
||||||
|
|
||||||
|
baseScaleRef.current = fitScale;
|
||||||
|
const scale = fitScale * zoomFactor;
|
||||||
|
|
||||||
|
img.scale(scale);
|
||||||
|
img.set({
|
||||||
|
left: (canvas.width - img.width * scale) / 2,
|
||||||
|
top: (canvas.height - img.height * scale) / 2,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// Apply zoom changes
|
||||||
|
useEffect(() => {
|
||||||
|
const canvas = fabricCanvasRef.current;
|
||||||
|
if (!canvas || !imageRef.current) return;
|
||||||
|
|
||||||
|
centerImage(canvas, imageRef.current, zoom / 100);
|
||||||
|
canvas.renderAll();
|
||||||
|
}, [zoom]);
|
||||||
|
|
||||||
// Load image when URL changes
|
// Load image when URL changes
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!fabricCanvasRef.current || !imageUrl) return;
|
if (!fabricCanvasRef.current || !imageUrl) return;
|
||||||
|
|
||||||
const canvas = fabricCanvasRef.current;
|
const canvas = fabricCanvasRef.current;
|
||||||
|
const cacheBustedUrl = imageUrl.includes('?') ? `${imageUrl}&_t=${Date.now()}` : `${imageUrl}?t=${Date.now()}`;
|
||||||
// Add cache buster to force reload
|
|
||||||
const cacheBustedUrl = `${imageUrl}?t=${Date.now()}`;
|
|
||||||
|
|
||||||
fabric.Image.fromURL(cacheBustedUrl, (img) => {
|
fabric.Image.fromURL(cacheBustedUrl, (img) => {
|
||||||
canvas.clear();
|
// Remove old image
|
||||||
|
if (imageRef.current) {
|
||||||
|
canvas.remove(imageRef.current);
|
||||||
|
}
|
||||||
|
|
||||||
// Scale image to fit canvas with padding
|
// Clear selection
|
||||||
const padding = 40;
|
if (currentSelectionRef.current) {
|
||||||
const availableWidth = canvas.width - padding;
|
canvas.remove(currentSelectionRef.current);
|
||||||
const availableHeight = canvas.height - padding;
|
setCurrentSelection(null);
|
||||||
const scale = Math.min(
|
onSelectionChange(null);
|
||||||
availableWidth / img.width,
|
}
|
||||||
availableHeight / img.height
|
|
||||||
);
|
|
||||||
|
|
||||||
img.scale(scale);
|
|
||||||
img.set({
|
img.set({
|
||||||
left: (canvas.width - img.width * scale) / 2,
|
|
||||||
top: (canvas.height - img.height * scale) / 2,
|
|
||||||
selectable: false,
|
selectable: false,
|
||||||
evented: false,
|
evented: false,
|
||||||
|
hoverCursor: 'default',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
imageRef.current = img;
|
||||||
canvas.add(img);
|
canvas.add(img);
|
||||||
canvas.sendToBack(img);
|
canvas.sendToBack(img);
|
||||||
canvas.renderAll();
|
|
||||||
|
|
||||||
// Store image reference
|
centerImage(canvas, img, zoom / 100);
|
||||||
canvas.backgroundImage = img;
|
canvas.renderAll();
|
||||||
}, { crossOrigin: 'anonymous' });
|
}, { crossOrigin: 'anonymous' });
|
||||||
}, [imageUrl]);
|
}, [imageUrl]);
|
||||||
|
|
||||||
// Handle selection mode changes
|
// Handle tool/mode changes
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!fabricCanvasRef.current) return;
|
if (!fabricCanvasRef.current) return;
|
||||||
|
|
||||||
const canvas = fabricCanvasRef.current;
|
const canvas = fabricCanvasRef.current;
|
||||||
|
|
||||||
// Clear previous selection when changing modes
|
// Remove all event handlers
|
||||||
if (currentSelection) {
|
|
||||||
canvas.remove(currentSelection);
|
|
||||||
setCurrentSelection(null);
|
|
||||||
onSelectionChange(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset transform mode
|
|
||||||
setIsTransformMode(false);
|
|
||||||
|
|
||||||
// Set up event handlers based on mode
|
|
||||||
canvas.off('mouse:down');
|
canvas.off('mouse:down');
|
||||||
canvas.off('mouse:move');
|
canvas.off('mouse:move');
|
||||||
canvas.off('mouse:up');
|
canvas.off('mouse:up');
|
||||||
canvas.off('object:modified');
|
canvas.off('object:modified');
|
||||||
|
canvas.off('object:moving');
|
||||||
|
canvas.off('object:scaling');
|
||||||
|
|
||||||
|
// Set up handlers based on selection mode
|
||||||
if (selectionMode === 'rectangle') {
|
if (selectionMode === 'rectangle') {
|
||||||
setupRectangleMode(canvas);
|
setupRectangleMode(canvas);
|
||||||
} else if (selectionMode === 'ellipse') {
|
} else if (selectionMode === 'ellipse') {
|
||||||
setupEllipseMode(canvas);
|
setupEllipseMode(canvas);
|
||||||
} else if (selectionMode === 'lasso') {
|
} else if (selectionMode === 'lasso') {
|
||||||
setupLassoMode(canvas);
|
setupLassoMode(canvas);
|
||||||
|
} else if (selectionMode === 'smart') {
|
||||||
|
setupSmartSelectMode(canvas);
|
||||||
|
} else if (selectionMode === 'color') {
|
||||||
|
setupColorSelectMode(canvas);
|
||||||
|
} else if (activeTool === 'move') {
|
||||||
|
setupMoveMode(canvas);
|
||||||
|
} else if (activeTool === 'pan') {
|
||||||
|
setupPanMode(canvas);
|
||||||
}
|
}
|
||||||
}, [selectionMode]);
|
}, [selectionMode, activeTool, onSmartSelect]);
|
||||||
|
|
||||||
const setupRectangleMode = (canvas) => {
|
const setupMoveMode = (canvas) => {
|
||||||
let rect, isDown, startX, startY;
|
// In move mode, allow selecting and moving selection objects
|
||||||
|
const sel = currentSelectionRef.current;
|
||||||
|
if (sel) {
|
||||||
|
sel.set({ selectable: true, evented: true });
|
||||||
|
canvas.setActiveObject(sel);
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas.on('object:modified', (e) => {
|
||||||
|
if (e.target && e.target === currentSelectionRef.current) {
|
||||||
|
updateTransformedSelection(e.target);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const setupPanMode = (canvas) => {
|
||||||
|
let isPanning = false;
|
||||||
|
let lastPosX, lastPosY;
|
||||||
|
|
||||||
canvas.on('mouse:down', (e) => {
|
canvas.on('mouse:down', (e) => {
|
||||||
// If clicking on existing selection, enable transform mode
|
isPanning = true;
|
||||||
if (e.target && e.target === currentSelection) {
|
lastPosX = e.e.clientX;
|
||||||
setIsTransformMode(true);
|
lastPosY = e.e.clientY;
|
||||||
|
canvas.setCursor('grabbing');
|
||||||
|
});
|
||||||
|
|
||||||
|
canvas.on('mouse:move', (e) => {
|
||||||
|
if (!isPanning) return;
|
||||||
|
|
||||||
|
const deltaX = e.e.clientX - lastPosX;
|
||||||
|
const deltaY = e.e.clientY - lastPosY;
|
||||||
|
|
||||||
|
canvas.relativePan({ x: deltaX, y: deltaY });
|
||||||
|
|
||||||
|
lastPosX = e.e.clientX;
|
||||||
|
lastPosY = e.e.clientY;
|
||||||
|
});
|
||||||
|
|
||||||
|
canvas.on('mouse:up', () => {
|
||||||
|
isPanning = false;
|
||||||
|
canvas.setCursor('grab');
|
||||||
|
});
|
||||||
|
|
||||||
|
canvas.setCursor('grab');
|
||||||
|
};
|
||||||
|
|
||||||
|
const setupSmartSelectMode = (canvas) => {
|
||||||
|
canvas.on('mouse:down', (e) => {
|
||||||
|
if (isProcessing) return;
|
||||||
|
|
||||||
|
const pointer = canvas.getPointer(e.e);
|
||||||
|
const img = imageRef.current;
|
||||||
|
|
||||||
|
if (!img) return;
|
||||||
|
|
||||||
|
// Convert to image coordinates
|
||||||
|
const imgScale = img.scaleX;
|
||||||
|
const imgLeft = img.left;
|
||||||
|
const imgTop = img.top;
|
||||||
|
|
||||||
|
const x = Math.round((pointer.x - imgLeft) / imgScale);
|
||||||
|
const y = Math.round((pointer.y - imgTop) / imgScale);
|
||||||
|
|
||||||
|
// Check if click is within image bounds
|
||||||
|
if (x >= 0 && x < img.width && y >= 0 && y < img.height) {
|
||||||
|
onSmartSelect?.(x, y);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
canvas.setCursor('crosshair');
|
||||||
|
};
|
||||||
|
|
||||||
|
const setupColorSelectMode = (canvas) => {
|
||||||
|
canvas.on('mouse:down', (e) => {
|
||||||
|
if (isProcessing) return;
|
||||||
|
|
||||||
|
// TODO: Get pixel color at click position
|
||||||
|
const pointer = canvas.getPointer(e.e);
|
||||||
|
console.log('Color select at:', pointer);
|
||||||
|
});
|
||||||
|
|
||||||
|
canvas.setCursor('crosshair');
|
||||||
|
};
|
||||||
|
|
||||||
|
const setupRectangleMode = (canvas) => {
|
||||||
|
let rect = null;
|
||||||
|
let isDown = false;
|
||||||
|
let startX, startY;
|
||||||
|
|
||||||
|
canvas.on('mouse:down', (e) => {
|
||||||
|
// Check if clicking on existing selection
|
||||||
|
const sel = currentSelectionRef.current;
|
||||||
|
if (e.target && e.target === sel) {
|
||||||
|
// Allow moving/transforming
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If in transform mode and clicking elsewhere, exit transform mode
|
// Clear previous selection
|
||||||
if (isTransformMode) {
|
if (sel) {
|
||||||
setIsTransformMode(false);
|
canvas.remove(sel);
|
||||||
}
|
|
||||||
|
|
||||||
// Clear previous selection if exists
|
|
||||||
if (currentSelection) {
|
|
||||||
canvas.remove(currentSelection);
|
|
||||||
setCurrentSelection(null);
|
setCurrentSelection(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
isDown = true;
|
isDown = true;
|
||||||
|
isDrawingRef.current = true;
|
||||||
const pointer = canvas.getPointer(e.e);
|
const pointer = canvas.getPointer(e.e);
|
||||||
startX = pointer.x;
|
startX = pointer.x;
|
||||||
startY = pointer.y;
|
startY = pointer.y;
|
||||||
@@ -156,26 +281,24 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
top: startY,
|
top: startY,
|
||||||
width: 0,
|
width: 0,
|
||||||
height: 0,
|
height: 0,
|
||||||
fill: 'rgba(255, 255, 255, 0.3)',
|
fill: 'rgba(0, 136, 255, 0.2)',
|
||||||
stroke: '#00ff00',
|
stroke: '#0088ff',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
|
strokeDashArray: [5, 5],
|
||||||
selectable: true,
|
selectable: true,
|
||||||
hasControls: true,
|
hasControls: true,
|
||||||
hasBorders: true,
|
hasBorders: true,
|
||||||
lockRotation: false,
|
cornerColor: '#0088ff',
|
||||||
cornerColor: '#00ff00',
|
cornerSize: 8,
|
||||||
cornerSize: 10,
|
|
||||||
transparentCorners: false,
|
transparentCorners: false,
|
||||||
borderColor: '#00ff00',
|
borderColor: '#0088ff',
|
||||||
borderScaleFactor: 2,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.add(rect);
|
canvas.add(rect);
|
||||||
setCurrentSelection(rect);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:move', (e) => {
|
canvas.on('mouse:move', (e) => {
|
||||||
if (!isDown || isTransformMode) return;
|
if (!isDown || !rect) return;
|
||||||
|
|
||||||
const pointer = canvas.getPointer(e.e);
|
const pointer = canvas.getPointer(e.e);
|
||||||
const width = pointer.x - startX;
|
const width = pointer.x - startX;
|
||||||
@@ -192,39 +315,40 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:up', () => {
|
canvas.on('mouse:up', () => {
|
||||||
if (isDown && !isTransformMode) {
|
if (isDown && rect && rect.width > 5 && rect.height > 5) {
|
||||||
isDown = false;
|
isDown = false;
|
||||||
|
isDrawingRef.current = false;
|
||||||
|
setCurrentSelection(rect);
|
||||||
canvas.setActiveObject(rect);
|
canvas.setActiveObject(rect);
|
||||||
updateSelection(rect, 'rectangle');
|
updateSelection(rect, 'rectangle');
|
||||||
|
} else if (isDown && rect) {
|
||||||
|
// Selection too small, remove it
|
||||||
|
canvas.remove(rect);
|
||||||
|
isDown = false;
|
||||||
|
isDrawingRef.current = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update selection when object is modified (moved, scaled, rotated)
|
|
||||||
canvas.on('object:modified', (e) => {
|
canvas.on('object:modified', (e) => {
|
||||||
if (e.target && e.target === currentSelection) {
|
if (e.target === currentSelectionRef.current) {
|
||||||
updateTransformedSelection(e.target, 'rectangle');
|
updateTransformedSelection(e.target);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const setupEllipseMode = (canvas) => {
|
const setupEllipseMode = (canvas) => {
|
||||||
let ellipse, isDown, startX, startY;
|
let ellipse = null;
|
||||||
|
let isDown = false;
|
||||||
|
let startX, startY;
|
||||||
|
|
||||||
canvas.on('mouse:down', (e) => {
|
canvas.on('mouse:down', (e) => {
|
||||||
// If clicking on existing selection, enable transform mode
|
const sel = currentSelectionRef.current;
|
||||||
if (e.target && e.target === currentSelection) {
|
if (e.target && e.target === sel) {
|
||||||
setIsTransformMode(true);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If in transform mode and clicking elsewhere, exit transform mode
|
if (sel) {
|
||||||
if (isTransformMode) {
|
canvas.remove(sel);
|
||||||
setIsTransformMode(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear previous selection if exists
|
|
||||||
if (currentSelection) {
|
|
||||||
canvas.remove(currentSelection);
|
|
||||||
setCurrentSelection(null);
|
setCurrentSelection(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,26 +362,24 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
top: startY,
|
top: startY,
|
||||||
rx: 0,
|
rx: 0,
|
||||||
ry: 0,
|
ry: 0,
|
||||||
fill: 'rgba(255, 255, 255, 0.3)',
|
fill: 'rgba(0, 136, 255, 0.2)',
|
||||||
stroke: '#00ff00',
|
stroke: '#0088ff',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
|
strokeDashArray: [5, 5],
|
||||||
selectable: true,
|
selectable: true,
|
||||||
hasControls: true,
|
hasControls: true,
|
||||||
hasBorders: true,
|
hasBorders: true,
|
||||||
lockRotation: false,
|
cornerColor: '#0088ff',
|
||||||
cornerColor: '#00ff00',
|
cornerSize: 8,
|
||||||
cornerSize: 10,
|
|
||||||
transparentCorners: false,
|
transparentCorners: false,
|
||||||
borderColor: '#00ff00',
|
borderColor: '#0088ff',
|
||||||
borderScaleFactor: 2,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.add(ellipse);
|
canvas.add(ellipse);
|
||||||
setCurrentSelection(ellipse);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:move', (e) => {
|
canvas.on('mouse:move', (e) => {
|
||||||
if (!isDown || isTransformMode) return;
|
if (!isDown || !ellipse) return;
|
||||||
|
|
||||||
const pointer = canvas.getPointer(e.e);
|
const pointer = canvas.getPointer(e.e);
|
||||||
const rx = Math.abs(pointer.x - startX) / 2;
|
const rx = Math.abs(pointer.x - startX) / 2;
|
||||||
@@ -266,58 +388,55 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
ellipse.set({
|
ellipse.set({
|
||||||
rx: rx,
|
rx: rx,
|
||||||
ry: ry,
|
ry: ry,
|
||||||
left: startX < pointer.x ? startX : pointer.x,
|
left: Math.min(startX, pointer.x),
|
||||||
top: startY < pointer.y ? startY : pointer.y,
|
top: Math.min(startY, pointer.y),
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.renderAll();
|
canvas.renderAll();
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:up', () => {
|
canvas.on('mouse:up', () => {
|
||||||
if (isDown && !isTransformMode) {
|
if (isDown && ellipse && ellipse.rx > 5 && ellipse.ry > 5) {
|
||||||
isDown = false;
|
isDown = false;
|
||||||
|
setCurrentSelection(ellipse);
|
||||||
canvas.setActiveObject(ellipse);
|
canvas.setActiveObject(ellipse);
|
||||||
updateSelection(ellipse, 'ellipse');
|
updateSelection(ellipse, 'ellipse');
|
||||||
|
} else if (isDown && ellipse) {
|
||||||
|
canvas.remove(ellipse);
|
||||||
|
isDown = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update selection when object is modified (moved, scaled, rotated)
|
|
||||||
canvas.on('object:modified', (e) => {
|
canvas.on('object:modified', (e) => {
|
||||||
if (e.target && e.target === currentSelection) {
|
if (e.target === currentSelectionRef.current) {
|
||||||
updateTransformedSelection(e.target, 'ellipse');
|
updateTransformedSelection(e.target);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const setupLassoMode = (canvas) => {
|
const setupLassoMode = (canvas) => {
|
||||||
let polygon, points = [], drawingLine;
|
let points = [];
|
||||||
|
let drawingLine = null;
|
||||||
|
let polygon = null;
|
||||||
|
|
||||||
canvas.on('mouse:down', (e) => {
|
canvas.on('mouse:down', (e) => {
|
||||||
// If clicking on existing selection, enable transform mode
|
const sel = currentSelectionRef.current;
|
||||||
if (e.target && e.target === currentSelection) {
|
if (e.target && e.target === sel) {
|
||||||
setIsTransformMode(true);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If in transform mode and clicking elsewhere, exit transform mode
|
if (sel) {
|
||||||
if (isTransformMode) {
|
canvas.remove(sel);
|
||||||
setIsTransformMode(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clear previous selection if exists
|
|
||||||
if (currentSelection) {
|
|
||||||
canvas.remove(currentSelection);
|
|
||||||
setCurrentSelection(null);
|
setCurrentSelection(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
setIsDrawing(true);
|
isDrawingRef.current = true;
|
||||||
const pointer = canvas.getPointer(e.e);
|
const pointer = canvas.getPointer(e.e);
|
||||||
points = [{ x: pointer.x, y: pointer.y }];
|
points = [{ x: pointer.x, y: pointer.y }];
|
||||||
|
|
||||||
// Create a temporary line for visual feedback while drawing
|
|
||||||
drawingLine = new fabric.Polyline(points, {
|
drawingLine = new fabric.Polyline(points, {
|
||||||
fill: 'transparent',
|
fill: 'transparent',
|
||||||
stroke: '#00ff00',
|
stroke: '#0088ff',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
selectable: false,
|
selectable: false,
|
||||||
evented: false,
|
evented: false,
|
||||||
@@ -327,16 +446,15 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:move', (e) => {
|
canvas.on('mouse:move', (e) => {
|
||||||
if (!isDrawing || isTransformMode) return;
|
if (!isDrawingRef.current) return;
|
||||||
|
|
||||||
const pointer = canvas.getPointer(e.e);
|
const pointer = canvas.getPointer(e.e);
|
||||||
points.push({ x: pointer.x, y: pointer.y });
|
points.push({ x: pointer.x, y: pointer.y });
|
||||||
|
|
||||||
// Remove old line and create new one with updated points
|
|
||||||
canvas.remove(drawingLine);
|
canvas.remove(drawingLine);
|
||||||
drawingLine = new fabric.Polyline([...points], {
|
drawingLine = new fabric.Polyline([...points], {
|
||||||
fill: 'transparent',
|
fill: 'transparent',
|
||||||
stroke: '#00ff00',
|
stroke: '#0088ff',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
selectable: false,
|
selectable: false,
|
||||||
evented: false,
|
evented: false,
|
||||||
@@ -346,59 +464,50 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
canvas.on('mouse:up', () => {
|
canvas.on('mouse:up', () => {
|
||||||
if (isDrawing && !isTransformMode && points.length > 2) {
|
if (isDrawingRef.current && points.length > 5) {
|
||||||
setIsDrawing(false);
|
isDrawingRef.current = false;
|
||||||
lassoPoints.current = [...points];
|
lassoPoints.current = [...points];
|
||||||
|
|
||||||
// Remove drawing line
|
|
||||||
canvas.remove(drawingLine);
|
canvas.remove(drawingLine);
|
||||||
|
|
||||||
// Create final polygon with fill
|
|
||||||
polygon = new fabric.Polygon(points, {
|
polygon = new fabric.Polygon(points, {
|
||||||
fill: 'rgba(255, 255, 255, 0.3)',
|
fill: 'rgba(0, 136, 255, 0.2)',
|
||||||
stroke: '#00ff00',
|
stroke: '#0088ff',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
|
strokeDashArray: [5, 5],
|
||||||
selectable: true,
|
selectable: true,
|
||||||
hasControls: true,
|
hasControls: true,
|
||||||
hasBorders: true,
|
hasBorders: true,
|
||||||
lockRotation: false,
|
cornerColor: '#0088ff',
|
||||||
cornerColor: '#00ff00',
|
cornerSize: 8,
|
||||||
cornerSize: 10,
|
|
||||||
transparentCorners: false,
|
transparentCorners: false,
|
||||||
borderColor: '#00ff00',
|
borderColor: '#0088ff',
|
||||||
borderScaleFactor: 2,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
canvas.add(polygon);
|
canvas.add(polygon);
|
||||||
canvas.setActiveObject(polygon);
|
canvas.setActiveObject(polygon);
|
||||||
setCurrentSelection(polygon);
|
setCurrentSelection(polygon);
|
||||||
updateSelection(polygon, 'lasso');
|
updateSelection(polygon, 'lasso');
|
||||||
} else if (isDrawing) {
|
} else if (isDrawingRef.current) {
|
||||||
setIsDrawing(false);
|
isDrawingRef.current = false;
|
||||||
canvas.remove(drawingLine);
|
canvas.remove(drawingLine);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update selection when object is modified (moved, scaled, rotated)
|
|
||||||
canvas.on('object:modified', (e) => {
|
canvas.on('object:modified', (e) => {
|
||||||
if (e.target && e.target === currentSelection) {
|
if (e.target === currentSelectionRef.current) {
|
||||||
updateTransformedSelection(e.target, 'lasso');
|
updateTransformedSelection(e.target);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateSelection = (selection, type) => {
|
const updateSelection = (selection, type) => {
|
||||||
if (!selection || !fabricCanvasRef.current) return;
|
if (!selection || !imageRef.current) return;
|
||||||
|
|
||||||
const canvas = fabricCanvasRef.current;
|
const img = imageRef.current;
|
||||||
const bgImage = canvas.backgroundImage;
|
const imgScale = img.scaleX;
|
||||||
|
const imgLeft = img.left;
|
||||||
if (!bgImage) return;
|
const imgTop = img.top;
|
||||||
|
|
||||||
// Calculate bounding box in original image coordinates
|
|
||||||
const imgScale = bgImage.scaleX;
|
|
||||||
const imgLeft = bgImage.left;
|
|
||||||
const imgTop = bgImage.top;
|
|
||||||
|
|
||||||
let bbox, selectionData = null;
|
let bbox, selectionData = null;
|
||||||
|
|
||||||
@@ -425,39 +534,32 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
height: Math.round(bounds.height / imgScale),
|
height: Math.round(bounds.height / imgScale),
|
||||||
};
|
};
|
||||||
|
|
||||||
// Convert lasso points to relative coordinates within bbox
|
|
||||||
const relativePoints = lassoPoints.current.map(p => [
|
const relativePoints = lassoPoints.current.map(p => [
|
||||||
Math.round((p.x - bounds.left) / imgScale),
|
Math.round((p.x - imgLeft) / imgScale) - bbox.x,
|
||||||
Math.round((p.y - bounds.top) / imgScale),
|
Math.round((p.y - imgTop) / imgScale) - bbox.y,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
selectionData = { points: relativePoints };
|
selectionData = { points: relativePoints };
|
||||||
}
|
}
|
||||||
|
|
||||||
onSelectionChange({
|
onSelectionChange?.({
|
||||||
type,
|
type,
|
||||||
bbox,
|
bbox,
|
||||||
selectionData,
|
selectionData,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// Update selection after transformation (move, scale, rotate)
|
const updateTransformedSelection = (selection) => {
|
||||||
const updateTransformedSelection = (selection, type) => {
|
if (!selection || !imageRef.current) return;
|
||||||
if (!selection || !fabricCanvasRef.current) return;
|
|
||||||
|
|
||||||
const canvas = fabricCanvasRef.current;
|
const img = imageRef.current;
|
||||||
const bgImage = canvas.backgroundImage;
|
const imgScale = img.scaleX;
|
||||||
|
const imgLeft = img.left;
|
||||||
|
const imgTop = img.top;
|
||||||
|
|
||||||
if (!bgImage) return;
|
|
||||||
|
|
||||||
const imgScale = bgImage.scaleX;
|
|
||||||
const imgLeft = bgImage.left;
|
|
||||||
const imgTop = bgImage.top;
|
|
||||||
|
|
||||||
// Get the transformed bounding rect (accounts for scale and rotation)
|
|
||||||
const bounds = selection.getBoundingRect(true);
|
const bounds = selection.getBoundingRect(true);
|
||||||
|
|
||||||
let bbox = {
|
const bbox = {
|
||||||
x: Math.round((bounds.left - imgLeft) / imgScale),
|
x: Math.round((bounds.left - imgLeft) / imgScale),
|
||||||
y: Math.round((bounds.top - imgTop) / imgScale),
|
y: Math.round((bounds.top - imgTop) / imgScale),
|
||||||
width: Math.round(bounds.width / imgScale),
|
width: Math.round(bounds.width / imgScale),
|
||||||
@@ -465,8 +567,8 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let selectionData = null;
|
let selectionData = null;
|
||||||
|
const type = selection.type === 'polygon' ? 'lasso' : (selection.type === 'ellipse' ? 'ellipse' : 'rectangle');
|
||||||
|
|
||||||
// For lasso, we need to transform the points based on the object's transformation
|
|
||||||
if (type === 'lasso' && lassoPoints.current.length > 0) {
|
if (type === 'lasso' && lassoPoints.current.length > 0) {
|
||||||
const matrix = selection.calcTransformMatrix();
|
const matrix = selection.calcTransformMatrix();
|
||||||
const transformedPoints = lassoPoints.current.map(p => {
|
const transformedPoints = lassoPoints.current.map(p => {
|
||||||
@@ -475,14 +577,14 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
matrix
|
matrix
|
||||||
);
|
);
|
||||||
return [
|
return [
|
||||||
Math.round((transformed.x - bounds.left) / imgScale),
|
Math.round((transformed.x - imgLeft) / imgScale) - bbox.x,
|
||||||
Math.round((transformed.y - bounds.top) / imgScale),
|
Math.round((transformed.y - imgTop) / imgScale) - bbox.y,
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
selectionData = { points: transformedPoints };
|
selectionData = { points: transformedPoints };
|
||||||
}
|
}
|
||||||
|
|
||||||
onSelectionChange({
|
onSelectionChange?.({
|
||||||
type,
|
type,
|
||||||
bbox,
|
bbox,
|
||||||
selectionData,
|
selectionData,
|
||||||
@@ -490,10 +592,12 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const clearSelection = () => {
|
const clearSelection = () => {
|
||||||
if (currentSelection && fabricCanvasRef.current) {
|
const canvas = fabricCanvasRef.current;
|
||||||
fabricCanvasRef.current.remove(currentSelection);
|
const sel = currentSelectionRef.current;
|
||||||
|
if (sel && canvas) {
|
||||||
|
canvas.remove(sel);
|
||||||
setCurrentSelection(null);
|
setCurrentSelection(null);
|
||||||
onSelectionChange(null);
|
onSelectionChange?.(null);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -501,17 +605,14 @@ const ImageCanvas = ({ imageUrl, onSelectionChange, selectionMode }) => {
|
|||||||
<div className="canvas-container">
|
<div className="canvas-container">
|
||||||
<canvas ref={canvasRef} />
|
<canvas ref={canvasRef} />
|
||||||
{currentSelection && (
|
{currentSelection && (
|
||||||
<>
|
<button className="clear-selection-btn" onClick={clearSelection}>
|
||||||
<div className="selection-hint">
|
Clear
|
||||||
Click selection to move/resize/rotate
|
</button>
|
||||||
</div>
|
|
||||||
<button className="clear-selection-btn" onClick={clearSelection}>
|
|
||||||
Clear Selection
|
|
||||||
</button>
|
|
||||||
</>
|
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
});
|
||||||
|
|
||||||
|
ImageCanvas.displayName = 'ImageCanvas';
|
||||||
|
|
||||||
export default ImageCanvas;
|
export default ImageCanvas;
|
||||||
|
|||||||
Reference in New Issue
Block a user