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

@blueking/fork-resize-detector

v0.0.2

Published

Element resize detection, both modern way and cross browser.

Downloads

52

Readme

Resize Detector

This project is basically a modified version of sdecima/javascript-detect-element-resize including these changes:

  • Try to utilize native ResizeObserver first.
  • Adopt Mutation-based approach to track detaching/attaching in both DOM trees and render trees (see que-etc/resize-observer-polyfill).
  • Use ES Modules.
  • Put most CSS content inside a separate .css file.
  • Drop support for IE8 and below.
  • Make the package available from npm.

Installation

$ npm i --save resize-detector

Usage

import { addListener, removeListener } from 'resize-detector'

// adding listener
addListener(elem, callback)

// removing listener, callback can be omitted to indicate that
// all event listeners should be removed
removeListener(elem, callback)

this inside callback function is the element whose size has been changed, also callback receive element as first argument.

Heads up

As resize-detector is published in both ES Module & CommonJS format and when you use webpack to bundle your app, the ESM version will be imported. It is not transpiled by Babel or similar tools so you have to transpile it in your build process.

For webpack with babe-loader you need to add it to the include field of the options:

// ...
{
  test: /\.js$/,
  loader: 'babel-loader',
  include: [
    // other stuff to be transpiled
    // ...
    path.resolve('node_modules/resize-detector')
  ]
}
// ...

If you are using other toolchain, just configure your bundler similarly so that resize-detector will be transpiled during build process.


Limitations and caveats

  • Is polyfill?

    No.

  • Native first

    Yes.

  • Strategy

    Scroll-based + Mutation-based.

  • Pros

    • Small size.
    • Minimal limitations.
  • Side effects

    • Targets with position: static will become position: relative.
    • Several hidden elements will be injected into the target elements.

Comparison with other projects

sdecima/javascript-detect-element-resize

  • Is polyfill?

    No.

  • Native first

    No.

  • Strategy

    Scroll-based.

  • Pros

    • Small size.
    • Higher performance comparing to hidden <object>s.
    • Compatible with down to IE7.
  • Side effects

    • Targets with position: static will become position: relative.
    • Several hidden elements will be injected into the target elements.
  • Limitations

    • Cannot track detach/attach or visibility change on IE10 and below.

que-etc/resize-observer-polyfill

  • Is polyfill

    Yes.

  • Native first

    Yes.

  • Fallback Strategy

    Use MutationObserver to observe every mutation in a document. For IE9/10, use Mutation Events instead.

  • Pros

    • Small size.
    • Minimal side effects on target elements.
    • Can track detaching/attaching in both DOM trees and render trees as soon as it's triggered by DOM mutation.
  • Limitations

    • Need extra transition event handling to catch size change from user interaction pseudo classes like :hover.
    • Delayed transitions will receive only one notification with the latest dimensions of an element.

developit/simple-element-resize-detector

  • Is polyfill

    No.

  • Native first

    No.

  • Strategy

    Listen to resize events via hidden <iframe>s.

  • Pros

    Dead simple.

  • Side effects

    • Targets with position: static will become position: relative.
    • Several hidden elements will be injected into the target elements.
    • Relatively low performance.
  • Limitations

    • Inapplicable for void elements.
    • Cannot track detach/attach or visibility change.

pelotoncycle/resize-observer

  • Is polyfill?

    Yes.

  • Native first

    Yes.

  • Fallback Strategy

    Long polling through requestAnimationFrame or setTimeout.

  • Pros

    Dead simple.

  • Side effects

    • Might be not so performant by checking rendered sizes in each animation frame.

wnr/element-resize-detector

  • Is polyfill?

    No.

  • Native first

    No.

  • Strategy

    Either hidden <object>s or scroll-based.

  • Pros

    Two approaches available (Really, why?) with scroll-based approach being much faster than hidden <object>s.

  • Side effects

    • Targets with position: static will become position: relative.
    • Several hidden elements will be injected into the target elements.
  • Limitations

    • Package size is relatively large.
    • Inapplicable for void elements.
    • Cannot track detach/attach or visibility change.