npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jh-outside-click

v1.0.0

Published

outside click directive for vue

Downloads

5

Readme

jh-outside-click

Vue click outside directive.

Installation

$ npm install jh-outside-click

Example

main.js

import JhOutsideClick from 'jh-outside-click';
Vue.use(JhOutsideClick);

template

<div  v-jh-outside-click="todo">
  Todo
</div>

methods

methods:{
  todo(e){

  }
}

Blog

简体中文

In daily development, we often encounter such needs

Trigger an event when clicking outside a specific element

Specifically, when making a pop-up window, click on any part outside the pop-up window, such as the mask layer, the pop-up window is automatically closed.

Specific elementPopup content layer External elementEverything except the content layer

The conventional approach is to set the mask layer and the content layer is not a parent-child element, and then specifically register the click event on the mask layer, and when the mask layer is clicked, trigger the method of closing the pop-up window. This is actually a way to save the country by curve, but it only achieves the effect of triggering a specific event, and does not listen to clicks on external elements.

If at this time I said, there is no mask layer, then how to achieve it?

The method is actually very simple, isn't it an external element? We register the temporary event directly on the body to determine whether the click element is outside the specific element, and if so, trigger the close method.

How to register for a temporary event?

Registering events on the body is global, and every element is listened to. How can it be done temporarily?

We only need to remove the body listener in the close method, so we can temporarily listen.

How to judge whether it is an external element?

There are two ways, the first one is the simplest, using contains

node.contains( otherNode )

  • Whether node contains a otherNode node.
  • Whether otherNode is a descendant node of node.

Returns true if otherNode is a descendant node of node or the node node itself, otherwise returns false.

The second method is to use getBoundingClientRect

Element.getBoundingClientRect() ,returns the size of the element and its position relative to the viewport

By comparing the coordinates of the currently clicked element with the location information of the specific element, it can also be determined whether it is an external click.


Implemented on native javascript

document.body.append(this.el); // Insert popup content
// Add a custom attribute (method) on the pop-up window dom
this.el.__outsideClickEvent__ = e => {
  if (!this.el.contains(e.target)) {
    this.hide();
  }
};
setTimeout(() => {
  // Registration event
  document.body.addEventListener('click', this.el.__outsideClickEvent__);
});
hide(){
    // todo
    // Remove event
    document.body.removeEventListener('click', this.el.__outsideClickEvent__);
    // Delete attribute
    delete this.el.__outsideClickEvent__;
}

Implemented on vue On vue we use more custom instructions, as follows

directives: {
  'out-side-click': {
    bind(el, binding) {
      el.__outsideClickEvent__ = e => {
        // Can also be checked using getBoundingClientRect
        if (!el.contains(e.target)) {
          binding.value(e);
        }
      };
      setTimeout(() => {
        document.body.addEventListener('click', el.__outsideClickEvent__);
      });
    },
    unbind(el) {
      document.body.removeEventListener('click', el.__outsideClickEvent__);
      delete el.__outsideClickEvent__;
    },
  },
},
<div class="content" v-out-side-click="close"></div>

By the way

If there is no mask layer element, how do you achieve the translucent effect of the non-popular window area?

outline can help us solve the problem, set a size large enough.

{
  rgba(0,0,0,0.8) solid 9999px
}

Of course, if there is a need to do operational guidance, outline is also a good choice.