Coder Social home page Coder Social logo

mjdease / preact-resize-observer Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 1.0 4.22 MB

Element resize event for Preact

Home Page: https://mjdease.github.io/preact-resize-observer/demo/

License: MIT License

TypeScript 92.05% JavaScript 7.95%
preact preact-components resize-observer typescript

preact-resize-observer's Introduction

preact-resize-observer

Build Status codecov npm version

Watch an element for changes to its size. Supports modern browsers and IE9+.

This is a Preact component wrapper for the excellent ResizeObserver polyfill.

Demo

Installation

npm install preact-resize-observer

Example

import { Component } from 'preact';
import ResizeObserver from 'preact-resize-observer';

export default class App extends Component {
  handleResize = (width, height) => {
    // Current width and height of the .fluid-content element
    console.log(`width: ${width}, height: ${height}`)
  }

  render(props) {
    return (
      <ResizeObserver class="fluid-content" onResize={this.handleResize}>
        <p>{props.content}</p>
      </ResizeObserver>
    );
  }
}

Prop Types

Property Type Default Description
onResize Function Required. Callback invoked whenever the observed element changes size. (width: number, height: number): void
horizontal boolean true Observe changes to the width
vertical boolean true Observe changes to the height
tag string 'div' The HTML tag to render this component as
element Element The element to observe the size of. If not specified the element rendered by this component will be observed
initial boolean true Controls if onResize will be invoked when the element is first observed (typically on mount). Set to false to disable this initial call.
innerRef function Get reference to the rendered element. (element: Element): void

Changelog

1.0.0 (24/06/2018)

  • Change component design to be used as part of regular page markup:
    • Change to observe size of self by default (previously parent was observed)
    • Add support to render children
    • Add tag prop to control the tag to render as
    • Add innerRef prop to get a reference to the actual DOM node
    • Change prop names to avoid clashing with standard HTML attributes
  • Distribute ES module

0.1.1 (31/05/2018)

  • Fixed package dependencies
  • Fixed component types for Preact 8.2.9

0.1.0 (20/03/2018)

  • Initial Release

Licence

preact-resize-obsever is available under the MIT License.

preact-resize-observer's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

itsjamie

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.