43

Vue.js hunt for perfect modal

 5 years ago
source link: https://www.tuicool.com/articles/hit/iQ732yI
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
fMB3E3A.png!web

Hey. Today we will pursue our dream of a perfect modal. Perfect means:

  • It floats above everything else.
  • Is not blocking.
  • Supports nesting of any depth.
  • Doesn’t collide with other elements on the page.

Seems easy enough, right? Let’s glance over different solutions I harbored.

Full screen overlay

vym2Qr7.gif

For this solution we create invisible overlay over a whole window. Overlay catches all clicks.

Template

Style

Looks fine, doesn’t it? Except that it’s blocking… Which means that, in order to open another modal, a user has to close the current one. That’s 2 actions and we can do better.

Here’s the component code .

Stop propagation + document event

uuyEZnA.gif

For this approach we attach a click event handler to document.body , we also prevent click event propagation on modal click.

Template

Script

The downside is that any other modal will prevent bubbling to document .

Meaning no nesting ¯\_(ツ)_/¯ .

Here’s the component code .

Document event + event target check

Ok. This is an ultimate solution. For the most part it’s the same as a previous one. Only that we won’t prevent propagation. And instead we’ll check the event.target .

Template

Template is regular. Nothing special here.

Script

We check, if a click landed on a child. In case it didn’t — modal hides itself.

Here’s the component code .

Let’s test our modal.

  • ✔ It floats above everything else.
  • ✔ Is not blocking.
  • ✔ Supports nesting of any depth.
  • ✔ Doesn’t conflict with other elements on the page.

Done.

Check the source code if you’re looking for complete components.

Tell me if anything is wrong or this modal is not nearly perfect in your opinion. : 3

Connect Deeper

If you like what you just read, please subscribe to our newsletter to get more content from Epicmax and bonus code that will give you a discount for first 30 days working with us.


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK