Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React native Image prefetch

Tags:

react-native

I am having difficulties to understand Image prefetch. In the doc's there is not much explanation about it:

"Prefetches a remote image for later use by downloading it to the disk cache"

Could you please help me understand the following about Image prefetch:

  1. Suppose a user uploads a profile image, and the image's URL is stored in the AsyncStorage.

    • Should I run Image.prefetch(UserStore.profileImageUrl) only once after successful upload. And use prefetched image in the components normally like <Imagesource={{uri: UserStore.profileImageUrl}}/>

    • Or should I always run Image.prefetch(UserStore.profileImageUrl) before using that image in the component, then only run <Imagesource={{uri: UserStore.profileImageUrl}}/>

  2. Suppose, later on, the user changes their profile image by uploading a new image and after successful upload, I will prefetch the new image. Will the previously cached image still exist on the disk?

    • If yes, won't it occupy a lot of space in the device if there are lots of prefetched images?
  3. Is there any way to manually remove the prefetched image from the disk?

With the above questions in mind, if there are alternate solutions to achieve caching of images when using react native with expo, could you please help me with it.

like image 921
Robin Avatar asked Sep 20 '17 05:09

Robin


People also ask

How do I cache images in React Native?

When writing apps with React Native you have access to the built-in Image component. React Native's Image component handles image caching like browsers for the most part. If the image is returned with a Cache-Control header than that will determine the caching behaviour.

How do I stretch an image in React Native?

Image scaling in React Native app According to documentation about React Native Images, you need to use resize Mode props('cover', 'contain', 'stretch', 'repeat', 'center').


2 Answers

It was indeed a question that I was dealing with for a while, and I learned a few things about Image.prefetch:

In the current React-Native version (0.48), this method is still in progress. To be more precise:

  • the ios implementation is still incomplete.
  • There is no complete guide on it.
  • There is no way to clear cache (you can check if the url is cached, however as far as I know you cannot clear it now).

As a result, I don't suggest you use it. Regardless, if you want to know how the API works, it is how:

Purpose

The purpose is quite obvious I think, this API:

Prefetches a remote image for later use by downloading it to the disk cache

It means that you can use Image.prefetch(url) in your constructor or componentWillMount. It tries to fetch image asynchronically, then, render your page with some kind of an ActivityIndicator, Finally, when the image is successfully fetched you can re-render your component.

Image.prefetch(url) actually saves the image to disk (not memory), as a result, whenever or wherever you try to use

<Image source={{uri:url}}/>

At firsts it checks the list of caches urls, if you have prefetched that url before (and it is located on the disk), it won't bother to re-fetch (unless you run function `Image.prefetch(url)' again (I am not sure if it works properly).

The implications of this issue are so complicated. It means that if you prefetch an image inside one component (for example <Component1/>), when you try to show this specific image in another component (for example <Component12>), It won't fetch the image and just uses the disk cache.

Therefore, either don't use this Image.prefetch at all (until there is a complete API, with cache control) or use it at your own risk.

  • on Android

On Android, you have 3 APIs for prefetch, and only one of them is presented in the documentation:

  1. prefetch:

    var response = Image.prefetch(imageUrl,callbackFunction)
    

Image.prefetch can have an optional second argument callbackFunction, which a function that runs Before fetching image. It can be written in the following format:

    var response = Image.prefetch(imageUrl,()=>console.log('Image is being fetched'))

It might be worthy to note that, callbackFunction can have an argument called requestId, (indicating the number of prefetch among all other prefetches) which can be then used to abort the fetch.

    var response = Image.prefetch(imageUrl,(id)=>console.log(id))

Moreover, response is a promise, you can use .then to do more after the image is pre-fetched.

  1. abortPrefetch

     Image.abortPrefetch(requestId) ;
    

used to abort the pending prefetch. requestId used as argument is the same as the one seen in prefetch.

  1. queryCache

      Image.queryCache([url1,url2, ...])
        .then((data)=>console.log(data));
    

Used to check if a certain url is already cached, and if so where is it cached (disk or memory)

  • on IOS

I think that only Image.prefetch(url) is currently available on IOS, and there is no callback function to be called as the second argument.

like image 100
Moji Izadmehr Avatar answered Oct 07 '22 17:10

Moji Izadmehr


if there are alternate solutions to achieve caching of images when using react native with expo, could you please help me with it.

You may be interested in my higher order component module that adds performance related image caching and "permanent cache" functionality to the native <Image> component.

React Native Image Cache HOC

Tl;DR Code Example:

import imageCacheHoc from 'react-native-image-cache-hoc';
const CacheableImage = imageCacheHoc(Image);

export default class App extends Component<{}> {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>Welcome to React Native!</Text>
        <CacheableImage style={styles.image} source={{uri: 'https://i.redd.it/rc29s4bz61uz.png'}} />
        <CacheableImage style={styles.image} source={{uri: 'https://i.redd.it/hhhim0kc5swz.jpg'}} permanent={true} />
      </View>
  );
  }
}

The first image will be cached until the total local cache grows past 15 MB (by default) then cached images are deleted oldest first until total cache is below 15 MB again.

The second image will be stored to local disk permanently. People use this as a drop in replacement for shipping static image files with your app.

Personally I would not overcomplicate things by writing over files over and over when the file changes, that's just asking for a massive headache. Instead I would create a unique filename for each upload. So the user's profile pic the first time they upload is "profile-uniqueIdHere.jpg" and when they change their profile pic you just create a new file "profile-anotherUniqueIdHere.jpg" and update their user data to reflect the new file location. For help with creating unique Ids look at react-native-uuid.

like image 2
billmalarky Avatar answered Oct 07 '22 15:10

billmalarky