Skip to content

Commit c7b9ab2

Browse files
committed
added Ionic RC0 support
1 parent 617ea44 commit c7b9ab2

File tree

5 files changed

+45
-27
lines changed

5 files changed

+45
-27
lines changed

package.json

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic-cache",
3-
"version": "1.0.7",
3+
"version": "1.0.9",
44
"description": "Ionic cache service - cache request, data, promises etc.",
55
"main": "ionic-cache.js",
66
"scripts": {
@@ -23,18 +23,8 @@
2323
},
2424
"homepage": "https://github.com/Nodonisko/ionic-cache#readme",
2525
"dependencies": {
26-
"@angular/common": "^2.0.0-rc.4",
27-
"@angular/compiler": "^2.0.0-rc.4",
2826
"@angular/core": "^2.0.0-rc.4",
29-
"@angular/forms": "^0.2.0",
30-
"@angular/http": "^2.0.0-rc.4",
31-
"@angular/platform-browser": "^2.0.0-rc.4",
32-
"@angular/platform-browser-dynamic": "^2.0.0-rc.4",
33-
"es6-shim": "^0.35.0",
34-
"ionic-angular": "^2.0.0-beta.11",
35-
"ionic-native": "^1.3.2",
36-
"rxjs": "^5.0.0-beta.6",
37-
"zone.js": "^0.6.12"
27+
"rxjs": "^5.0.0-beta.6"
3828
},
3929
"devDependencies": {
4030
"tslint": "^3.13.0",

src/cache.service.ts

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Injectable} from '@angular/core';
2-
import {Storage, SqlStorage} from 'ionic-angular';
2+
import {SqlStorage} from './storage';
33
import {Observable, Subject} from 'rxjs/Rx';
44
import {Request, Response, ResponseOptions} from '@angular/http';
55

@@ -8,23 +8,24 @@ const MESSAGES = {
88
1: "Cache is not enabled.",
99
2: "Cache entry already expired: ",
1010
3: "No such key: ",
11-
4: "No enteries were deleted, because browser is offline.",
11+
4: "No enteries were deleted, because browser is offline."
1212
}
1313

1414
@Injectable()
1515
export class CacheService {
1616
private ttl: number = 60 * 60; //one hour
1717
private tableName: string = 'cache';
1818
private cacheKeys: string[] = ['key unique', 'value', 'expire INTEGER', 'type', 'groupKey'];
19-
private storage: Storage;
19+
private storage: SqlStorage;
2020
private enableCache: boolean = true;
2121
private invalidateOffline: boolean = false;
2222
private networkStatusChanges: Observable<boolean>;
2323
private networkStatus: boolean = true;
2424

2525
constructor() {
26+
console.log('constructor');
2627
try {
27-
this.storage = new Storage(SqlStorage);
28+
this.storage = new SqlStorage();
2829
this.watchNetworkInit();
2930
this.initDatabase();
3031
this.enableCache = true;
@@ -154,14 +155,12 @@ export class CacheService {
154155
}
155156

156157
let query = `SELECT * FROM ${this.tableName} WHERE key = '${key}'`;
157-
158-
return this.storage.query(query).then(data => {
159-
let result = data.res.rows.item(0);
160-
if (!result) {
158+
return this.storage.query(query).then((data: SQLResultSet) => {
159+
if (data.rows.length === 0 || !data.rows.item(0)) {
161160
return Promise.reject(MESSAGES[3] + key);
162-
} else {
163-
return result;
164161
}
162+
163+
return data.rows.item(0);
165164
});
166165
}
167166

@@ -216,9 +215,9 @@ export class CacheService {
216215
* @param {any} observable - Observable with data
217216
* @param {string} [groupKey] - group key
218217
* @param {number} [ttl] - TTL in seconds
219-
* @return {any} - data from cache or origin observable
218+
* @return {Observable<any>} - data from cache or origin observable
220219
*/
221-
public loadFromObservable(key: string, observable: any, groupKey?: string, ttl?: number): any {
220+
public loadFromObservable(key: string, observable: any, groupKey?: string, ttl?: number): Observable<any> {
222221
if (!this.enableCache) return observable;
223222

224223
observable = observable.share();
@@ -235,9 +234,9 @@ export class CacheService {
235234
* @param {any} observable - Observable with data
236235
* @param {string} [groupKey] - group key
237236
* @param {number} [ttl] - TTL in seconds
238-
* @return {any} - data from cache or origin observable
237+
* @return {Observable<any>} - data from cache or origin observable
239238
*/
240-
public loadFromDelayedObservable(key: string, observable: any, groupKey?: string, ttl: number = this.ttl, delayType: string = "expired"): any {
239+
public loadFromDelayedObservable(key: string, observable: any, groupKey?: string, ttl: number = this.ttl, delayType: string = "expired"): Observable<any> {
241240
if (!this.enableCache) return observable;
242241

243242
let observableSubject = new Subject();

src/storage.ts

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
export class SqlStorage {
2+
private database: Database;
3+
4+
constructor() {
5+
this.database = window.openDatabase('cache', '1.0', 'cache', 5 * 1024 * 1024);
6+
}
7+
8+
public query(query: String): Promise<any> {
9+
return new Promise((resolve, reject) => {
10+
this.database.transaction((tx) => {
11+
tx.executeSql(query, [], (tx, rs) => {
12+
resolve(rs);
13+
}, (tx, err) => {
14+
reject(err);
15+
return false;
16+
});
17+
});
18+
});
19+
}
20+
}

typings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"dependencies": {},
33
"devDependencies": {},
44
"globalDependencies": {
5-
"es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504"
5+
"es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504",
6+
"websql": "registry:dt/websql#0.0.0+20160316155526"
67
}
78
}

typings/globals/websql/typings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"resolution": "main",
3+
"tree": {
4+
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/websql/websql.d.ts",
5+
"raw": "registry:dt/websql#0.0.0+20160316155526",
6+
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/websql/websql.d.ts"
7+
}
8+
}

0 commit comments

Comments
 (0)