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-native-yaimage

v1.2.1

Published

Yet another Image component for React Native with images cached into file system

Downloads

5

Readme

react-native-yaimage

npm version npm downloads David

Yet another Image component for React Native with images cached into file system.

Simple and flexible.

Installation

  1. npm install react-native-yaimage --save

  2. Link react-native-fetch-blob which is a dependency:

    react-native link react-native-fetch-blob

Usage

  • Just replace Image with YaImage, add renderLoadingIndicator prop to control the UI for feedback, e.g.

    import YaImage from 'react-native-yaimage';
    
    <YaImage
      source={{ uri: 'https://facebook.github.io/react-native/img/react-native-congratulations.png' }}
      style={styles.image}
      renderLoadingIndicator={() => <Text>Loading...</Text>}
    />
  • Not using Image component? imageComponent comes to rescue, e.g. ResponsiveImage or PhotoView

    // ResponsiveImage
    <YaImage
      source={{ uri: 'https://facebook.github.io/react-native/img/react-native-congratulations.png' }}
      style={styles.image}
      initWidth="138"
      initHeight="138"
      renderLoadingIndicator={() => <Text>Loading...</Text>}
      imageComponent={ResponsiveImage}
    />
    
    // PhotoView
    <YaImage
      source={{ uri: this.props.image }}
      minimumZoomScale={0.5}
      maximumZoomScale={3}
      androidScaleType="centerInside"
      onLoad={() => console.log('Image loaded!')}
      style={[{ width: this.props.width, height: this.props.height }, iosImageStyle]}
      onTap={Actions.pop}
      renderLoadingIndicator={() => <Text>Loading...</Text>}
      imageComponent={PhotoView}
    />
  • Cache operations

    import imageCache from 'react-native-yaimage/cache';
    
    imageCache.clear().then(() => console.log('cleared'));
    imageCache.size().then(v => console.log(`${v} bytes`));

Props

  • ...Image.propTypes - Image Props

  • renderLoadingIndicator - func What to show when loading

  • renderLoadError - func What to show when load error, defaults to renderLoadingIndicator

  • imageComponent - func Which component class to use as the Image component, defaults to Image

  • renderLoadedImage - func What to show when loaded, arguments passed are props of this component instance, source with the uri of the cached file; defaults to (props, source) => React.createElement(props.imageComponent, { ...props, source })

  • fetchTimeout - number timeout for remote fetching, defaults to 30000(ms)

  • cachePathPattern - string Where to store the loaded, a template interpolated with options {uri, MD5}, uri is the remote URI, MD5 is the hash function; defaults to '${uri.hostname()}/${MD5(uri.toString())}${uri.suffix() ? ("." + uri.suffix()) : ""}', that means... e.g. https://facebook.github.io/react-native/img/react-native-congratulations.png will be cached at cacheRoot/facebook.github.io/06d46276f7fb741e7ebd0dfee4ca8d6a.png. You can customize it if you know what you are doing.

What if a remote uri without suffix?

Easy! I do my best to handle it for you. But how? no magic but resort to Content-Type of the HTTP response, e.g. with the default cachePathPattern, http://localhost:9000/ebooks/5805f2d9dc8877b70da04a2a/figures/10 will be cached at cacheRoot/localhost/9375a0b9b094e04bcf0d9448f2400036.jpg if the Content-Type is image/jpeg.

Alternatives