Giter VIP home page Giter VIP logo

react-simple-surveyor's Introduction

@mapbox/react-simple-surveyor

Simple higher-order React component for simple measurements of a component's available width.

simple surveyor

Usage

const survey = require('@mapbox/react-simple-surveyor');

function Original(props) {
  // The wrapped component receives a `width` prop,
  // telling it how much width is available to it.
  return <div>Available width: {props.width}px.</div>;
}

const Surveyed = survey(Original);

// When the window is resized, the width is resurveyed.
// You can also trigger a resurvey manually, on all surveyed components,
// when there are programmatic layout changes.
survey.resurvey();

// All props provided to `Surveyed` will be passed along
// to your `Original` component.
<Surveyed className="green" aria-label="green box" title="Green!" />;

// Your `Original` component is available on the
// `WrappedComponent` static property of the returned
// React component class.
Surveyed.WrappedComponent === Original;

Details and caveats

  • Built for block-level elements, since those are the ones whose width is determined by their container. Wraps your component in a <div>.
  • Upon mounting, initially renders an empty <div>. This makes no perceptible difference for the user, but might affect some other complicated stuff you have going on.

Why use this instead of the many other dimension-measuring higher-order components?

There are lots of other modules that do similar things: react-measure, react-dimensions, react-measure-it, react-with-dimension, react-container-dimensions, react-element-queries, react-element-query, etc.

This module's goal is to provide the smallest and simplest way to measure the available width. Pretty much all of the other modules I've found are larger and more ambitious. The fundamental problems of measuring are not super difficult, so I think that a variety of modules with different APIs are kind of inevitable.

The closest I've found to this module's simplicity is react-with-available-width.

If this module doesn't suit your needs, you should try one of the others!

Development

The most efficient way to test this module is with a quick manual review. So npm start or npm test both start a development server that shows a page of test cases. Check these before you commit changes. Add more test cases as needed.

react-simple-surveyor's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-simple-surveyor's Issues

Configurable behavior for initial rendering

Right now the initial rendering (when width isn't known) is always an empty <div>. Then after componentDidMount (when width is known), that <div> is populated. This means that server-side rendering always produces an empty <div>.

The intention of rendering null is to allow your component to make informed decisions with a width, instead of having to deal with width being undefined. If your rendering output is different based on width, it wouldn't be nice to have an initial rendering (without width knowledge) that does one thing, then the next rendering (with width knowledge) doing another.

However, it would be nice to make this behavior configurable. Sometimes we do know what we'd want to do for that initial rendering (which may be part of a server-side rendering process), so ca safely deal with an undefined width. Our WrappedComponent could receive the prop width: undefined, and determine what to do based on that.

cc @kepta @colleenmcginnis

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.