Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mask is does'nt showing the first time #579

Open
Djibdjib opened this issue Feb 6, 2024 · 6 comments
Open

Mask is does'nt showing the first time #579

Djibdjib opened this issue Feb 6, 2024 · 6 comments

Comments

@Djibdjib
Copy link

Djibdjib commented Feb 6, 2024

Hi and thx for this tool !

When i open the crop in a modal, the mask is not showed the first time. If i close the modal and re open, all is perfect...

Thx for your help.

@Djibdjib
Copy link
Author

Djibdjib commented Feb 6, 2024

Ok i found the solution, i use the onLoad attribute on the image to set the crop values. It works !

@immanu10
Copy link

immanu10 commented Feb 6, 2024

@Djibdjib I'm facing the same issue even though I'm using the onLoad attribute. Do you mind sharing what exactly you did to fix it?

@Djibdjib
Copy link
Author

Djibdjib commented Feb 6, 2024

@immanu10 Yeah of course !

const onImageLoad = () => {
        setCrop({
            unit: "%",
            width: currentFile.crop.w || 50,
            height: currentFile.crop.h || 50,
            x: currentFile.crop.x || 25,
            y: currentFile.crop.y || 25,
        });
    };
<ReactCrop
                key={crop}
                crop={crop}
                onChange={(c, p) => onChangeCrop(c, p)}
                className="inline-block rounded-lg"
                keepSelection={true}
                ruleOfThirds={true}
            >
                <img src={currentSrcImage} className="rounded-t-lg" onLoad={onImageLoad} />
            </ReactCrop>

@yuhao-wong
Copy link

yuhao-wong commented Feb 14, 2024

Adding some context to this - setting the crop onImageLoad didn't work for me.
The crop dimensions will be correctly set, but the mask itself will be broken.

If you inspect the DOM when this happens, it seems like the of the mask SVG has 0x0 dimensions.
I was able to force refresh it on load by doing
document.querySelector(".ReactCrop__crop-mask")?.setAttribute("height", "100%")

I'm curious if there is a better way around this. I am unable to consistently reproduce this issue.
image

@sekoyo
Copy link
Owner

sekoyo commented Feb 15, 2024

Adding some context to this - setting the crop onImageLoad didn't work for me. The crop dimensions will be correctly set, but the mask itself will be broken.

If you inspect the DOM when this happens, it seems like the of the mask SVG has 0x0 dimensions. I was able to force refresh it on load by doing document.querySelector(".ReactCrop__crop-mask")?.setAttribute("height", "100%")

I'm curious if there is a better way around this. I am unable to consistently reproduce this issue. image

Is this in a modal as well? Does your modal have some opening animation that changes the height?

@yuhao-wong
Copy link

Yes its in a modal, but I am rendering it with React.createPortal.
No animation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants