-
-
Notifications
You must be signed in to change notification settings - Fork 334
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
fix(modal): Hiding dimmer with multiple modals #2444
base: develop
Are you sure you want to change the base?
Conversation
…imation complete instead of animation start.
Thanks for the PR, it basically works. However, hiding the dimmer after (even if just one) modal is hidden, is somehow disturbing the design/flow of the modal. |
…ultiple modal, also do dimmer check on hide animation complete.
Good catch, the my change caused the modal hide animation to start only once the modal was hidden. I've made the change you suggested and it does appear to work. If this edge case is reached, the dimmer will still start to hide once the modal is hidden, but I guess that's better than previous behavior of the dimmer not hiding at all. One potential catch with this change, if you display a single modal with I'd like to add a condition to prevent this, but I'd need some way to know if the dimmer is animating out as opposed to just simply animating (which is what it's doing now by calling the dimmer's |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see my comment.
Regarding "avoid the debug info by checking for the 'out' class"
Well, the hideDimmer function does also support not using css classes but JS animation, so if someone possibly uses dimmerSettings: {useCss:false}
checking for the 'out' class won't work.
The issue you mention actually comes from the "hideAll" function rather than your new change in the onComplete method.
So, instead, i suggest to check if "hide dimmer" is still in progress.
You can accomplish this by centrally adjusting the hideDimmer
method as follows :
First: create new module wide variable isHiding
Snippet:
time = new Date().getTime(),
performance = [],
isHiding = false,
Second: Let the dimmers hide method return false in case the dimmer cannot be hidden
Fomantic-UI/src/definitions/modules/dimmer.js
Line 218 in 86121ef
return; |
-> change to
return false;
Fomantic-UI/src/definitions/modules/dimmer.js
Lines 225 to 226 in 86121ef
module.debug('Dimmer is not visible'); | |
} |
-> change to
module.debug('Dimmer is not visible');
return false;
}
Third: Adjust the hideDimmer method to check for that variable and take care of falsy return like this
Snippet
hideDimmer: function() {
if(!isHiding && ($dimmable.dimmer('is animating') || ($dimmable.dimmer('is active'))) ) {
isHiding = true;
module.unbind.scrollLock();
if($dimmable.dimmer('hide', function() {
isHiding = false;
module.restore.bodyMargin();
module.remove.clickaway();
module.remove.screenHeight();
}) === false) { isHiding = false;};
}
else {
module.debug('Dimmer is not visible cannot hide');
return;
}
},
if(!module.others.active() && !module.others.animating() && !keepDimmed) { | ||
module.hideDimmer(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please move this code where it was before (at the top of onStart), so this does not become an unnecessary change ? (Yes, logical wise it does not matter, but let's reduce changes to the minimum where needed 🙂 (also keeps the git history more clean)
@mareeo Will you continue to work on this? |
I plan to, just limited on time currently. Thanks for the detailed reply and suggestion, I'll give it a go once I have time |
Description
This PR moves the check for other active/animating modals to hide the dimmer to the hide animation complete instead of the hide animation start.
Testcase
https://jsfiddle.net/xmd9eht6/
Screenshot
Original
After change
Closes
#2441