1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
|
/* eslint-disable no-use-before-define */
import { Checkbox, FormControlLabel, Slider, TextField } from '@mui/material';
import { Button, IconButton, Type } from '@dash/components';
import * as React from 'react';
import { useEffect, useRef, useState } from 'react';
import { CgClose } from 'react-icons/cg';
import { IoMdRedo, IoMdUndo } from 'react-icons/io';
import { ClientUtils } from '../../../../ClientUtils';
import { Doc, DocListCast } from '../../../../fields/Doc';
import { List } from '../../../../fields/List';
import { NumCast } from '../../../../fields/Types';
import { Networking } from '../../../Network';
import { DocUtils } from '../../../documents/DocUtils';
import { Docs } from '../../../documents/Documents';
import { CollectionDockingView } from '../../collections/CollectionDockingView';
import { CollectionFreeFormView } from '../../collections/collectionFreeForm';
import { ImageEditorData } from '../ImageBox';
import { OpenWhereMod } from '../OpenWhere';
import './ImageEditor.scss';
import { ApplyFuncButtons, ImageToolButton } from './ImageEditorButtons';
import { BrushHandler } from './imageEditorUtils/BrushHandler';
import { APISuccess, ImageUtility } from './imageEditorUtils/ImageHandler';
import { PointerHandler } from './imageEditorUtils/PointerHandler';
import { activeColor, bgColor, brushWidthOffset, canvasSize, eraserColor, freeformRenderSize, newCollectionSize, offsetDistanceY, offsetX } from './imageEditorUtils/imageEditorConstants';
import { CutMode, CursorData, ImageDimensions, ImageEditTool, ImageToolType, Point } from './imageEditorUtils/imageEditorInterfaces';
import { DocumentView } from '../DocumentView';
import { SettingsManager } from '../../../util/SettingsManager';
import { Upload } from '../../../../server/SharedMediaTypes';
interface GenerativeFillProps {
imageEditorOpen: boolean;
imageEditorSource: string;
imageRootDoc: Doc | undefined;
addDoc: ((doc: Doc | Doc[], annotationKey?: string) => boolean) | undefined;
}
// Added field on image doc: gen_fill_children: List of children Docs
/**
* The image editor interface can be accessed by opening a document's context menu, then going to Options --> Open Image Editor.
* The image editor supports various operations on images. Currently, there is a Generative Fill feature that allows users to erase
* part of an image, add an optional prompt, and send this to GPT. GPT then returns a newly generated image that replaces the erased
* portion based on the optional prompt. There is also an image cutting tool that allows users to cut images in different ways to
* reshape the images, take out portions of images, and overall use them more creatively (see the header comment for cutImage() for more information).
*/
const ImageEditor = ({ imageEditorOpen, imageEditorSource, imageRootDoc, addDoc }: GenerativeFillProps) => {
const canvasRef = useRef<HTMLCanvasElement>(null);
const canvasBackgroundRef = useRef<HTMLCanvasElement>(null);
const drawingAreaRef = useRef<HTMLDivElement>(null);
const [cursorData, setCursorData] = useState<CursorData>({
x: 0,
y: 0,
width: 150,
});
const [isBrushing, setIsBrushing] = useState(false);
const [canvasScale, setCanvasScale] = useState(0.5);
// format: array of [image source, corresponding image Doc]
const [edits, setEdits] = useState<{ url: string; saveRes: Doc | undefined }[]>([]);
const [edited, setEdited] = useState(false);
const [isFirstDoc, setIsFirstDoc] = useState<boolean>(true);
const [input, setInput] = useState('');
const [loading, setLoading] = useState(false);
const [canvasDims, setCanvasDims] = useState<ImageDimensions>({
width: canvasSize,
height: canvasSize,
});
const [cutType, setCutType] = useState<CutMode>(CutMode.IN);
// whether to create a new collection or not
const [isNewCollection, setIsNewCollection] = useState(true);
// the current image in the main canvas
const currImg = useRef<HTMLImageElement | null>(null);
// the unedited version of each generation (parent)
const originalImg = useRef<HTMLImageElement | null>(null);
const originalDoc = useRef<Doc | null>(null);
// stores history of data urls
const undoStack = useRef<string[]>([]);
// stores redo stack
const redoStack = useRef<string[]>([]);
// references to keep track of tree structure
const newCollectionRef = useRef<Doc | null>(null);
const parentDoc = useRef<Doc | null>(null);
const childrenDocs = useRef<Doc[]>([]);
// constants for image cutting
const cutPts = useRef<Point[]>([]);
/**
*
* @param type The new tool type we are changing to
*/
const changeTool = (type: ImageToolType) => {
setCurrToolType(type);
setCursorData(prev => ({ ...prev, width: currTool().sliderDefault as number }));
};
// Undo and Redo
const handleUndo = () => {
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx || !currImg.current || !canvasRef.current) return;
const target = undoStack.current[undoStack.current.length - 1];
if (!target) {
ImageUtility.drawImgToCanvas(currImg.current, canvasRef, canvasDims.width, canvasDims.height);
} else {
redoStack.current = [...redoStack.current, canvasRef.current.toDataURL()];
const img = new Image();
img.src = target;
ImageUtility.drawImgToCanvas(img, canvasRef, canvasDims.width, canvasDims.height);
undoStack.current = undoStack.current.slice(0, -1);
}
};
const handleRedo = () => {
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx || !currImg.current || !canvasRef.current) return;
const target = redoStack.current[redoStack.current.length - 1];
if (target) {
undoStack.current = [...undoStack.current, canvasRef.current?.toDataURL()];
const img = new Image();
img.src = target;
ImageUtility.drawImgToCanvas(img, canvasRef, canvasDims.width, canvasDims.height);
redoStack.current = redoStack.current.slice(0, -1);
}
};
// resets any erase strokes
const handleReset = () => {
if (!canvasRef.current || !currImg.current) return;
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx) return;
ctx.clearRect(0, 0, canvasSize, canvasSize);
undoStack.current = [];
redoStack.current = [];
cutPts.current.length = 0;
ImageUtility.drawImgToCanvas(currImg.current, canvasRef, canvasDims.width, canvasDims.height);
};
// initiate brushing
const handlePointerDown = (e: React.PointerEvent) => {
const canvas = canvasRef.current;
if (!canvas) return;
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx) return;
undoStack.current = [...undoStack.current, canvasRef.current.toDataURL()];
redoStack.current = [];
setIsBrushing(true);
const { x, y } = PointerHandler.getPointRelativeToElement(canvas, e, canvasScale);
BrushHandler.brushCircleOverlay(x, y, cursorData.width / 2 / canvasScale, ctx, eraserColor /* , brushStyle === BrushStyle.SUBTRACT */);
};
// stop brushing, push to undo stack
const handlePointerUp = () => {
const ctx = ImageUtility.getCanvasContext(canvasBackgroundRef);
if (!ctx) return;
if (!isBrushing) return;
setIsBrushing(false);
};
// handles brushing on pointer movement
useEffect(() => {
const canvas = canvasRef.current;
if (!isBrushing || !canvas) return undefined;
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx) return undefined;
const handlePointerMove = (e: PointerEvent) => {
const currPoint = PointerHandler.getPointRelativeToElement(canvas, e, canvasScale);
const lastPoint: Point = {
x: currPoint.x - e.movementX / canvasScale,
y: currPoint.y - e.movementY / canvasScale,
};
const pts = BrushHandler.createBrushPathOverlay(lastPoint, currPoint, cursorData.width / 2 / canvasScale, ctx, eraserColor);
cutPts.current.push(...pts);
};
drawingAreaRef.current?.addEventListener('pointermove', handlePointerMove);
return () => drawingAreaRef.current?.removeEventListener('pointermove', handlePointerMove);
}, [isBrushing]);
// first load
useEffect(() => {
if (imageEditorSource && imageEditorSource) {
ImageUtility.urlToBase64(imageEditorSource).then(res => {
if (res) {
const img = new Image();
img.src = `data:image/png;base64,${res}`;
img.onload = () => {
currImg.current = img;
originalImg.current = img;
const imgWidth = img.naturalWidth;
const imgHeight = img.naturalHeight;
const scale = Math.min(canvasSize / imgWidth, canvasSize / imgHeight);
const width = imgWidth * scale;
const height = imgHeight * scale;
setCanvasDims({ width, height });
};
}
});
}
// cleanup
return () => {
setInput('');
setEdited(false);
newCollectionRef.current = null;
parentDoc.current = null;
childrenDocs.current = [];
currImg.current = null;
originalImg.current = null;
originalDoc.current = null;
undoStack.current = [];
redoStack.current = [];
ImageUtility.clearCanvas(canvasRef);
};
}, [canvasRef, imageEditorSource]);
// once the appropriate dimensions are set, draw the image to the canvas
useEffect(() => {
if (!currImg.current) return;
ImageUtility.drawImgToCanvas(currImg.current, canvasRef, canvasDims.width, canvasDims.height);
}, [canvasDims]);
// handles brush sizing
useEffect(() => {
const handleKeyPress = (e: KeyboardEvent) => {
if (e.key === 'ArrowUp') {
e.preventDefault();
e.stopPropagation();
setCursorData(data => ({ ...data, width: data.width + 5 }));
} else if (e.key === 'ArrowDown') {
e.preventDefault();
e.stopPropagation();
setCursorData(data => (data.width >= 20 ? { ...data, width: data.width - 5 } : data));
}
};
window.addEventListener('keydown', handleKeyPress);
return () => window.removeEventListener('keydown', handleKeyPress);
}, []);
// handle pinch zoom
useEffect(() => {
const handlePinch = (e: WheelEvent) => {
e.preventDefault();
e.stopPropagation();
const delta = e.deltaY;
const scaleFactor = delta > 0 ? 0.98 : 1.02;
setCanvasScale(prevScale => prevScale * scaleFactor);
};
drawingAreaRef.current?.addEventListener('wheel', handlePinch, {
passive: false,
});
return () => drawingAreaRef.current?.removeEventListener('wheel', handlePinch);
}, [drawingAreaRef]);
// updates the current position of the cursor
const updateCursorData = (e: React.PointerEvent) => {
const drawingArea = drawingAreaRef.current;
if (!drawingArea) return;
const { x, y } = PointerHandler.getPointRelativeToElement(drawingArea, e, 1);
setCursorData(data => ({
...data,
x,
y,
}));
};
// Get AI Edit for Generative Fill
const getEdit = async () => {
const img = currImg.current;
if (!img) return;
const canvas = canvasRef.current;
if (!canvas) return;
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx) return;
setLoading(true);
setEdited(true);
try {
const canvasOriginalImg = ImageUtility.getCanvasImg(img);
if (!canvasOriginalImg) return;
const canvasMask = ImageUtility.getCanvasMask(canvas, canvas);
if (!canvasMask) return;
const maskBlob = await ImageUtility.canvasToBlob(canvasMask);
const imgBlob = await ImageUtility.canvasToBlob(canvasOriginalImg);
const res = await ImageUtility.getEdit(imgBlob, maskBlob, input || 'Fill in the image in the same style', 2);
if ((res as any).status == 'error') {
alert((res as any).message);
}
// create first image
if (!newCollectionRef.current) {
createNewCollection();
} else {
childrenDocs.current = [];
}
if (!(originalImg.current && imageRootDoc)) return;
// add the doc to the main freeform
await createNewImgDoc(originalImg.current, true);
originalImg.current = currImg.current;
originalDoc.current = parentDoc.current;
const { urls } = res as APISuccess;
if (res.status !== 'error') {
const imgUrls = await Promise.all(urls.map(url => ImageUtility.convertImgToCanvasUrl(url, canvasDims.width, canvasDims.height)));
const imgRes = await Promise.all(
imgUrls.map(async url => {
const saveRes = await onSave(url);
return { url, saveRes };
})
);
setEdits(imgRes);
const image = new Image();
image.src = imgUrls[0];
ImageUtility.drawImgToCanvas(image, canvasRef, canvasDims.width, canvasDims.height);
currImg.current = image;
parentDoc.current = imgRes[0].saveRes ?? null;
}
} catch (err) {
console.log(err);
}
setLoading(false);
};
/**
* This function performs image cutting based on the inputted BrushMode. There are currently four ways to cut images:
* 1. By outlining the area that should be kept (BrushMode.IN)
* 2. By outlining the area that should be removed (BrushMode.OUT)
* 3. By drawing in the area that should be kept (where the image is brushed, the image will remain and everything else will be removed) (BrushMode.DRAW_IN)
* 4. By drawing the area that she be removed, so this operates as an eraser (BrushMode.ERASE)
* @param currCutType BrushMode enum that determines what kind of cutting operation to perform
* @param firstDoc boolean for whether it's the first edited image. This is for positioning of the edited images when they render on the canvas.
*/
const cutImage = async (currCutType: CutMode, brushWidth: number, prevEdits: { url: string; saveRes: Doc | undefined }[], firstDoc: boolean) => {
const img = currImg.current;
const canvas = canvasRef.current;
if (!canvas || !img) return;
const ctx = ImageUtility.getCanvasContext(canvasRef);
if (!ctx) return;
// get the original image
const canvasOriginalImg = ImageUtility.getCanvasImg(img);
if (!canvasOriginalImg) return;
setLoading(true);
const currPts = [...cutPts.current];
if (currCutType !== CutMode.ERASE) handleReset(); // gets rid of the visible brush strokes (mostly needed for line_in) unless it's erasing (which depends on the brush strokes)
let minX = img.width;
let maxX = 0;
let minY = img.height;
let maxY = 0;
// currPts is populated by the brush strokes' points, so this code is drawing a path along the points
if (currPts.length) {
ctx.beginPath();
ctx.moveTo(currPts[0].x, currPts[0].y);
for (let i = 0; i < currPts.length; i++) {
ctx.lineTo(currPts[i].x, currPts[i].y);
minX = Math.min(currPts[i].x, minX);
minY = Math.min(currPts[i].y, minY);
maxX = Math.max(currPts[i].x, maxX);
maxY = Math.max(currPts[i].y, maxY);
}
switch (
currCutType // use different canvas operations depending on the type of cutting we're applying
) {
case CutMode.IN:
ctx.closePath();
ctx.globalCompositeOperation = 'destination-in';
ctx.fill();
break;
case CutMode.OUT:
ctx.closePath();
ctx.globalCompositeOperation = 'destination-out';
ctx.fill();
break;
case CutMode.DRAW_IN:
ctx.globalCompositeOperation = 'destination-in';
ctx.lineWidth = brushWidth + brushWidthOffset; // added offset because width gets cut off a little bit
ctx.stroke();
break;
}
}
const url = canvas.toDataURL();
if (!newCollectionRef.current) {
createNewCollection();
}
const image = new Image();
image.src = url;
image.onload = async () => {
let finalImg: HTMLImageElement | undefined = image;
let finalImgURL: string = url;
// crop the image for these brush modes to remove excess blank space around the image contents
if (currCutType == CutMode.IN || currCutType == CutMode.DRAW_IN) {
const croppedData = cropImage(image, Math.max(minX, 0), Math.min(maxX, image.width), Math.max(minY, 0), Math.min(maxY, image.height));
finalImg = croppedData;
finalImgURL = croppedData.src;
}
currImg.current = finalImg;
const newImgDoc = await createNewImgDoc(finalImg, firstDoc);
if (newImgDoc) {
// set the image to transparent to remove the background / brushstrokes
newImgDoc.$backgroundColor = 'transparent';
newImgDoc.$disableMixBlend = true;
if (firstDoc) setIsFirstDoc(false);
setEdits([...prevEdits, { url: finalImgURL, saveRes: undefined }]);
}
setLoading(false);
cutPts.current.length = 0;
};
};
/**
* Creates a new collection to put the image edits on. Adds to a new tab on the right if "Create New Collection" is checked.
* @returns
*/
const createNewCollection = () => {
if (!isNewCollection && imageRootDoc) {
// if the parent hasn't been set yet
if (!parentDoc.current) parentDoc.current = imageRootDoc;
} else {
if (!(originalImg.current && imageRootDoc)) return;
// create new collection and add it to the view
newCollectionRef.current = Docs.Create.FreeformDocument([], {
x: NumCast(imageRootDoc.x) + NumCast(imageRootDoc._width) + offsetX,
y: NumCast(imageRootDoc.y),
_width: newCollectionSize,
_height: newCollectionSize,
title: 'Image edit collection',
});
DocUtils.MakeLink(imageRootDoc, newCollectionRef.current, { link_relationship: 'Image Edit Version History' });
// opening new tab
CollectionDockingView.AddSplit(newCollectionRef.current, OpenWhereMod.right);
}
};
/**
* This function crops an image based on the inputted dimensions. This is used to automatically adjust the images that are
* edited to be smaller than the original (i.e. for cutting into a small part of the image)
*/
const cropImage = (image: HTMLImageElement, minX: number, maxX: number, minY: number, maxY: number) => {
const croppedCanvas = document.createElement('canvas');
const croppedCtx = croppedCanvas.getContext('2d');
if (!croppedCtx) return image;
const cropWidth = Math.abs(maxX - minX);
const cropHeight = Math.abs(maxY - minY);
croppedCanvas.width = cropWidth;
croppedCanvas.height = cropHeight;
croppedCtx.globalCompositeOperation = 'source-over';
croppedCtx.clearRect(0, 0, cropWidth, cropHeight);
croppedCtx.drawImage(image, minX, minY, cropWidth, cropHeight, 0, 0, cropWidth, cropHeight);
const croppedURL = croppedCanvas.toDataURL();
const croppedImage = new Image();
croppedImage.src = croppedURL;
return croppedImage;
};
// adjusts all the img positions to be aligned
const adjustImgPositions = () => {
if (!parentDoc.current) return;
const startY = NumCast(parentDoc.current.y);
const children = DocListCast(parentDoc.current.gen_fill_children);
const len = children.length;
const initialYPositions: number[] = [];
for (let i = 0; i < len; i++) {
initialYPositions.push(startY + i * offsetDistanceY);
}
children.forEach((doc, i) => {
if (len % 2 === 1) {
doc.y = initialYPositions[i] - Math.floor(len / 2) * offsetDistanceY;
} else {
doc.y = initialYPositions[i] - (len / 2 - 1 / 2) * offsetDistanceY;
}
});
};
// creates a new image document and returns its reference
const createNewImgDoc = async (img: HTMLImageElement, firstDoc: boolean /*, parent?: Doc */): Promise<Doc | undefined> => {
if (!imageRootDoc) return undefined;
const { src } = img;
const [result] = (await Networking.PostToServer('/uploadRemoteImage', { sources: [src] })) as Upload.ImageInformation[];
const source = ClientUtils.prepend(result.accessPaths.agnostic.client);
if (firstDoc) {
const x = 0;
const initialY = 0;
const newImg = Docs.Create.ImageDocument(source, {
x: x,
y: initialY,
_height: freeformRenderSize,
_width: freeformRenderSize,
data_nativeWidth: result.nativeWidth,
data_nativeHeight: result.nativeHeight,
});
if (isNewCollection && newCollectionRef.current) {
Doc.AddDocToList(newCollectionRef.current, undefined, newImg);
} else {
addDoc?.(newImg);
}
parentDoc.current = newImg;
return newImg;
}
if (!parentDoc.current) return undefined;
const x = NumCast(parentDoc.current.x) + freeformRenderSize + offsetX;
const initialY = 0;
const newImg = Docs.Create.ImageDocument(source, {
x: x,
y: initialY,
_height: freeformRenderSize,
_width: freeformRenderSize,
data_nativeWidth: result.nativeWidth,
data_nativeHeight: result.nativeHeight,
});
const parentList = DocListCast(parentDoc.current.gen_fill_children);
if (parentList.length > 0) {
parentList.push(newImg);
parentDoc.current.gen_fill_children = new List<Doc>(parentList);
} else {
parentDoc.current.gen_fill_children = new List<Doc>([newImg]);
}
DocUtils.MakeLink(parentDoc.current, newImg, { link_relationship: `Image edit; Prompt: ${input}` });
adjustImgPositions();
if (isNewCollection && newCollectionRef.current) {
Doc.AddDocToList(newCollectionRef.current, undefined, newImg);
} else {
addDoc?.(newImg);
}
return newImg;
};
// Saves an image to the collection
const onSave = async (src: string) => {
const img = new Image();
img.src = src;
if (!currImg.current || !originalImg.current || !imageRootDoc) return undefined;
try {
return await createNewImgDoc(img, false);
} catch (err) {
console.log(err);
}
return undefined;
};
// Closes the editor view
const handleViewClose = () => {
ImageEditorData.Open = false;
ImageEditorData.Source = '';
if (newCollectionRef.current) {
DocumentView.addViewRenderedCb(newCollectionRef.current, dv => (dv.ComponentView as CollectionFreeFormView)?.fitContentOnce());
}
setEdits([]);
setIsFirstDoc(true);
};
function currTool() {
return imageEditTools.find(tool => tool.type === currToolType) ?? genFillTool;
}
// defines the tools and sets current tool
const genFillTool: ImageEditTool = { type: ImageToolType.GenerativeFill, btnText: 'GET EDITS', icon: 'fill', applyFunc: getEdit, sliderMin: 25, sliderMax: 500, sliderDefault: 150 };
const cutTool: ImageEditTool = { type: ImageToolType.Cut, btnText: 'CUT IMAGE', icon: 'scissors', applyFunc: cutImage, sliderMin: 1, sliderMax: 50, sliderDefault: 5 };
const imageEditTools: ImageEditTool[] = [genFillTool, cutTool];
const [currToolType, setCurrToolType] = useState<ImageToolType>(ImageToolType.GenerativeFill);
// the top controls for making a new collection, resetting, and applying edits,
function renderControls() {
return (
<div className="imageEditorTopBar">
<h1>Image Editor</h1>
{/* <IconButton text="Cut out" icon={<FontAwesomeIcon icon="scissors" />} /> */}
<div className="imageEditorControls">
<FormControlLabel
control={
<Checkbox
// disable once edited has been clicked (doesn't make sense to change after first edit)
disabled={edited}
checked={isNewCollection}
onChange={() => setIsNewCollection(prev => !prev)}
/>
}
label="Create New Collection"
labelPlacement="end"
sx={{ whiteSpace: 'nowrap' }}
/>
<ApplyFuncButtons onClick={() => currTool().applyFunc(cutType, cursorData.width, edits, isFirstDoc)} loading={loading} onReset={handleReset} btnText={currTool().btnText} />
<IconButton color={activeColor} tooltip="close" icon={<CgClose size="16px" />} onClick={handleViewClose} />
</div>
</div>
);
}
// the side icons including tool type, the slider, and undo/redo
function renderSideIcons() {
return (
<div className="sideControlsContainer" style={{ backgroundColor: bgColor }}>
<div className="sideControls">
<div className="imageToolsContainer">{imageEditTools.map(tool => ImageToolButton(tool, tool.type === currTool().type, changeTool))}</div>
{currTool().type == ImageToolType.Cut && (
<div className="cutToolsContainer">
<Button style={{ width: '100%' }} text="Keep in" type={Type.TERT} color={cutType == CutMode.IN ? SettingsManager.userColor : bgColor} onClick={() => setCutType(CutMode.IN)} />
<Button style={{ width: '100%' }} text="Keep out" type={Type.TERT} color={cutType == CutMode.OUT ? SettingsManager.userColor : bgColor} onClick={() => setCutType(CutMode.OUT)} />
<Button style={{ width: '100%' }} text="Draw in" type={Type.TERT} color={cutType == CutMode.DRAW_IN ? SettingsManager.userColor : bgColor} onClick={() => setCutType(CutMode.DRAW_IN)} />
<Button style={{ width: '100%' }} text="Erase" type={Type.TERT} color={cutType == CutMode.ERASE ? SettingsManager.userColor : bgColor} onClick={() => setCutType(CutMode.ERASE)} />
</div>
)}
<div className="sliderContainer" onPointerDown={e => e.stopPropagation()}>
{currTool().type === ImageToolType.GenerativeFill && (
<Slider
sx={{
'& input[type="range"]': {
writingMode: 'vertical-lr',
direction: 'rtl',
// WebkitAppearance: 'slider-vertical',
},
}}
orientation="vertical"
min={genFillTool.sliderMin}
max={genFillTool.sliderMax}
defaultValue={genFillTool.sliderDefault}
size="small"
valueLabelDisplay="auto"
onChange={(e, val) => setCursorData(prev => ({ ...prev, width: val as number }))}
/>
)}
{currTool().type === ImageToolType.Cut && (
<Slider
sx={{
'& input[type="range"]': {
writingMode: 'vertical-lr',
direction: 'rtl',
// WebkitAppearance: 'slider-vertical',
},
}}
orientation="vertical"
min={cutTool.sliderMin}
max={cutTool.sliderMax}
defaultValue={cutTool.sliderDefault}
size="small"
valueLabelDisplay="auto"
onChange={(e, val) => setCursorData(prev => ({ ...prev, width: val as number }))}
/>
)}
</div>
{/* Undo and Redo */}
<div className="undoRedoContainer">
<IconButton
style={{ cursor: 'pointer' }}
onPointerDown={e => {
e.stopPropagation();
handleUndo();
}}
onPointerUp={e => e.stopPropagation()}
color={activeColor}
tooltip="Undo"
icon={<IoMdUndo />}
/>
<IconButton
style={{ cursor: 'pointer' }}
onPointerDown={e => {
e.stopPropagation();
handleRedo();
}}
onPointerUp={e => e.stopPropagation()}
color={activeColor}
tooltip="Redo"
icon={<IoMdRedo />}
/>
</div>
</div>
</div>
);
}
// circular pointer for drawing/erasing
function renderPointer() {
return (
<div
className="pointer"
style={{
left: cursorData.x,
top: cursorData.y,
width: cursorData.width,
height: cursorData.width,
}}>
<div className="innerPointer" />
</div>
);
}
// the previews for each edit
function renderEditThumbnails() {
return (
<div className="editsBox">
{edits.map(edit => (
<img
key={edit.url}
alt="image edits"
width={75}
src={edit.url}
onClick={async () => {
const img = new Image();
img.src = edit.url;
ImageUtility.drawImgToCanvas(img, canvasRef, img.width, img.height);
currImg.current = img;
parentDoc.current = edit.saveRes ?? null;
}}
/>
))}
{/* Original img thumbnail */}
{edits.length > 0 && (
<div style={{ position: 'relative' }}>
<label className="originalImageLabel">Original</label>
<img
alt="image stuff"
width={75}
src={originalImg.current?.src}
onClick={() => {
if (!originalImg.current) return;
const img = new Image();
img.src = originalImg.current.src;
ImageUtility.drawImgToCanvas(img, canvasRef, canvasDims.width, canvasDims.height);
currImg.current = img;
if (!parentDoc.current) parentDoc.current = originalDoc.current;
}}
/>
</div>
)}
</div>
);
}
// the prompt box for generative fill
function renderPromptBox() {
return (
<div>
<TextField
value={input}
onChange={e => setInput(e.target.value)}
disabled={isBrushing}
type="text"
label="Prompt"
placeholder="Prompt..."
InputLabelProps={{ style: { fontSize: '16px' } }}
inputProps={{ style: { fontSize: '16px' } }}
sx={{
backgroundColor: '#ffffff',
position: 'absolute',
bottom: '16px',
transform: 'translateX(calc(50vw - 50%))',
width: 'calc(100vw - 64px)',
}}
/>
</div>
);
}
return (
<div className="imageEditorContainer" style={{ display: imageEditorOpen ? 'flex' : 'none' }}>
{renderControls()}
{/* Main canvas for editing */}
<div
className="drawingArea" // this only works if pointerevents: none is set on the custom pointer
ref={drawingAreaRef}
onPointerOver={updateCursorData}
onPointerMove={updateCursorData}
onPointerDown={handlePointerDown}
onPointerUp={handlePointerUp}>
<canvas ref={canvasRef} width={canvasDims.width} height={canvasDims.height} style={{ transform: `scale(${canvasScale})` }} />
<canvas ref={canvasBackgroundRef} width={canvasDims.width} height={canvasDims.height} style={{ transform: `scale(${canvasScale})` }} />
{renderPointer()}
{renderSideIcons()}
{renderEditThumbnails()}
</div>
{currTool().type === ImageToolType.GenerativeFill && renderPromptBox()}
</div>
);
};
export default ImageEditor;
|