Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

snabbdom-delayed-class

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snabbdom-delayed-class

Snabbdom class module with support for delayed/on-remove class updates

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
262
decreased by-5.42%
Maintainers
1
Weekly downloads
 
Created
Source

snabbdom-delayed-class

Replacement module for Snabbdom's core class module. It is backwards-compatible with the existing module, but adds functionality for delaying class updates and updating classes before removing elements, similar to the core style module. These capabilities are useful for constructing animations using CSS classes/stylesheets, instead of inline styles.

Installation/usage

Install package: npm install --save snabbdom-delayed-class

Import/require snabbdom-delayed-class and pass it to snabbdom.init() instead of the core class module:

import snabbdom from 'snabbdom';
import snabbDelayedClass from 'snabbdom-delayed-class';

const patch = snabbdom.init([
  snabbDelayedClass,
  // other modules
]);

Delayed classes

Classes under delayed are not changed until the next frame:

h('div', {class: {
  fadedout: true,
  delayed: {fadedout: false},
}, 'Fading in');

Set classes on remove/destroy

Class changes under remove are applied when the element is about to be removed from the DOM. The delayRemove property specifies the number of milliseconds to wait before removing the element (to permit any CSS transitions or animations to finish):

h('div', {class: {
  fadedout: false,
  remove: {fadedout: true, delayRemove: 300},
}, 'Fading out');

The destroy property works similarly but has no delayRemove property; it is assumed that removal delay will be managed by the ancestor node whose removal caused the destroy call on descendents.

Local development

  • npm install
  • npm test

License

MIT

Keywords

FAQs

Package last updated on 19 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc