Skip to content

vdux-components/css-emulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

css-emulator

js-standard-style

Emulate CSS UI state change events (hover, active, focus)

Installation

$ npm install vdux-css-emulator

Usage

This is a low level library intended to simulate the hover/active/focus CSS selectors using local component state and DOM events. Here's how you use it:

function render ({local}) {
  return <CSSEmulator tag='button' onHoverChange={local(highlightButton)}>Hover me</CSSEmulator>
}

API - props

  • tag - The HTML tag or component that you want to render (e.g. button)
  • onHoverChange - Receives a boolean for hover state
  • onActiveChange - Receives a bool for active state
  • onFocusChange - Receives a bool for focus state
  • onLingerChange - Receives a bool for linger state
  • lingerDelay - How long to wait to trigger the lingerChange event. Defaults to 500 milliseconds.

Linger state

Sometimes you want to do something only if the user hovers for a short period of time (i.e. not immediately). onLingerChange provides this primitive for you, and allows you to do something in response to the mouse 'lingering' over an element.

Why can't I just use onMouseEnter/onMouseLeave?

Unfortunately this is not robust. Under certain circumstances if the mouse is moving quickly or if you do weird things like switch tabs while the mouse is hovering, you may not get a mouseleave event, and your hovered thing will stay open forever (or until you mouse back over and off again). This addresses this issue and similar issues with the 'active' state.

License

MIT