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

react-zoom-images

v0.0.1

Published

image zoom for React

Downloads

4

Readme

react-image-zoom

Forked from react-medium-image-zoom

This library is a different implementation of Medium.com's image zoom that allows for a low-res and high-res images to work together for “zooming” effects and works regardless of parent elements that have overflow: hidden or parents with transform properties. Versions >=3.0.0 are compatible with React.js >=16.x; if you need compatibility with react@^0.14.0 || ^15.0.0, please use version 2.x.

You can view the demo here.

demo

Installation

$ npm install --save react-medium-image-zoom

Usage

import ImageZoom from 'react-medium-image-zoom'

function MyComponent(props) {
  return (
    <div>
      <p>Some text...</p>

      <ImageZoom
        image={{
          src: 'bridge.jpg',
          alt: 'Golden Gate Bridge',
          className: 'img',
          style: { width: '50em' }
        }}
        zoomImage={{
          src: 'bridge-big.jpg',
          alt: 'Golden Gate Bridge'
        }}
      />

      <p>Some text...</p>
    </div>
  )
}

| Prop | Type | Required | Default | Details | | --- | --- | --- | --- | --- | | image | object | yes | none | The original image by default | | zoomImage | object | no | image | The image to be used for zooming | | originalImage | string | no | image | Specify the original image (image, zoomImage) | | zoomTransitionDuration | number | no | 300ms | Animation time when opening the zoomImage | |unzoomTransitionDuration | number | no | 300ms | Animation time when closing the zoomImage | | zoomMargin | number | no | 40 | Pixel number to offset zoomed image from the window | | isZoomed | boolean | no | false | For more direct control over the zoom state | | shouldHandleZoom | func | no | (event) => true | Pass this callback to intercept a zoom click event and determine whether or not to zoom. Function must return a truthy or falsy value | | shouldReplaceImage | boolean | no | true | Once the image has been "zoomed" and downloaded the larger image, this replaces the original image with the zoomImage | | shouldRespectMaxDimension | boolean | no | false | When true, don't make the zoomed image's dimensions larger than the original dimensions. Only supported if no zoomImage is provided. Will also disable the zooming if the image's is already rendered at its maximum width & height | | defaultStyles | object | no | {} | For fine-grained control over all default styles (zoomContainer, overlay, image, zoomImage) | | onZoom | func | no | () => {} | Pass this callback to respond to a zoom interaction. | | onUnzoom | func | no | () => {} | Pass this callback to respond to an unzoom interaction. |

Each one of these image props accepts normal image props, for example:

| Prop | Type | Required | Details | | ------ | ---- | ------- | ------- | | src | string | yes | The source for the image | | alt | string | no | The alt text for the image | | className | string | no | Classes to apply to the image | | style | object | no | Additional styles to apply to the image | | ... | ... | no | ... |

Controlled vs Uncontrolled Modes

Similar to how an <input /> works in React, if the consumer initially chooses to control the isZoomed value, then this means the consumer is now responsible for telling the component the value of isZoomed. If the consumer instantiates the component with a non-null isZoomed value and subsequently does not pass a value for it on updates, then an error will be thrown notifying the consumer that this is a controlled component.

The reverse is true, as well. If the component is instantiated without an isZoomed value, then the component will handle its own isZoomed state. If a non-null isZoomed prop is passed after instantiation, then an error will be thrown notifying the consumer that this component controls its own state.

Browser Support

Currently, this has only been tested on the latest modern browsers. Pull requests are welcome.

Development

The source code is located within the src directory. Use $ npm run build to build the main file as well as the example during development and/or use $ npm run dev to have it watch for changes to src/ and example/src.

You can view the built example as a file via $ open example/build/index.html, or you can use $ npm run dev to start a local dev server and navigate to http://localhost:3000.

Storybook

This project's different options and use cases are documented in storybook. You can use this in dev like so:

  • $ yarn run storybook (or $ npm run storybook)
  • navigate to http://localhost:6006

The page should look like this:

image

Contributing

  1. Check out the issues
  2. Fork this repository
  3. Clone your fork
  4. Check out a feature branch ($ git checkout -b my-feature)
  5. Make your changes
  6. Run $ yarn run build to compile your changes and build the example
  7. Test your example (see the "Development" section above)
  8. Push your branch to your GitHub repo
  9. Create a pull request from your branch to this repo's X-0-stable branch (where X is the correct major version you're targeting)
  10. When all is merged, pull down the upstream changes to your master
  • $ git remote add upstream [email protected]:rpearce/react-medium-image-zoom.git
  • $ git fetch upstream
  • $ git merge upstream/master
  1. Delete your feature branch

Contributors

Thanks goes to these wonderful people (emoji key):

| Cameron Bothner💻 📖 🐛 💡 🤔 👀 ⚠️ | Jeremy Bini💻 🐛 | ismay🐛 🤔 | Rajit Singh🐛 | Roberto Saccon🐛 | wtfdaemon🐛 | Robert Pearce💻 💬 ⚠️ 🐛 💡 🎨 👀 🤔 📖 | | :---: | :---: | :---: | :---: | :---: | :---: | :---: | | Josh Sloat🐛 💻 💡 👀 🤔 📖 🎨 💬 | Aswin💬 | Alex Shelkovskiy🐛 | Adrian Bindiu🐛 | Kendall Buchanan🐛 | Kaycee💻 | Anuj🐛 💬 | | Ludwig Frank🐛 💻 |

This project follows the all-contributors specification. Contributions of any kind welcome!