@adobe/exc-app 1.0.4-beta → 1.0.4-beta2
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.
- package/network/DataPrefetchContract.d.ts +110 -0
- package/network/DataPrefetchContract.js +3 -0
- package/network/DataPrefetchContract.js.map +1 -0
- package/network.d.ts +16 -3
- package/network.js +13 -4
- package/network.js.map +1 -1
- package/package.json +1 -1
- package/tests/network.test.js +7 -7
- package/tests/network.test.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/*************************************************************************
|
|
2
|
+
* Copyright 2022 Adobe
|
|
3
|
+
* All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* NOTICE: Adobe permits you to use, modify, and distribute this file in
|
|
6
|
+
* accordance with the terms of the Adobe license agreement accompanying
|
|
7
|
+
* it. If you have received this file from a source other than Adobe,
|
|
8
|
+
* then your use, modification, or distribution of it requires the prior
|
|
9
|
+
* written permission of Adobe.
|
|
10
|
+
**************************************************************************/
|
|
11
|
+
import { CacheExpiry, CacheScope } from '../cache';
|
|
12
|
+
import { FetchScope } from '../network';
|
|
13
|
+
/**
|
|
14
|
+
* @packageDocumentation
|
|
15
|
+
* @module network
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* Defines the conditions when certain data can be fetched.
|
|
19
|
+
* When conditions are not met, default data will be returned but not cached.
|
|
20
|
+
*/
|
|
21
|
+
export interface FetchCondition {
|
|
22
|
+
/**
|
|
23
|
+
* Service Codes that needs to be present (For the current org) in order to execute the query.
|
|
24
|
+
* This is useful when a query only makes sense if a certain product is provisioned for the current user.
|
|
25
|
+
*/
|
|
26
|
+
serviceCodes?: string | string[];
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Defines a GraphQL query that will be executed to fetch the data exposed by this contract.
|
|
30
|
+
*/
|
|
31
|
+
export interface QueryDefinition<V> {
|
|
32
|
+
/**
|
|
33
|
+
* When provided, the data at the certain path will be returned.
|
|
34
|
+
* If not provided, the entire GraphQL response will be returned.
|
|
35
|
+
*/
|
|
36
|
+
dataPath?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Fetch scope. Controls which headers are sent with the query.
|
|
39
|
+
* See fetch documentation for more info.
|
|
40
|
+
*/
|
|
41
|
+
fetchScope: FetchScope;
|
|
42
|
+
/**
|
|
43
|
+
* Do not fail (throw) when encountering errors while processing the query if the errors
|
|
44
|
+
* happened on certain paths.
|
|
45
|
+
*/
|
|
46
|
+
ignoreErrorsOnPaths?: string[];
|
|
47
|
+
/**
|
|
48
|
+
* GraphQL Query to execute.
|
|
49
|
+
*/
|
|
50
|
+
query: string;
|
|
51
|
+
/**
|
|
52
|
+
* GraphQL Query Variables (Key/value map).
|
|
53
|
+
*/
|
|
54
|
+
variables: V;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Defines a data contract which will be executed by Unified Shell on behalf ot the requesting application.
|
|
58
|
+
*/
|
|
59
|
+
export default interface DataPrefetchContract<T, V = undefined> {
|
|
60
|
+
/**
|
|
61
|
+
* Default value to return if the data execution is skipped.
|
|
62
|
+
*/
|
|
63
|
+
defaultValue: T;
|
|
64
|
+
/**
|
|
65
|
+
* Cache expiry. Can be one of the set values defined by the Cache API, or a numeric cache ttl (in seconds).
|
|
66
|
+
*/
|
|
67
|
+
expiry: CacheExpiry;
|
|
68
|
+
/**
|
|
69
|
+
* Defines the conditions when certain data can be fetched.
|
|
70
|
+
* When conditions are not met, the default value above will be returned (But not cached).
|
|
71
|
+
*/
|
|
72
|
+
fetchWhen?: FetchCondition;
|
|
73
|
+
/**
|
|
74
|
+
* GraphQL used to fulfill this data contract.
|
|
75
|
+
* Note: Currently GraphQL is the only supported method for data contracts.
|
|
76
|
+
*/
|
|
77
|
+
gql?: QueryDefinition<V>;
|
|
78
|
+
/**
|
|
79
|
+
* Is the data sensitive? (PII or other sensitive data).
|
|
80
|
+
* Sensitive data can only be cached in the browser's session storage
|
|
81
|
+
* Non-sensitive data can be cached in the standard Cache storage.
|
|
82
|
+
*/
|
|
83
|
+
isSensitive: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Unique key associated with this contract.
|
|
86
|
+
* Will be used by the calling application to get access to the data.
|
|
87
|
+
*/
|
|
88
|
+
key: string;
|
|
89
|
+
/**
|
|
90
|
+
* When true, data will be fetched even when a cache is available.
|
|
91
|
+
* In this case, the query will return the cached data and at the same time fetch fresh data from the network.
|
|
92
|
+
* (stale-while-revalidate strategy)
|
|
93
|
+
*/
|
|
94
|
+
revalidate: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Used in conjunction with revalidate = true. Threshold for revalidating data from the network.
|
|
97
|
+
* When set the query will return the cached data and if the cache is older than the set threshold,
|
|
98
|
+
* fetch fresh data from the network.
|
|
99
|
+
*/
|
|
100
|
+
revalidateAfterSec?: number;
|
|
101
|
+
/**
|
|
102
|
+
* Cache scope as defined by the Cache API.
|
|
103
|
+
*/
|
|
104
|
+
scope: CacheScope;
|
|
105
|
+
/**
|
|
106
|
+
* If true, this data will be accessible to all experience cloud applications.
|
|
107
|
+
* Otherwise, data will be cached against the requesting application.
|
|
108
|
+
*/
|
|
109
|
+
shared: boolean;
|
|
110
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataPrefetchContract.js","sourceRoot":"","sources":["DataPrefetchContract.ts"],"names":[],"mappings":""}
|
package/network.d.ts
CHANGED
|
@@ -401,11 +401,15 @@ export interface NetworkApi {
|
|
|
401
401
|
*/
|
|
402
402
|
fetch(input: RequestInfo, init?: FetchInit): Promise<Response>;
|
|
403
403
|
/**
|
|
404
|
+
* Provides an interface for querying known data.
|
|
405
|
+
* Data querying and caching are managed in Unified Shell in advance.
|
|
404
406
|
*
|
|
407
|
+
* This is an experimental feature.
|
|
405
408
|
* @template T
|
|
406
|
-
* @param
|
|
409
|
+
* @param key - Data Contract key
|
|
410
|
+
* @returns Promise for the contract execution response
|
|
407
411
|
*/
|
|
408
|
-
|
|
412
|
+
getPrefetched<T>(key: string): Promise<T>;
|
|
409
413
|
/**
|
|
410
414
|
* Provides an interface for querying resources via GraphqQL.
|
|
411
415
|
* In order to consume query, please make sure the respective query resolver is
|
|
@@ -492,7 +496,16 @@ export interface NetworkApi {
|
|
|
492
496
|
* @returns The promise for the response to the fetch operation.
|
|
493
497
|
*/
|
|
494
498
|
export declare function fetch(input: RequestInfo, init?: FetchInit): Promise<Response>;
|
|
495
|
-
|
|
499
|
+
/**
|
|
500
|
+
* Provides an interface for querying known data.
|
|
501
|
+
* Data querying and caching are managed in Unified Shell in advance.
|
|
502
|
+
*
|
|
503
|
+
* This is an experimental feature.
|
|
504
|
+
* @template T
|
|
505
|
+
* @param key - Data Contract key
|
|
506
|
+
* @returns Promise for the contract execution response
|
|
507
|
+
*/
|
|
508
|
+
export declare function getPrefetched<T>(key: string): Promise<T>;
|
|
496
509
|
/**
|
|
497
510
|
* Provides an interface for querying resources via GraphqQL.
|
|
498
511
|
* In order to consume query, please make sure the respective query resolver is
|
package/network.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* written permission of Adobe.
|
|
11
11
|
**************************************************************************/
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.getApolloClient = exports.query = exports.
|
|
13
|
+
exports.getApolloClient = exports.query = exports.getPrefetched = exports.fetch = exports.FetchScope = exports.ROUTING = exports.DEFAULT_STATUS_CODES_TO_RETRY = void 0;
|
|
14
14
|
const Global_1 = require("./src/Global");
|
|
15
15
|
/**
|
|
16
16
|
* Default status codes which imply a transient error and can be retried.
|
|
@@ -102,10 +102,19 @@ function fetch(input, init) {
|
|
|
102
102
|
return Global_1.getImpl('network').fetch(input, init);
|
|
103
103
|
}
|
|
104
104
|
exports.fetch = fetch;
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
/**
|
|
106
|
+
* Provides an interface for querying known data.
|
|
107
|
+
* Data querying and caching are managed in Unified Shell in advance.
|
|
108
|
+
*
|
|
109
|
+
* This is an experimental feature.
|
|
110
|
+
* @template T
|
|
111
|
+
* @param key - Data Contract key
|
|
112
|
+
* @returns Promise for the contract execution response
|
|
113
|
+
*/
|
|
114
|
+
function getPrefetched(key) {
|
|
115
|
+
return Global_1.getImpl('network').getPrefetched(key);
|
|
107
116
|
}
|
|
108
|
-
exports.
|
|
117
|
+
exports.getPrefetched = getPrefetched;
|
|
109
118
|
/**
|
|
110
119
|
* Provides an interface for querying resources via GraphqQL.
|
|
111
120
|
* In order to consume query, please make sure the respective query resolver is
|
package/network.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network.js","sourceRoot":"","sources":["network.ts"],"names":[],"mappings":";AAAA;;;;;;;;;4EAS4E;;;AA+C5E,yCAAqC;AAGrC;;GAEG;AACU,QAAA,6BAA6B,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAuKlE,IAAY,OAaX;AAbD,WAAY,OAAO;IACjB;;OAEG;IACH,+DAAiB,CAAA;IACjB;;OAEG;IACH,2CAAO,CAAA;IACP;;OAEG;IACH,yEAAsB,CAAA;AACxB,CAAC,EAbW,OAAO,GAAP,eAAO,KAAP,eAAO,QAalB;AAqFD;;GAEG;AACH,IAAY,UAqCX;AArCD,WAAY,UAAU;IACpB;;;OAGG;IACH,2BAAa,CAAA;IACb;;;;OAIG;IACH,2BAAa,CAAA;IACb;;;;;OAKG;IACH,yBAAW,CAAA;IACX;;;;;;OAMG;IACH,iCAAmB,CAAA;IACnB;;;;;;;;OAQG;IACH,2CAA6B,CAAA;AAC/B,CAAC,EArCW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAqCrB;
|
|
1
|
+
{"version":3,"file":"network.js","sourceRoot":"","sources":["network.ts"],"names":[],"mappings":";AAAA;;;;;;;;;4EAS4E;;;AA+C5E,yCAAqC;AAGrC;;GAEG;AACU,QAAA,6BAA6B,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAuKlE,IAAY,OAaX;AAbD,WAAY,OAAO;IACjB;;OAEG;IACH,+DAAiB,CAAA;IACjB;;OAEG;IACH,2CAAO,CAAA;IACP;;OAEG;IACH,yEAAsB,CAAA;AACxB,CAAC,EAbW,OAAO,GAAP,eAAO,KAAP,eAAO,QAalB;AAqFD;;GAEG;AACH,IAAY,UAqCX;AArCD,WAAY,UAAU;IACpB;;;OAGG;IACH,2BAAa,CAAA;IACb;;;;OAIG;IACH,2BAAa,CAAA;IACb;;;;;OAKG;IACH,yBAAW,CAAA;IACX;;;;;;OAMG;IACH,iCAAmB,CAAA;IACnB;;;;;;;;OAQG;IACH,2CAA6B,CAAA;AAC/B,CAAC,EArCW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAqCrB;AA0HD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,KAAK,CAAC,KAAkB,EAAE,IAAgB;IACxD,OAAO,gBAAO,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;AAC/C,CAAC;AAFD,sBAEC;AAED;;;;;;;;GAQG;AACH,SAAgB,aAAa,CAAI,GAAW;IAC1C,OAAO,gBAAO,CAAC,SAAS,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;AAC/C,CAAC;AAFD,sCAEC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,SAAgB,KAAK,CAAC,KAAmB;IACvC,OAAO,gBAAO,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;AACzC,CAAC;AAFD,sBAEC;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,eAAe,CAC7B,OAA6B;IAK7B,OAAO,gBAAO,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;AACrD,CAAC;AAPD,0CAOC"}
|
package/package.json
CHANGED
package/tests/network.test.js
CHANGED
|
@@ -26,13 +26,13 @@ const network_1 = require("../network");
|
|
|
26
26
|
const Global_1 = __importDefault(require("../src/Global"));
|
|
27
27
|
describe('network.ts', () => {
|
|
28
28
|
const fetchMock = jest.fn();
|
|
29
|
-
const
|
|
29
|
+
const getPrefetchedMock = jest.fn();
|
|
30
30
|
const queryMock = jest.fn();
|
|
31
31
|
const getApolloClientMock = jest.fn();
|
|
32
32
|
const networkMock = {
|
|
33
33
|
fetch: fetchMock,
|
|
34
|
-
fetchContract: fetchContractMock,
|
|
35
34
|
getApolloClient: getApolloClientMock,
|
|
35
|
+
getPrefetched: getPrefetchedMock,
|
|
36
36
|
query: queryMock
|
|
37
37
|
};
|
|
38
38
|
beforeAll(() => {
|
|
@@ -49,13 +49,13 @@ describe('network.ts', () => {
|
|
|
49
49
|
expect(fetchMock).toHaveBeenCalledTimes(1);
|
|
50
50
|
expect(fetchMock).toHaveBeenCalledWith('url', { auth: 'Header' });
|
|
51
51
|
}));
|
|
52
|
-
test('
|
|
52
|
+
test('getPrefetched', () => __awaiter(void 0, void 0, void 0, function* () {
|
|
53
53
|
const res = { status: 'ok' };
|
|
54
|
-
|
|
55
|
-
const result = yield network_1.
|
|
54
|
+
getPrefetchedMock.mockResolvedValue(res);
|
|
55
|
+
const result = yield network_1.getPrefetched('key');
|
|
56
56
|
expect(result).toEqual(res);
|
|
57
|
-
expect(
|
|
58
|
-
expect(
|
|
57
|
+
expect(getPrefetchedMock).toHaveBeenCalledTimes(1);
|
|
58
|
+
expect(getPrefetchedMock).toHaveBeenCalledWith('key');
|
|
59
59
|
}));
|
|
60
60
|
test('query', () => __awaiter(void 0, void 0, void 0, function* () {
|
|
61
61
|
const res = { status: 'ok' };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network.test.js","sourceRoot":"","sources":["network.test.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA;;;;;;;;;4EAS4E;AAC5E,wCAAoF;AACpF,2DAA8C;AAE9C,QAAQ,CAAC,YAAY,EAAE,GAAG,EAAE;IAC1B,MAAM,SAAS,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;IAC5B,MAAM,iBAAiB,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;IACpC,MAAM,SAAS,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;IAC5B,MAAM,mBAAmB,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;IAEtC,MAAM,WAAW,GAAG;QAClB,KAAK,EAAE,SAAS;QAChB,
|
|
1
|
+
{"version":3,"file":"network.test.js","sourceRoot":"","sources":["network.test.ts"],"names":[],"mappings":"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"}
|
package/version.d.ts
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* then your use, modification, or distribution of it requires the prior
|
|
9
9
|
* written permission of Adobe.
|
|
10
10
|
**************************************************************************/
|
|
11
|
-
declare const EXC_APP_VERSION = "1.0.4-
|
|
11
|
+
declare const EXC_APP_VERSION = "1.0.4-beta2";
|
|
12
12
|
export default EXC_APP_VERSION;
|
package/version.js
CHANGED
|
@@ -10,6 +10,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
10
10
|
* then your use, modification, or distribution of it requires the prior
|
|
11
11
|
* written permission of Adobe.
|
|
12
12
|
**************************************************************************/
|
|
13
|
-
const EXC_APP_VERSION = '1.0.4-
|
|
13
|
+
const EXC_APP_VERSION = '1.0.4-beta2';
|
|
14
14
|
exports.default = EXC_APP_VERSION;
|
|
15
15
|
//# sourceMappingURL=version.js.map
|
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E,MAAM,eAAe,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;4EAS4E;AAC5E,MAAM,eAAe,GAAG,aAAa,CAAC;AAEtC,kBAAe,eAAe,CAAC"}
|