Svelte OutClick
onOutClick
A Svelte component that allows you to listen to the clicks that happen outside of an element.
Why choose this over the other packages?
- No extra wrapper
- Supports
class
prop - Exclude elements from triggering the event
- Half click support
- TypeScript support
Install
Please check out the CHANGELOG before updating to the newest version. Restart your app after the update.
How it works
It works the same as the Javascript click event. A few events are attached to the window and it checks whether the event target is contained within the element. If the element didn't contain the event target, it means the click happened outside of the element.
Props
Excluding elements
You may want to exclude some elements from triggering the event. For example, a button that opens a popup must be excluded, so the popup doesn't get closed immediately after you open it. Since the button that triggers the popup is located outside of the popup itself, in any time clicking on it will trigger the event.
excludeElements
- Type:
HTMLElement | HTMLElement[]
This prop expects HTML elements. Clicks on those elements (and their children) will be ignored. Learn about bind:this
.
This prop can receive a single element or an array of elements.
excludeQuerySelectorAll
- Type:
string
This prop expects a string of css selectors. Clicks on those elements (and their children) will be ignored.
This prop works the same as the querySelectorAll
method. It can contain any valid CSS selectors, for example: "#element1, .element2"
.
class
prop
- Type:
string
This is equivalent to the CSS class attribute. You can seamlessly utilize tools such as Tailwind CSS by adding your classes in the usual manner, without encountering any issues.
includeSelf
- Type:
boolean
- Default:
false
For example, if you want to close the dropdown when you click on any of its items, set the value of this option to true
, so a self-click can trigger the event.
halfClick
- Type:
boolean
- Default:
true
If true
, pointerdown
can solely determine the click outside. If false
, outclick will happen when pointerdown
and pointerup
events happen after each other, outside of the element.
tag
- Type:
string
- Default:
"div"
You can change the tag name of the wrapper element.
Custom attributes
You can add any custom attributes to the wrapper element.
No extra wrapper
Actually, there is an HTML <div>
wrapper, but it doesn't affect the layout because of display: contents
. If you use the class
prop, the default display will be automatically removed.
FAQ
Why are we not using the click
event to capture the outclick
event?
At first, we were using the click
event to capture the outclick
event, but later because of this issue we started using the mousedown
event instead; and later because of this issue we started using the pointerdown
even. Later I added the ability to use pointerup
event with the pointerdown
event to fully simulate the click event.
Learn more
keydown
event ondocument.body
is ignored because this is how it works when you useclick
event instead.keydown
event only triggers withEnter
,NumpadEnter
, andSpace
keys (because this is how it works when you use theclick
event instead).