@equinor/fusion-framework-module-http 5.2.3 → 6.0.0
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/CHANGELOG.md +92 -0
- package/dist/esm/lib/client/client.js +2 -1
- package/dist/esm/lib/client/client.js.map +1 -1
- package/dist/esm/lib/selectors/blob-selector.js +16 -3
- package/dist/esm/lib/selectors/blob-selector.js.map +1 -1
- package/dist/esm/lib/selectors/json-selector.js +3 -0
- package/dist/esm/lib/selectors/json-selector.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/lib/client/client.d.ts +3 -3
- package/dist/types/lib/client/types.d.ts +6 -2
- package/dist/types/lib/selectors/blob-selector.d.ts +2 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/client/client.ts +31 -7
- package/src/lib/client/types.ts +27 -6
- package/src/lib/selectors/blob-selector.ts +26 -4
- package/src/lib/selectors/json-selector.ts +24 -8
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,97 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#2181](https://github.com/equinor/fusion-framework/pull/2181) [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8) Thanks [@odinr](https://github.com/odinr)! - The `blob` and `blob# Change Log methods in the `HttpClient` class have been updated to provide a more robust and flexible API for fetching blob resources.
|
|
8
|
+
|
|
9
|
+
1. The `blob` and `blob# Change Log methods now accept an optional `args`parameter of type`FetchRequestInit<T, TRequest, TResponse>`, where `T` is the type of the expected blob result. This allows consumers to customize the fetch request and response handling.
|
|
10
|
+
2. The `blob` and `blob# Change Log methods now return a `Promise<T>`and`StreamResponse<T>`respectively, where`T` is the type of the expected blob result. This allows consumers to handle the blob data in a more type-safe manner.
|
|
11
|
+
3. The `blobSelector` function has been updated to extract the filename (if available) from the `content-disposition` header and return it along with the blob data in a `BlobResult` object.
|
|
12
|
+
4. If you were previously using the `blob` or `blob# Change Log methods and expecting a `Blob`result, you must now use the new`BlobResult` type, which includes the filename (if available) and the blob data.
|
|
13
|
+
|
|
14
|
+
> [!WARNING]
|
|
15
|
+
> This alters the return type of the `blob` and `blob# Change Log methods, which is a **breaking change**.
|
|
16
|
+
|
|
17
|
+
Example:
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
const blobResult = await httpClient.blob('/path/to/blob');
|
|
21
|
+
console.log(blobResult.filename); // 'example.pdf'
|
|
22
|
+
console.log(blobResult.blob); // Blob instance
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
1. If you were providing a custom selector function to the `blob` or `blob# Change Log methods, you can now use the new `BlobResult` type in your selector function.
|
|
26
|
+
|
|
27
|
+
Example:
|
|
28
|
+
|
|
29
|
+
```typescript
|
|
30
|
+
const customBlobSelector = async (
|
|
31
|
+
response: Response,
|
|
32
|
+
): Promise<{ filename: string; blob: Blob }> => {
|
|
33
|
+
// Extract filename and blob from the response
|
|
34
|
+
const { filename, blob } = await blobSelector(response);
|
|
35
|
+
return { filename, blob };
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const blobResult = await httpClient.blob('/path/to/blob', { selector: customBlobSelector });
|
|
39
|
+
console.log(blobResult.filename); // 'example.pdf'
|
|
40
|
+
console.log(blobResult.blob); // Blob instance
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
3. If you were using the `blob# Change Log method and expecting a `StreamResponse<Blob>`, you can now use the new `StreamResponse<T>`type, where`T` is the type of the expected blob result.
|
|
44
|
+
|
|
45
|
+
Example:
|
|
46
|
+
|
|
47
|
+
```typescript
|
|
48
|
+
const blobStream = httpClient.blob$('/path/to/blob');
|
|
49
|
+
blobStream.subscribe((blobResult) => {
|
|
50
|
+
console.log(blobResult.filename); // 'example.pdf'
|
|
51
|
+
console.log(blobResult.blob); // Blob instance
|
|
52
|
+
});
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- [#2196](https://github.com/equinor/fusion-framework/pull/2196) [`1e60919`](https://github.com/equinor/fusion-framework/commit/1e60919e83fb65528c88f604d7bd43299ec412e1) Thanks [@odinr](https://github.com/odinr)! - The `jsonSelector` function was not checking the error type in the `catch` block.
|
|
58
|
+
This lead to not throwing the error with parsed data, but always throwing a parser error, where the correct error was `cause` in the `ErrorOptions`
|
|
59
|
+
|
|
60
|
+
**BREAKING CHANGE:**
|
|
61
|
+
|
|
62
|
+
If for some reason developers has catched the error and assumed the `cause` property would give the proper error data, this will no longer be the case.
|
|
63
|
+
|
|
64
|
+
```ts
|
|
65
|
+
try {
|
|
66
|
+
await jsonSelector(response);
|
|
67
|
+
} catch (error) {
|
|
68
|
+
if (error instanceof HttpJsonResponseError) {
|
|
69
|
+
const { data, cause } = error;
|
|
70
|
+
if (data) {
|
|
71
|
+
console.error('the request was not `ok`, see provided error data', data);
|
|
72
|
+
} else {
|
|
73
|
+
console.error('failed to parse data from response, see provided cause', cause);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
```diff
|
|
80
|
+
try {
|
|
81
|
+
await jsonSelector(response);
|
|
82
|
+
} catch (error) {
|
|
83
|
+
if(error instanceof HttpJsonResponseError) {
|
|
84
|
+
- const data = error.cause instanceof HttpJsonResponseError ? err.cause.data : null;
|
|
85
|
+
+ const data = error instanceof HttpJsonResponseError ? error.data : null;
|
|
86
|
+
if(data) {
|
|
87
|
+
console.error('the request was not `ok`, see provided error data', data);
|
|
88
|
+
} else {
|
|
89
|
+
console.error('failed to parse data from response, see provided cause', error.cause);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
|
|
3
95
|
## 5.2.3
|
|
4
96
|
|
|
5
97
|
### Patch Changes
|
|
@@ -59,7 +59,8 @@ export class HttpClient {
|
|
|
59
59
|
blob$(path, args) {
|
|
60
60
|
var _a;
|
|
61
61
|
const selector = (_a = args === null || args === void 0 ? void 0 : args.selector) !== null && _a !== void 0 ? _a : blobSelector;
|
|
62
|
-
|
|
62
|
+
const init = Object.assign(Object.assign({}, args), { selector });
|
|
63
|
+
return this.fetch$(path, init);
|
|
63
64
|
}
|
|
64
65
|
blob(path, args) {
|
|
65
66
|
return firstValueFrom(this.blob$(path, args));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../src/lib/client/client.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AACvE,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../src/lib/client/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,16 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
export const blobSelector = (response) => __awaiter(void 0, void 0, void 0, function* () {
|
|
11
|
+
var _a, _b, _c;
|
|
2
12
|
if (!response.ok) {
|
|
3
13
|
throw new Error('network response was not OK');
|
|
4
14
|
}
|
|
5
15
|
if (response.status === 204) {
|
|
6
16
|
throw new Error('no content');
|
|
7
17
|
}
|
|
18
|
+
const filename = (_c = (_b = (_a = response.headers
|
|
19
|
+
.get('content-disposition')) === null || _a === void 0 ? void 0 : _a.split(';').find((n) => n.includes('filename='))) === null || _b === void 0 ? void 0 : _b.replace('filename=', '')) === null || _c === void 0 ? void 0 : _c.trim();
|
|
8
20
|
try {
|
|
9
|
-
|
|
21
|
+
const blob = yield response.blob();
|
|
22
|
+
return { filename, blob };
|
|
10
23
|
}
|
|
11
24
|
catch (err) {
|
|
12
25
|
throw Error('failed to parse response');
|
|
13
26
|
}
|
|
14
|
-
};
|
|
27
|
+
});
|
|
15
28
|
export default blobSelector;
|
|
16
29
|
//# sourceMappingURL=blob-selector.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blob-selector.js","sourceRoot":"","sources":["../../../../src/lib/selectors/blob-selector.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"blob-selector.js","sourceRoot":"","sources":["../../../../src/lib/selectors/blob-selector.ts"],"names":[],"mappings":";;;;;;;;;AASA,MAAM,CAAC,MAAM,YAAY,GAAG,CACxB,QAAmB,EACA,EAAE;;IACrB,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;QAEf,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;IACnD,CAAC;IAGD,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE,CAAC;QAC1B,MAAM,IAAI,KAAK,CAAC,YAAY,CAAC,CAAC;IAClC,CAAC;IAGD,MAAM,QAAQ,GAAG,MAAA,MAAA,MAAA,QAAQ,CAAC,OAAO;SAC5B,GAAG,CAAC,qBAAqB,CAAC,0CACzB,KAAK,CAAC,GAAG,EACV,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,0CACnC,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,0CACxB,IAAI,EAAE,CAAC;IAEb,IAAI,CAAC;QAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QACnC,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9B,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QAEX,MAAM,KAAK,CAAC,0BAA0B,CAAC,CAAC;IAC5C,CAAC;AACL,CAAC,CAAA,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -20,6 +20,9 @@ export const jsonSelector = (response) => __awaiter(void 0, void 0, void 0, func
|
|
|
20
20
|
return data;
|
|
21
21
|
}
|
|
22
22
|
catch (cause) {
|
|
23
|
+
if (cause instanceof HttpJsonResponseError) {
|
|
24
|
+
throw cause;
|
|
25
|
+
}
|
|
23
26
|
throw new HttpJsonResponseError('failed to parse response', response, { cause });
|
|
24
27
|
}
|
|
25
28
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json-selector.js","sourceRoot":"","sources":["../../../../src/lib/selectors/json-selector.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"json-selector.js","sourceRoot":"","sources":["../../../../src/lib/selectors/json-selector.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAgBrD,MAAM,CAAC,MAAM,YAAY,GAAG,CACxB,QAAmB,EACL,EAAE;IAEhB,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE,CAAC;QAC1B,OAAO,OAAO,CAAC,OAAO,EAAoB,CAAC;IAC/C,CAAC;IAED,IAAI,CAAC;QAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QAGnC,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;YAEf,MAAM,IAAI,qBAAqB,CAAC,6BAA6B,EAAE,QAAQ,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC;QACvF,CAAC;QAGD,OAAO,IAAI,CAAC;IAChB,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QAEb,IAAI,KAAK,YAAY,qBAAqB,EAAE,CAAC;YACzC,MAAM,KAAK,CAAC;QAChB,CAAC;QAGD,MAAM,IAAI,qBAAqB,CAAC,0BAA0B,EAAE,QAAQ,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;IACrF,CAAC;AACL,CAAC,CAAA,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '
|
|
1
|
+
export const version = '6.0.0';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|