React native Image prefetch

前端 未结 2 679
失恋的感觉
失恋的感觉 2021-02-01 05:37

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

\"Prefetches a remote image for

相关标签:
2条回答
  • 2021-02-01 05:54

    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.

    0 讨论(0)
  • 2021-02-01 06:14

    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.

    0 讨论(0)
提交回复
热议问题