@genesislcap/grid-pro 14.70.4 → 14.70.5-alpha-c9fb4481be.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/dist/custom-elements.json +13 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +21 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +14 -2
- package/dist/grid-pro.api.json +32 -1
- package/dist/grid-pro.d.ts +21 -1
- package/docs/api/grid-pro.gridprogenesisdatasource.md +2 -1
- package/docs/api/grid-pro.gridprogenesisdatasource.requestserverreplymapper.md +18 -0
- package/docs/api/grid-pro.gridprogenesisdatasource.restartonreconnection.md +7 -0
- package/docs/api-report.md +1 -1
- package/package.json +7 -7
|
@@ -3340,13 +3340,24 @@
|
|
|
3340
3340
|
"name": "rowIdAttr",
|
|
3341
3341
|
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
|
|
3342
3342
|
},
|
|
3343
|
+
{
|
|
3344
|
+
"kind": "field",
|
|
3345
|
+
"name": "requestServerReplyMapper",
|
|
3346
|
+
"type": {
|
|
3347
|
+
"text": "Function"
|
|
3348
|
+
},
|
|
3349
|
+
"description": "A function to map the REQUES_SERVER's `REPLY` data before applying it to the grid.",
|
|
3350
|
+
"privacy": "public"
|
|
3351
|
+
},
|
|
3343
3352
|
{
|
|
3344
3353
|
"kind": "field",
|
|
3345
3354
|
"name": "restartOnReconnection",
|
|
3346
3355
|
"type": {
|
|
3347
3356
|
"text": "boolean"
|
|
3348
3357
|
},
|
|
3349
|
-
"default": "false"
|
|
3358
|
+
"default": "false",
|
|
3359
|
+
"description": "Whether to restart the datasource when the application reconnects.",
|
|
3360
|
+
"privacy": "public"
|
|
3350
3361
|
},
|
|
3351
3362
|
{
|
|
3352
3363
|
"kind": "field",
|
|
@@ -3764,6 +3775,7 @@
|
|
|
3764
3775
|
"text": "boolean"
|
|
3765
3776
|
},
|
|
3766
3777
|
"default": "false",
|
|
3778
|
+
"description": "Whether to restart the datasource when the application reconnects.",
|
|
3767
3779
|
"fieldName": "restartOnReconnection"
|
|
3768
3780
|
}
|
|
3769
3781
|
],
|
|
@@ -100,6 +100,10 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
100
100
|
removeAttributeNS(namespace: string, localName: string): void;
|
|
101
101
|
removeAttributeNode(attr: Attr): Attr;
|
|
102
102
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
103
|
+
/**
|
|
104
|
+
* Restarts the datasource, uses `deinit` and `init` in sequence.
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
103
107
|
requestPointerLock(): void;
|
|
104
108
|
scroll(options?: ScrollToOptions): void;
|
|
105
109
|
scroll(x: number, y: number): void;
|
|
@@ -257,7 +261,12 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
257
261
|
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
258
262
|
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
259
263
|
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
|
-
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
264
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any; /**
|
|
265
|
+
* Maps the transaction data to the row data mapper function, if it exists.
|
|
266
|
+
* @param transaction - The transaction data to be mapped.
|
|
267
|
+
* @param operations - The operations to be mapped. Can be 'add', 'update' or 'remove'.
|
|
268
|
+
* @returns The mapped transaction (if the row data mapper function exists), or the original transaction.
|
|
269
|
+
*/
|
|
261
270
|
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
262
271
|
onerror: OnErrorEventHandlerNonNull;
|
|
263
272
|
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
@@ -360,6 +369,17 @@ export declare class GridProGenesisDatasource extends GridProGenesisDatasource_b
|
|
|
360
369
|
* @privateRemarks Attribute-only, not to be used as a property. Use `rowId` getter instead.
|
|
361
370
|
*/
|
|
362
371
|
rowIdAttr: any;
|
|
372
|
+
/**
|
|
373
|
+
* A function to map the REQUES_SERVER's `REPLY` data before applying it to the grid.
|
|
374
|
+
* @remarks This is only used when the resource type is REQUEST_SERVER.
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
requestServerReplyMapper: Function;
|
|
378
|
+
/**
|
|
379
|
+
* Whether to restart the datasource when the application reconnects.
|
|
380
|
+
* @remarks Defaults to false.
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
363
383
|
restartOnReconnection: boolean;
|
|
364
384
|
/**
|
|
365
385
|
* Allows grid data updates to be processed via and external function before applying in grid
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,WAAW,EAAsB,MAAM,yBAAyB,CAAC;AAClF,OAAO,EACL,IAAI,EACJ,OAAO,EAEP,UAAU,EAYX,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAkB/D;;;GAGG;AACH,oBAAY,aAAa;IACvB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB
|
|
1
|
+
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,6 +36,11 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
|
|
|
36
36
|
this.pollingInterval = DatasourceDefaults.REQ_REP_POLLING_INTERVAL_MS;
|
|
37
37
|
this.movingView = false;
|
|
38
38
|
this.reverse = false;
|
|
39
|
+
/**
|
|
40
|
+
* Whether to restart the datasource when the application reconnects.
|
|
41
|
+
* @remarks Defaults to false.
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
39
44
|
this.restartOnReconnection = false;
|
|
40
45
|
this.isRequestServer = false;
|
|
41
46
|
this.requiresFullRowDataAndColDefs = true;
|
|
@@ -288,7 +293,9 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
|
|
|
288
293
|
if (Array.isArray(result))
|
|
289
294
|
return result;
|
|
290
295
|
if (result.REPLY) {
|
|
291
|
-
return result.REPLY
|
|
296
|
+
return this.requestServerReplyMapper && result.REPLY.length > 0
|
|
297
|
+
? this.requestServerReplyMapper(result.REPLY)
|
|
298
|
+
: result.REPLY;
|
|
292
299
|
}
|
|
293
300
|
if (result.ROW) {
|
|
294
301
|
return dataServerResultFilter(result).inserts;
|
|
@@ -322,7 +329,9 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
|
|
|
322
329
|
}
|
|
323
330
|
applyRequestServerData(requestServerResult) {
|
|
324
331
|
var _a;
|
|
325
|
-
const requestServerData = requestServerResult.REPLY
|
|
332
|
+
const requestServerData = this.requestServerReplyMapper && requestServerResult.REPLY.length > 0
|
|
333
|
+
? this.requestServerReplyMapper(requestServerResult.REPLY)
|
|
334
|
+
: requestServerResult.REPLY;
|
|
326
335
|
if (!Array.isArray(requestServerData) ||
|
|
327
336
|
!((_a = requestServerResult.MESSAGE_TYPE) === null || _a === void 0 ? void 0 : _a.startsWith('REP_'))) {
|
|
328
337
|
logger.error('received invalid RequestServerResult', requestServerResult);
|
|
@@ -518,6 +527,9 @@ __decorate([
|
|
|
518
527
|
__decorate([
|
|
519
528
|
attr({ attribute: 'row-id' })
|
|
520
529
|
], GridProGenesisDatasource.prototype, "rowIdAttr", void 0);
|
|
530
|
+
__decorate([
|
|
531
|
+
observable
|
|
532
|
+
], GridProGenesisDatasource.prototype, "requestServerReplyMapper", void 0);
|
|
521
533
|
__decorate([
|
|
522
534
|
attr({ mode: 'boolean', attribute: 'restart-on-reconnection' })
|
|
523
535
|
], GridProGenesisDatasource.prototype, "restartOnReconnection", void 0);
|
package/dist/grid-pro.api.json
CHANGED
|
@@ -7225,6 +7225,37 @@
|
|
|
7225
7225
|
"isProtected": false,
|
|
7226
7226
|
"isAbstract": false
|
|
7227
7227
|
},
|
|
7228
|
+
{
|
|
7229
|
+
"kind": "Property",
|
|
7230
|
+
"canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource#requestServerReplyMapper:member",
|
|
7231
|
+
"docComment": "/**\n * A function to map the REQUES_SERVER's `REPLY` data before applying it to the grid.\n *\n * @remarks\n *\n * This is only used when the resource type is REQUEST_SERVER.\n *\n * @public\n */\n",
|
|
7232
|
+
"excerptTokens": [
|
|
7233
|
+
{
|
|
7234
|
+
"kind": "Content",
|
|
7235
|
+
"text": "requestServerReplyMapper: "
|
|
7236
|
+
},
|
|
7237
|
+
{
|
|
7238
|
+
"kind": "Reference",
|
|
7239
|
+
"text": "Function",
|
|
7240
|
+
"canonicalReference": "!Function:interface"
|
|
7241
|
+
},
|
|
7242
|
+
{
|
|
7243
|
+
"kind": "Content",
|
|
7244
|
+
"text": ";"
|
|
7245
|
+
}
|
|
7246
|
+
],
|
|
7247
|
+
"isReadonly": false,
|
|
7248
|
+
"isOptional": false,
|
|
7249
|
+
"releaseTag": "Public",
|
|
7250
|
+
"name": "requestServerReplyMapper",
|
|
7251
|
+
"propertyTypeTokenRange": {
|
|
7252
|
+
"startIndex": 1,
|
|
7253
|
+
"endIndex": 2
|
|
7254
|
+
},
|
|
7255
|
+
"isStatic": false,
|
|
7256
|
+
"isProtected": false,
|
|
7257
|
+
"isAbstract": false
|
|
7258
|
+
},
|
|
7228
7259
|
{
|
|
7229
7260
|
"kind": "Method",
|
|
7230
7261
|
"canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource#reset:member(1)",
|
|
@@ -7384,7 +7415,7 @@
|
|
|
7384
7415
|
{
|
|
7385
7416
|
"kind": "Property",
|
|
7386
7417
|
"canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource#restartOnReconnection:member",
|
|
7387
|
-
"docComment": "",
|
|
7418
|
+
"docComment": "/**\n * Whether to restart the datasource when the application reconnects.\n *\n * @remarks\n *\n * Defaults to false.\n *\n * @public\n */\n",
|
|
7388
7419
|
"excerptTokens": [
|
|
7389
7420
|
{
|
|
7390
7421
|
"kind": "Content",
|
package/dist/grid-pro.d.ts
CHANGED
|
@@ -1241,6 +1241,17 @@ export declare class GridProGenesisDatasource extends GridProGenesisDatasource_b
|
|
|
1241
1241
|
* @privateRemarks Attribute-only, not to be used as a property. Use `rowId` getter instead.
|
|
1242
1242
|
*/
|
|
1243
1243
|
rowIdAttr: any;
|
|
1244
|
+
/**
|
|
1245
|
+
* A function to map the REQUES_SERVER's `REPLY` data before applying it to the grid.
|
|
1246
|
+
* @remarks This is only used when the resource type is REQUEST_SERVER.
|
|
1247
|
+
* @public
|
|
1248
|
+
*/
|
|
1249
|
+
requestServerReplyMapper: Function;
|
|
1250
|
+
/**
|
|
1251
|
+
* Whether to restart the datasource when the application reconnects.
|
|
1252
|
+
* @remarks Defaults to false.
|
|
1253
|
+
* @public
|
|
1254
|
+
*/
|
|
1244
1255
|
restartOnReconnection: boolean;
|
|
1245
1256
|
/**
|
|
1246
1257
|
* Allows grid data updates to be processed via and external function before applying in grid
|
|
@@ -1438,6 +1449,10 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1438
1449
|
removeAttributeNS(namespace: string, localName: string): void;
|
|
1439
1450
|
removeAttributeNode(attr: Attr): Attr;
|
|
1440
1451
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
1452
|
+
/**
|
|
1453
|
+
* Restarts the datasource, uses `deinit` and `init` in sequence.
|
|
1454
|
+
* @public
|
|
1455
|
+
*/
|
|
1441
1456
|
requestPointerLock(): void;
|
|
1442
1457
|
scroll(options?: ScrollToOptions): void;
|
|
1443
1458
|
scroll(x: number, y: number): void;
|
|
@@ -1595,7 +1610,12 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1595
1610
|
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1596
1611
|
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1597
1612
|
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1598
|
-
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1613
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any; /**
|
|
1614
|
+
* Maps the transaction data to the row data mapper function, if it exists.
|
|
1615
|
+
* @param transaction - The transaction data to be mapped.
|
|
1616
|
+
* @param operations - The operations to be mapped. Can be 'add', 'update' or 'remove'.
|
|
1617
|
+
* @returns The mapped transaction (if the row data mapper function exists), or the original transaction.
|
|
1618
|
+
*/
|
|
1599
1619
|
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1600
1620
|
onerror: OnErrorEventHandlerNonNull;
|
|
1601
1621
|
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
@@ -34,8 +34,9 @@ Only supports Client-Side Row Model.
|
|
|
34
34
|
| [orderBy](./grid-pro.gridprogenesisdatasource.orderby.md) | | string | |
|
|
35
35
|
| [pollingInterval](./grid-pro.gridprogenesisdatasource.pollinginterval.md) | | number | |
|
|
36
36
|
| [request](./grid-pro.gridprogenesisdatasource.request.md) | | any | |
|
|
37
|
+
| [requestServerReplyMapper](./grid-pro.gridprogenesisdatasource.requestserverreplymapper.md) | | Function | A function to map the REQUES\_SERVER's <code>REPLY</code> data before applying it to the grid. |
|
|
37
38
|
| [resourceName](./grid-pro.gridprogenesisdatasource.resourcename.md) | | string | |
|
|
38
|
-
| [restartOnReconnection](./grid-pro.gridprogenesisdatasource.restartonreconnection.md) | | boolean |
|
|
39
|
+
| [restartOnReconnection](./grid-pro.gridprogenesisdatasource.restartonreconnection.md) | | boolean | Whether to restart the datasource when the application reconnects. |
|
|
39
40
|
| [reverse](./grid-pro.gridprogenesisdatasource.reverse.md) | | boolean | |
|
|
40
41
|
| [rowDataMapper](./grid-pro.gridprogenesisdatasource.rowdatamapper.md) | | Function | Allows grid data updates to be processed via and external function before applying in grid |
|
|
41
42
|
| [rowIdAttr](./grid-pro.gridprogenesisdatasource.rowidattr.md) | | any | <p>Attribute to set an unique identifier for the row.</p><p>Defaults to <code>ROW_REF</code> or <code>RECORD_ID</code> depending on the resource type.</p> |
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProGenesisDatasource](./grid-pro.gridprogenesisdatasource.md) > [requestServerReplyMapper](./grid-pro.gridprogenesisdatasource.requestserverreplymapper.md)
|
|
4
|
+
|
|
5
|
+
## GridProGenesisDatasource.requestServerReplyMapper property
|
|
6
|
+
|
|
7
|
+
A function to map the REQUES\_SERVER's `REPLY` data before applying it to the grid.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
requestServerReplyMapper: Function;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
This is only used when the resource type is REQUEST\_SERVER.
|
|
18
|
+
|
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
## GridProGenesisDatasource.restartOnReconnection property
|
|
6
6
|
|
|
7
|
+
Whether to restart the datasource when the application reconnects.
|
|
8
|
+
|
|
7
9
|
**Signature:**
|
|
8
10
|
|
|
9
11
|
```typescript
|
|
10
12
|
restartOnReconnection: boolean;
|
|
11
13
|
```
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
Defaults to false.
|
|
18
|
+
|
package/docs/api-report.md
CHANGED
|
@@ -668,6 +668,7 @@ export class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
|
668
668
|
removeFilter(fieldName: string): void;
|
|
669
669
|
// (undocumented)
|
|
670
670
|
request: any;
|
|
671
|
+
requestServerReplyMapper: Function;
|
|
671
672
|
// @deprecated
|
|
672
673
|
reset(): void;
|
|
673
674
|
// (undocumented)
|
|
@@ -675,7 +676,6 @@ export class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
|
675
676
|
// (undocumented)
|
|
676
677
|
resourceNameChanged(oldValue: string, newValue: string): void;
|
|
677
678
|
restart(): void;
|
|
678
|
-
// (undocumented)
|
|
679
679
|
restartOnReconnection: boolean;
|
|
680
680
|
// (undocumented)
|
|
681
681
|
reverse: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/grid-pro",
|
|
3
3
|
"description": "Genesis Foundation AG Grid",
|
|
4
|
-
"version": "14.70.
|
|
4
|
+
"version": "14.70.5-alpha-c9fb4481be.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"test:debug": "genx test --debug"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@genesislcap/foundation-testing": "14.70.
|
|
32
|
-
"@genesislcap/genx": "14.70.
|
|
31
|
+
"@genesislcap/foundation-testing": "14.70.5-alpha-c9fb4481be.0",
|
|
32
|
+
"@genesislcap/genx": "14.70.5-alpha-c9fb4481be.0",
|
|
33
33
|
"rimraf": "^3.0.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@genesislcap/foundation-comms": "14.70.
|
|
37
|
-
"@genesislcap/foundation-ui": "14.70.
|
|
38
|
-
"@genesislcap/foundation-utils": "14.70.
|
|
36
|
+
"@genesislcap/foundation-comms": "14.70.5-alpha-c9fb4481be.0",
|
|
37
|
+
"@genesislcap/foundation-ui": "14.70.5-alpha-c9fb4481be.0",
|
|
38
|
+
"@genesislcap/foundation-utils": "14.70.5-alpha-c9fb4481be.0",
|
|
39
39
|
"@microsoft/fast-colors": "^5.1.4",
|
|
40
40
|
"@microsoft/fast-components": "^2.21.3",
|
|
41
41
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"customElements": "dist/custom-elements.json",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "c7ea0184506314ce0caec077a0848c08e20da812"
|
|
62
62
|
}
|