forked from kfiroo/react-native-cached-image
-
Notifications
You must be signed in to change notification settings - Fork 83
/
index.d.ts
122 lines (112 loc) · 4.74 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import * as ReactNative from "react-native";
import * as React from 'react'
declare module "react-native-cached-image" {
namespace CachedImage {
interface Image extends ReactNative.Image {
/**
* props for the ActivityIndicator that is shown while the image is downloaded.
*/
activityIndicatorProps: ReactNative.ActivityIndicatorProperties
/**
* component prop to set custom ActivityIndicator
*/
loadingIndicator: ReactNative.ComponentInterface<any>
/**
* function when provided, the returned object will be used as the headers object
* when sending the request to download the image. (default: () => Promise.resolve({}))
*/
resolveHeaders: Promise<{}>
/**
* array|bool an array of keys to use from the source.
* uri query string or a bool value stating whether to use the entire query string or not. (default: false)
*/
useQueryParamsInCacheKey: string[] | boolean
/**
* string allows changing the root directory to use for caching.
* The default directory is sufficient for most use-cases.
* Images in this directory may be purged by Android automatically to free up space.
* Use ImageCacheProvider.LOCATION.BUNDLE if the cached images are critical
* (you will have to manage cleanup manually).
* (default: ImageCacheProvider.LOCATION.CACHE)
*/
cacheLocation: string
/**
* prop to display a background image while the source image is downloaded.
* This will work even in android, but will not display background image
* if there you set borderRadius on this component style prop
*/
defaultSource: ReactNative.ImageURISource
/**
* prop to set placeholder image. when source.uri is null or cached failed, the fallbackSource will be display.
*/
fallbackSource: string
}
interface CacheOptions {
/** an object to be used as the headers when sending the request for the url */
headers: object
/** the number of seconds each url will stay in the cache. default 2 weeks */
ttl: number
/**
* array|bool an array of keys to use from the source.
* uri query string or a bool value stating whether to use the entire query string or not. (default: false)
*/
useQueryParamsInCacheKey: string[] | boolean
/**
* the root directory to use for caching, corresponds to CachedImage prop of same name,
* defaults to system cache directory
*/
cacheLocation: string
/** true to allow self signed SSL URLs to be downloaded. default false */
allowSelfSignedSSL: boolean
}
interface ImageCacheProvider extends CacheOptions {
/** an array of URLs to preload when the component mounts */
urlsToPreload: string[]
/** control the number of concurrent downloads, usually used when the urlsToPreload array is very big. default urlsToPreload.length */
numberOfConcurrentPreloads: number
/** callback for when the preload is complete and all images are cached. */
onPreloadComplete: Function
}
interface CacheInfoFile {
filename: string
lastModified: number
path: string
size: number
type: string
}
interface PromiseCacheInfo {
files: CacheInfoFile[]
size: number
}
interface ImageCacheManager {
/** download an image and cache the result according to the given options */
downloadAndCacheUrl(url: String, options:CacheOptions ): Promise<any>
/** Delete the cached image corresponding to the given url */
deleteUrl(urls: string, options?: CacheOptions): Promise<any>
/**
* Seed the cache of a specified url with a local image
* Handy if you have a local copy of a remote image, e.g. you just uploaded local to url.
*/
seedAndCacheUrl(url: string, seedPath: string, options?: CacheOptions): Promise<any>
/**
* Clear the entire cache.
*/
clearCache(): Promise<any>
/**
* Return info about the cache, list of files and the total size of the cache.
*/
getCacheInfo(options?: CacheOptions): Promise<PromiseCacheInfo>
// LOCATION : {
// CACHE: string
// BUNDLE: string
// }
}
interface ImageCachePreloader {
preloadImages(urls: string[], imageCacheManager: ImageCacheManager, numberOfConcurrentPreloads: number): Promise<any>
}
}
export class CachedImage extends React.Component<CachedImage.Image, any> {}
export class ImageCacheProvider extends React.Component<CachedImage.ImageCacheProvider, any> {}
export const ImageCacheManager: CachedImage.ImageCacheManager
export const ImageCachePreloader: CachedImage.ImageCachePreloader
}