2.0.48 • Published 4 years ago

ionic-file-cache v2.0.48

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

ionic-file-cache

Ionic File Cache, is for all kind of files (images, videos, docs, etc) to cache it into the device's local cache directory.

Installation

Install the ionic file cache

For Ionic v3, Click here

npm install ionic-file-cache --save

Install the additional dependencies

This module requires ionic native plugins and latest ionic webview, Please install the following plugins

Usage

app.module.ts

import { FileCacheProvider } from "ionic-file-cache";
import { File } from '@ionic-native/file/ngx';
import { FileTransfer } from '@ionic-native/file-transfer/ngx';

@NgModule({
  .
  .
  .
  providers: [
    File,
    FileTransfer,
    FileCacheProvider    
  ]
})
export class AppModule { }

MediaComponent.ts

import { FileCacheProvider } from 'ionic-file-cache';

@Injectable()
export class MediaComponent {

    public imageUrl: string = "assets/imgs/loading.gif";

    constructor(private fileCachePvdr:FileCacheProvider){
        this.fileCachePvdr.setEnableCache(true);
        this.fileCachePvdr.setDefaultTTL(60 * 60 * 1000);

        // Cache a live url
        this.getCachedFile('image url')
    }

    async getCachedFile(url: string) {
        this.imageUrl = await this.fileCachePvdr.cachedFile(url);
    }
}

MediaComponent.html

<div class="thumbnail">
    <img class="image" [src]="imageUrl">
</div>
2.0.48

4 years ago

2.0.46

4 years ago

2.0.47

4 years ago

2.0.44

4 years ago

2.0.45

4 years ago

2.0.43

4 years ago

2.0.42

4 years ago

2.0.40

4 years ago

2.0.41

4 years ago

2.0.39

4 years ago

2.0.38

4 years ago

2.0.37

4 years ago

2.0.36

4 years ago

2.0.35

4 years ago

2.0.34

4 years ago

2.0.33

4 years ago

2.0.32

4 years ago

2.0.31

4 years ago

2.0.28

4 years ago

2.0.29

4 years ago

2.0.30

4 years ago

2.0.27

4 years ago

2.0.26

4 years ago

2.0.24

4 years ago

2.0.25

4 years ago

2.0.23

4 years ago

2.0.21

5 years ago

1.0.13

5 years ago

2.0.19

5 years ago

2.0.18

5 years ago

2.0.17

5 years ago

2.0.16

5 years ago

2.0.15

5 years ago

2.0.14

5 years ago

2.0.13

5 years ago

1.0.12

5 years ago

2.0.12

5 years ago

2.0.11

5 years ago

2.0.10

5 years ago

2.0.9

5 years ago

2.0.8

5 years ago

1.0.11

5 years ago

2.0.7

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

2.0.6

5 years ago

1.0.8

5 years ago

2.0.5

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

2.0.4

5 years ago

1.0.3

5 years ago

2.0.2

5 years ago

1.0.2

5 years ago

2.0.1

5 years ago

1.0.1

5 years ago

2.0.0

5 years ago

1.0.0

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago