Skip to content

Commit

Permalink
fix: error handling and removing the events in read only mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Palanikannan1437 committed Oct 3, 2024
1 parent 83933ec commit 6f13c19
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ export const CustomImageBlock: React.FC<CustomImageBlockProps> = (props) => {
const containerRect = useRef<DOMRect | null>(null);
const imageRef = useRef<HTMLImageElement>(null);

const updateAttributesSafely = useCallback(
(attributes: Partial<ImageAttributes>, errorMessage: string) => {
try {
updateAttributes(attributes);
} catch (error) {
console.error(`${errorMessage}:`, error);

Check notice on line 79 in packages/editor/src/core/extensions/custom-image/components/image-block.tsx

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/editor/src/core/extensions/custom-image/components/image-block.tsx#L79

Detected string concatenation with a non-literal variable in a util.format / console.log function.
}
},
[updateAttributes]
);

const handleImageLoad = useCallback(() => {
const img = imageRef.current;
if (!img) return;
Expand Down Expand Up @@ -105,12 +116,18 @@ export const CustomImageBlock: React.FC<CustomImageBlockProps> = (props) => {
};

setSize(initialComputedSize);
updateAttributes(initialComputedSize);
updateAttributesSafely(
initialComputedSize,
"Failed to update attributes while initializing an image for the first time:"
);
} else {
// as the aspect ratio in not stored for old images, we need to update the attrs
setSize((prevSize) => {
const newSize = { ...prevSize, aspectRatio };
updateAttributes(newSize);
updateAttributesSafely(
newSize,
"Failed to update attributes while initializing images with width but no aspect ratio:"
);
return newSize;
});
}
Expand Down Expand Up @@ -142,7 +159,7 @@ export const CustomImageBlock: React.FC<CustomImageBlockProps> = (props) => {

const handleResizeEnd = useCallback(() => {
setIsResizing(false);
updateAttributes(size);
updateAttributesSafely(size, "Failed to update attributes at the end of resizing:");
}, [size, updateAttributes]);

const handleResizeStart = useCallback((e: React.MouseEvent | React.TouchEvent) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,9 @@ export const CustomImageUploader = (props: {
return (
<div
className={cn(
"image-upload-component flex items-center justify-start gap-2 py-3 px-2 rounded-lg text-custom-text-300 hover:text-custom-text-200 bg-custom-background-90 hover:bg-custom-background-80 border border-dashed border-custom-border-300 cursor-pointer transition-all duration-200 ease-in-out",
"image-upload-component flex items-center justify-start gap-2 py-3 px-2 rounded-lg text-custom-text-300 bg-custom-background-90 border border-dashed border-custom-border-300 transition-all duration-200 ease-in-out cursor-default",
{
"hover:text-custom-text-200 cursor-pointer": editor.isEditable,
"bg-custom-background-80 text-custom-text-200": draggedInside,
"text-custom-primary-200 bg-custom-primary-100/10 hover:bg-custom-primary-100/10 hover:text-custom-primary-200 border-custom-primary-200/10":
selected,
Expand All @@ -153,7 +154,7 @@ export const CustomImageUploader = (props: {
onDragLeave={onDragLeave}
contentEditable={false}
onClick={() => {
if (!failedToLoadImage) {
if (!failedToLoadImage && editor.isEditable) {
fileInputRef.current?.click();
}
}}
Expand Down

0 comments on commit 6f13c19

Please sign in to comment.