Skip to content
Open
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
59 changes: 57 additions & 2 deletions src/core/editableObject/editableObject.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Object } from "fabric";
import { ActiveSelection, Object } from "fabric";
import { ReactImageEditor } from "../canvas/canvas";

export interface EditableObjectRequiredParams {
Expand Down Expand Up @@ -59,7 +59,62 @@ export class EditableObject implements EditableObjectParams, EditableObjectPrope
throw new Error("Method not implemented.");
}
select(): void {
throw new Error("Method not implemented.");
// Step 1. get previously selected objects
let activeObjects = this.editorController.fabricCanvas.getActiveObjects();

let selectedObjects: Object[] = [];
let selectedObjectInRightPos: Object[] = [];

// Step 2. copy previously selected objects
for (let i = 0; i < activeObjects.length; i++) {
const item = activeObjects[i];

const prevItem = (item as ActiveSelection);
if (!prevItem._objects) {
selectedObjects.push(prevItem);
} else {
for (let j = 0; j < prevItem._objects.length; j++) {
const subItem = prevItem._objects[j];
selectedObjects.push(subItem);
}
}
}

// Step 3. deselect previously selected objects
this.editorController.fabricCanvas.discardActiveObject();

for (let index = 0; index < selectedObjects.length; index++) {
const item = selectedObjects[index];
const currentItemIndex = this.editorController.fabricCanvas.getObjects().indexOf(item);
selectedObjectInRightPos.push(this.editorController.fabricCanvas.item(currentItemIndex) as ActiveSelection);
}

this.editorController.fabricCanvas.item(0);

// Step 4. merge previously selected objects with this EditableObject
if (selectedObjectInRightPos.length < 1) {
// Step 5. activate selection
this.editorController.fabricCanvas.setActiveObject(this.fabricInstance);
} else {
let newSelectedObjects = [...selectedObjectInRightPos];
if (selectedObjectInRightPos.includes(this.fabricInstance)) {
const targetIndex = selectedObjectInRightPos.indexOf(
this.fabricInstance
);
newSelectedObjects = newSelectedObjects.splice(
targetIndex,
targetIndex + 1
);
} else {
newSelectedObjects.push(this.fabricInstance);
}
// Step 5. activate selection
const selection = new ActiveSelection(newSelectedObjects, {
canvas: this.editorController.fabricCanvas,
});
this.editorController.fabricCanvas.setActiveObject(selection);
this.editorController.fabricCanvas.requestRenderAll();
}
}
move(): void {
throw new Error("Method not implemented.");
Expand Down