svelte-click-outside

1.0.0 • Public • Published

svelte-click-outside

Purpose

This is a small helper component that lets you listen for clicks outside of an element. For example, if you want to close a popup when the user clicks outside of it.

Basic Usage

Wrap the element in the <ClickOutside> component and listen for the clickoutside event:

  <script>
    function onClickOutside() {
      console.log('Clicked outside!');
    }
  </script> 
 
  <ClickOutside on:clickoutside={onClickOutside}>
    <div>Click Outside Me</div>
  </ClickOutside>

Exclusions

By default, clicking on any element outside of the wrapped element will cause the event to trigger. You can specify excluded elements that will not trigger the event. For example, a button that triggers a popup must be excluded. Otherwise, it will immediately close the popup when it is opened.

The ClickOutside component has an exclude prop that expects an array of DOM nodes. Clicks on those nodes or their children will be ignored.

Example: Show/hide panel

  <script>
    let triggerEl;
    let panelVisible = false;
 
    function togglePanel() {
      panelVisible = !panelVisible;
    }
 
    function hidePanel() {
      panelVisible = false;
    }
  </script> 
 
  <button bind:this={triggerEl} on:click={togglePanel}>Click Me</button>
 
  <ClickOutside on:clickoutside={hidePanel} exclude={[triggerEl]}>
    <div hidden={!panelVisible}>I'm a panel!</div>
  </ClickOutside>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    543
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    543

Package Sidebar

Install

npm i svelte-click-outside

Weekly Downloads

543

Version

1.0.0

License

MIT

Unpacked Size

28.7 kB

Total Files

8

Last publish

Collaborators

  • joeattardi