ng2-rest 19.0.44 → 19.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng2-rest/browser",
3
- "version": "19.0.44",
3
+ "version": "19.0.46",
4
4
  "module": "fesm2022/ng2-rest.mjs",
5
5
  "typings": "index.d.ts",
6
6
  "exports": {
@@ -17,4 +17,4 @@ export declare const PROJECT_NPM_NAME = "ng2-rest";
17
17
  /**
18
18
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
19
19
  */
20
- export declare const CURRENT_PACKAGE_VERSION = "19.0.44";
20
+ export declare const CURRENT_PACKAGE_VERSION = "19.0.46";
@@ -21,6 +21,6 @@ exports.PROJECT_NPM_NAME = 'ng2-rest';
21
21
  /**
22
22
  * Autogenerated by current cli tool. Use *tnp release* to bump version.
23
23
  */
24
- exports.CURRENT_PACKAGE_VERSION = '19.0.44';
24
+ exports.CURRENT_PACKAGE_VERSION = '19.0.46';
25
25
  // THIS FILE IS GENERATED - DO NOT MODIFY
26
26
  //# sourceMappingURL=build-info._auto-generated_.js.map
@@ -0,0 +1,18 @@
1
+ import { Models } from './models';
2
+ /**
3
+ * @deprecated
4
+ * there is Cache API for that
5
+ */
6
+ export declare class RequestCache {
7
+ response: Models.HttpResponse<any>;
8
+ static readonly LOCAL_STORAGE_KEY = "ng2restrequestcache";
9
+ private static cached;
10
+ private static isRestoredFromLocalStorage;
11
+ private static restoreFromLocalStorage;
12
+ static findBy(sourceRequest: Models.HandleResultSourceRequestOptions): RequestCache;
13
+ constructor(response: Models.HttpResponse<any>);
14
+ get containsCache(): boolean;
15
+ private persistsInLocalStorage;
16
+ store(): this;
17
+ remove(): void;
18
+ }
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RequestCache = void 0;
4
+ const lib_1 = require("tnp-core/lib");
5
+ const models_1 = require("./models");
6
+ const lib_2 = require("tnp-core/lib");
7
+ const rest_headers_1 = require("./rest-headers");
8
+ // const log = Log.create('request-cache', Level.__NOTHING);
9
+ /**
10
+ * @deprecated
11
+ * there is Cache API for that
12
+ */
13
+ class RequestCache {
14
+ response;
15
+ static LOCAL_STORAGE_KEY = 'ng2restrequestcache';
16
+ static cached = [];
17
+ static isRestoredFromLocalStorage = false;
18
+ static restoreFromLocalStorage() {
19
+ if (lib_1.UtilsOs.isSSRMode) {
20
+ return;
21
+ }
22
+ if (lib_2.Helpers.isNode) {
23
+ return;
24
+ }
25
+ if (!RequestCache.isRestoredFromLocalStorage) {
26
+ RequestCache.isRestoredFromLocalStorage = true;
27
+ const data = localStorage.getItem(RequestCache.LOCAL_STORAGE_KEY);
28
+ let requests = [];
29
+ if (data) {
30
+ try {
31
+ requests = JSON.parse(data);
32
+ }
33
+ catch (error) { }
34
+ const restored = requests.map(r => {
35
+ let { sourceRequest, responseText, body, headers, circular, entity, isArray, cookies, statusCode, } = r.response;
36
+ r.response = new models_1.Models.HttpResponse(sourceRequest, responseText, rest_headers_1.RestHeaders.from(headers), statusCode, entity, circular, -1, // jobid from local storage TODO
37
+ isArray);
38
+ r = new RequestCache(r.response);
39
+ r.response.rq = r;
40
+ return r;
41
+ });
42
+ // log.i('RESTORED FROM LOCAL STORAGE', restored);
43
+ RequestCache.cached = restored;
44
+ }
45
+ }
46
+ }
47
+ static findBy(sourceRequest) {
48
+ if (lib_1.UtilsOs.isSSRMode) {
49
+ return;
50
+ }
51
+ // log.i('findby', sourceRequest);
52
+ // log.i('RequestCache.cached', RequestCache.cached);
53
+ RequestCache.restoreFromLocalStorage();
54
+ return RequestCache.cached.find(c => {
55
+ const a = c.response.sourceRequest;
56
+ const b = sourceRequest;
57
+ return (a.isArray === b.isArray &&
58
+ a.url === b.url &&
59
+ a.method === b.method &&
60
+ a.body === b.body);
61
+ });
62
+ }
63
+ constructor(response) {
64
+ this.response = response;
65
+ }
66
+ get containsCache() {
67
+ RequestCache.restoreFromLocalStorage();
68
+ return RequestCache.cached.includes(this);
69
+ }
70
+ persistsInLocalStorage() {
71
+ if (lib_1.UtilsOs.isSSRMode) {
72
+ return;
73
+ }
74
+ localStorage.setItem(RequestCache.LOCAL_STORAGE_KEY, JSON.stringify(RequestCache.cached.map(r => {
75
+ return {
76
+ response: {
77
+ sourceRequest: r.response.sourceRequest,
78
+ responseText: r.response.responseText,
79
+ headers: r.response.headers,
80
+ statusCode: r.response.statusCode,
81
+ entity: r.response.entity,
82
+ circular: r.response.circular,
83
+ isArray: r.response.isArray,
84
+ },
85
+ };
86
+ })));
87
+ }
88
+ store() {
89
+ if (lib_1.UtilsOs.isSSRMode) {
90
+ return;
91
+ }
92
+ RequestCache.restoreFromLocalStorage();
93
+ if (!this.containsCache) {
94
+ RequestCache.cached.push(this);
95
+ this.persistsInLocalStorage();
96
+ }
97
+ else {
98
+ console.log('already stored');
99
+ }
100
+ return this;
101
+ }
102
+ remove() {
103
+ if (lib_1.UtilsOs.isSSRMode) {
104
+ return;
105
+ }
106
+ RequestCache.restoreFromLocalStorage();
107
+ const index = RequestCache.cached.indexOf(this);
108
+ if (index !== -1) {
109
+ RequestCache.cached.splice(index, 1);
110
+ this.persistsInLocalStorage();
111
+ }
112
+ else {
113
+ console.log('already removed');
114
+ }
115
+ }
116
+ }
117
+ exports.RequestCache = RequestCache;
118
+ //# sourceMappingURL=request-cache.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"request-cache.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng2-rest",
3
- "version": "19.0.44",
3
+ "version": "19.0.46",
4
4
  "scripts": {
5
5
  "taon init": "taon init",
6
6
  "taon start": "taon start",
package/websql/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.