@memberjunction/ng-query-grid 2.111.1 → 2.112.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/README.md
CHANGED
|
@@ -73,7 +73,7 @@ export class YourModule { }
|
|
|
73
73
|
|
|
74
74
|
```typescript
|
|
75
75
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
|
76
|
-
import { RunQueryParams } from '@memberjunction/
|
|
76
|
+
import { RunQueryParams } from '@memberjunction/global';
|
|
77
77
|
import { GridRowClickedEvent, QueryGridComponent } from '@memberjunction/ng-query-grid';
|
|
78
78
|
|
|
79
79
|
@Component({
|
|
@@ -237,28 +237,28 @@ export class CustomerOrdersComponent implements OnInit {
|
|
|
237
237
|
|
|
238
238
|
### Inputs
|
|
239
239
|
|
|
240
|
-
| Input
|
|
241
|
-
|
|
242
|
-
| `Params`
|
|
243
|
-
| `BottomMargin` | `number`
|
|
244
|
-
| `InEditMode`
|
|
245
|
-
| `EditMode`
|
|
246
|
-
| `AutoNavigate` | `boolean`
|
|
247
|
-
| `AllowLoad`
|
|
240
|
+
| Input | Type | Default | Description |
|
|
241
|
+
| -------------- | ----------------------------- | ----------- | ---------------------------------------- |
|
|
242
|
+
| `Params` | `RunQueryParams \| undefined` | `undefined` | Query parameters for data loading |
|
|
243
|
+
| `BottomMargin` | `number` | `0` | Bottom margin in pixels |
|
|
244
|
+
| `InEditMode` | `boolean` | `false` | Whether the grid is in edit mode |
|
|
245
|
+
| `EditMode` | `"None" \| "Save" \| "Queue"` | `"None"` | Type of edit mode |
|
|
246
|
+
| `AutoNavigate` | `boolean` | `true` | Whether to auto-navigate on row click |
|
|
247
|
+
| `AllowLoad` | `boolean` | `true` | Controls whether data loading is allowed |
|
|
248
248
|
|
|
249
249
|
### Outputs
|
|
250
250
|
|
|
251
|
-
| Output
|
|
252
|
-
|
|
251
|
+
| Output | Type | Description |
|
|
252
|
+
| ------------ | ----------------------------------- | ---------------------------------- |
|
|
253
253
|
| `rowClicked` | `EventEmitter<GridRowClickedEvent>` | Emitted when a grid row is clicked |
|
|
254
254
|
|
|
255
255
|
### Public Methods
|
|
256
256
|
|
|
257
|
-
| Method
|
|
258
|
-
|
|
259
|
-
| `Refresh`
|
|
260
|
-
| `RefreshFromSavedParams` | none
|
|
261
|
-
| `doExcelExport`
|
|
257
|
+
| Method | Parameters | Return Type | Description |
|
|
258
|
+
| ------------------------ | ------------------------ | --------------- | ------------------------------------------------ |
|
|
259
|
+
| `Refresh` | `params: RunQueryParams` | `Promise<void>` | Refreshes grid data with new query parameters |
|
|
260
|
+
| `RefreshFromSavedParams` | none | `Promise<void>` | Refreshes grid using previously saved parameters |
|
|
261
|
+
| `doExcelExport` | none | `Promise<void>` | Exports current grid data to Excel file |
|
|
262
262
|
|
|
263
263
|
### Types
|
|
264
264
|
|
|
@@ -365,4 +365,4 @@ This component integrates seamlessly with the MemberJunction ecosystem:
|
|
|
365
365
|
|
|
366
366
|
## License
|
|
367
367
|
|
|
368
|
-
ISC
|
|
368
|
+
ISC
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit, AfterViewInit } from '@angular/core';
|
|
2
|
-
import { BaseEntity, KeyValuePair, RunQueryParams } from '@memberjunction/
|
|
3
|
-
import { CellClickEvent, GridDataResult, PageChangeEvent, GridComponent, SelectableSettings } from
|
|
2
|
+
import { BaseEntity, KeyValuePair, RunQueryParams } from '@memberjunction/global';
|
|
3
|
+
import { CellClickEvent, GridDataResult, PageChangeEvent, GridComponent, SelectableSettings } from '@progress/kendo-angular-grid';
|
|
4
4
|
import { ExcelExportComponent } from '@progress/kendo-angular-excel-export';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export type GridRowClickedEvent = {
|
|
@@ -13,7 +13,7 @@ export declare class QueryGridComponent implements OnInit, AfterViewInit {
|
|
|
13
13
|
Params: RunQueryParams | undefined;
|
|
14
14
|
BottomMargin: number;
|
|
15
15
|
InEditMode: boolean;
|
|
16
|
-
EditMode:
|
|
16
|
+
EditMode: 'None' | 'Save' | 'Queue';
|
|
17
17
|
AutoNavigate: boolean;
|
|
18
18
|
rowClicked: EventEmitter<GridRowClickedEvent>;
|
|
19
19
|
kendoGridElement: GridComponent | null;
|
|
@@ -34,7 +34,7 @@ export declare class QueryGridComponent implements OnInit, AfterViewInit {
|
|
|
34
34
|
pageChange(event: PageChangeEvent): void;
|
|
35
35
|
private virtualLoadData;
|
|
36
36
|
constructor();
|
|
37
|
-
protected CreateSimpleNotification(message: string, style:
|
|
37
|
+
protected CreateSimpleNotification(message: string, style: 'none' | 'success' | 'error' | 'warning' | 'info', duration: number): void;
|
|
38
38
|
cellClickHandler(args: CellClickEvent): Promise<void>;
|
|
39
39
|
ngOnInit(): void;
|
|
40
40
|
ngAfterViewInit(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ng-query-grid.component.d.ts","sourceRoot":"","sources":["../../src/lib/ng-query-grid.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,UAAU,EAAU,YAAY,EAAE,MAAM,EAAS,aAAa,EAAE,MAAM,eAAe,CAAC;AAErH,OAAO,EAAY,UAAU,EAAY,YAAY,EAAE,cAAc,EAAY,MAAM,
|
|
1
|
+
{"version":3,"file":"ng-query-grid.component.d.ts","sourceRoot":"","sources":["../../src/lib/ng-query-grid.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,UAAU,EAAU,YAAY,EAAE,MAAM,EAAS,aAAa,EAAE,MAAM,eAAe,CAAC;AAErH,OAAO,EAAY,UAAU,EAAY,YAAY,EAAE,cAAc,EAAY,MAAM,wBAAwB,CAAC;AAEhH,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAElI,OAAO,EAAE,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;;AAG5E,MAAM,MAAM,mBAAmB,GAAG;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,YAAY,EAAE,CAAC;CAC/B,CAAC;AAEF,qBAKa,kBAAmB,YAAW,MAAM,EAAE,aAAa;IAC9D,KAAK,SAAe;IACX,MAAM,EAAE,cAAc,GAAG,SAAS,CAAC;IACnC,YAAY,EAAE,MAAM,CAAK;IACzB,UAAU,EAAE,OAAO,CAAS;IAC5B,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAU;IAC7C,YAAY,EAAE,OAAO,CAAQ;IAE5B,UAAU,oCAA2C;IAEd,gBAAgB,EAAE,aAAa,GAAG,IAAI,CAAQ;IACjD,mBAAmB,EAAE,UAAU,GAAG,IAAI,CAAQ;IAClC,gBAAgB,EAAE,oBAAoB,GAAG,IAAI,CAAQ;IAExG,SAAS,EAAE,GAAG,EAAE,CAAM;IACtB,aAAa,EAAE,MAAM,CAAK;IAC1B,YAAY,EAAE,UAAU,GAAG,IAAI,CAAQ;IACvC,IAAI,EAAE,MAAM,CAAK;IACjB,QAAQ,EAAE,MAAM,CAAM;IACtB,SAAS,EAAE,OAAO,CAAS;IAC3B,QAAQ,EAAE,cAAc,CAA0B;IAClD,UAAU,EAAE,MAAM,CAAO;IAEzB,kBAAkB,EAAE,kBAAkB,CAE3C;IACK,YAAY,EAAE,GAAG,EAAE,CAAM;IACzB,iBAAiB,EAAE,OAAO,CAAQ;IAElC,iBAAiB,EAAE,MAAM,CAAK;IAE9B,UAAU,CAAC,KAAK,EAAE,eAAe,GAAG,IAAI;IAK/C,OAAO,CAAC,eAAe;;IASvB,SAAS,CAAC,wBAAwB,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,EAAE,QAAQ,EAAE,MAAM;IAcjH,gBAAgB,CAAC,IAAI,EAAE,cAAc;IAMlD,QAAQ,IAAI,IAAI;IAEhB,eAAe,IAAI,IAAI;IAKvB,OAAO,CAAC,eAAe,CAAa;IACpC,OAAO,CAAC,UAAU,CAAiB;IACnC,IAAoB,SAAS,IAAI,OAAO,CAEvC;IACD,IAAW,SAAS,CAAC,KAAK,EAAE,OAAO,EAOlC;IAEK,sBAAsB;IAGtB,OAAO,CAAC,MAAM,EAAE,cAAc;IAiC7B,UAAU,EAAE,GAAG,EAAE,CAAM;IACjB,aAAa;cAoBV,aAAa,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;IAI/C,SAAS,CAAC,YAAY;yCAnJX,kBAAkB;2CAAlB,kBAAkB;CA0J9B"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Component, ViewChild, ElementRef, Output, EventEmitter, Input } from '@angular/core';
|
|
2
|
-
import { Metadata, LogError, RunQuery } from '@memberjunction/
|
|
3
|
-
import { GridComponent } from
|
|
2
|
+
import { Metadata, LogError, RunQuery } from '@memberjunction/global';
|
|
3
|
+
import { GridComponent } from '@progress/kendo-angular-grid';
|
|
4
4
|
import { ExcelExportComponent } from '@progress/kendo-angular-excel-export';
|
|
5
5
|
import { MJEventType, MJGlobal } from '@memberjunction/global';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -42,7 +42,7 @@ export class QueryGridComponent {
|
|
|
42
42
|
Params;
|
|
43
43
|
BottomMargin = 0;
|
|
44
44
|
InEditMode = false;
|
|
45
|
-
EditMode =
|
|
45
|
+
EditMode = 'None';
|
|
46
46
|
AutoNavigate = true;
|
|
47
47
|
rowClicked = new EventEmitter();
|
|
48
48
|
kendoGridElement = null;
|
|
@@ -57,7 +57,7 @@ export class QueryGridComponent {
|
|
|
57
57
|
gridView = { data: [], total: 0 };
|
|
58
58
|
gridHeight = 750;
|
|
59
59
|
selectableSettings = {
|
|
60
|
-
enabled: false
|
|
60
|
+
enabled: false,
|
|
61
61
|
};
|
|
62
62
|
selectedKeys = [];
|
|
63
63
|
showRefreshButton = true;
|
|
@@ -72,19 +72,18 @@ export class QueryGridComponent {
|
|
|
72
72
|
total: this.queryData.length,
|
|
73
73
|
};
|
|
74
74
|
}
|
|
75
|
-
constructor() {
|
|
76
|
-
}
|
|
75
|
+
constructor() { }
|
|
77
76
|
CreateSimpleNotification(message, style, duration) {
|
|
78
77
|
const data = {
|
|
79
78
|
message: message,
|
|
80
79
|
style: style,
|
|
81
|
-
DisplayDuration: duration
|
|
80
|
+
DisplayDuration: duration,
|
|
82
81
|
};
|
|
83
82
|
MJGlobal.Instance.RaiseEvent({
|
|
84
83
|
component: this,
|
|
85
84
|
event: MJEventType.DisplaySimpleNotificationRequest,
|
|
86
|
-
eventCode:
|
|
87
|
-
args: data
|
|
85
|
+
eventCode: '',
|
|
86
|
+
args: data,
|
|
88
87
|
});
|
|
89
88
|
}
|
|
90
89
|
async cellClickHandler(args) {
|
|
@@ -92,8 +91,7 @@ export class QueryGridComponent {
|
|
|
92
91
|
// bubble up the event to the parent component
|
|
93
92
|
this.rowClicked.emit(args.dataItem);
|
|
94
93
|
}
|
|
95
|
-
ngOnInit() {
|
|
96
|
-
}
|
|
94
|
+
ngOnInit() { }
|
|
97
95
|
ngAfterViewInit() {
|
|
98
96
|
//this.setGridHeight();
|
|
99
97
|
if (this.Params)
|
|
@@ -107,7 +105,7 @@ export class QueryGridComponent {
|
|
|
107
105
|
set AllowLoad(value) {
|
|
108
106
|
this._allowLoad = value;
|
|
109
107
|
if (value === true && this._deferLoadCount === 0) {
|
|
110
|
-
this._deferLoadCount++; // only do this one time
|
|
108
|
+
this._deferLoadCount++; // only do this one time
|
|
111
109
|
if (this.Params)
|
|
112
110
|
this.Refresh(this.Params);
|
|
113
111
|
return;
|
|
@@ -130,7 +128,7 @@ export class QueryGridComponent {
|
|
|
130
128
|
const rqResult = await rq.RunQuery(params);
|
|
131
129
|
if (!rqResult.Success) {
|
|
132
130
|
// it failed
|
|
133
|
-
this.CreateSimpleNotification(
|
|
131
|
+
this.CreateSimpleNotification('Error running view:\n\n' + rqResult.ErrorMessage, 'error', 5000);
|
|
134
132
|
}
|
|
135
133
|
else {
|
|
136
134
|
// it worked
|
|
@@ -143,16 +141,16 @@ export class QueryGridComponent {
|
|
|
143
141
|
this.isLoading = false;
|
|
144
142
|
}
|
|
145
143
|
else {
|
|
146
|
-
LogError(
|
|
144
|
+
LogError('Refresh(params) must have ViewID or ViewName or (EntityName and ExtraFilter)');
|
|
147
145
|
}
|
|
148
146
|
}
|
|
149
147
|
// Export Functionality
|
|
150
148
|
exportData = [];
|
|
151
149
|
async doExcelExport() {
|
|
152
150
|
if (this.kendoExcelExport === null)
|
|
153
|
-
throw new Error(
|
|
151
|
+
throw new Error('kendoExcelExport is null, cannot export data');
|
|
154
152
|
try {
|
|
155
|
-
this.CreateSimpleNotification(
|
|
153
|
+
this.CreateSimpleNotification('Working on the export, will notify you when it is complete...', 'info', 2000);
|
|
156
154
|
const data = await this.getExportData();
|
|
157
155
|
// we have the data.
|
|
158
156
|
this.exportData = data;
|
|
@@ -160,11 +158,11 @@ export class QueryGridComponent {
|
|
|
160
158
|
// the exportColumns and exportData arrays. So we wait for the next tick before we call save()
|
|
161
159
|
setTimeout(() => {
|
|
162
160
|
this.kendoExcelExport.save();
|
|
163
|
-
this.CreateSimpleNotification(
|
|
161
|
+
this.CreateSimpleNotification('Excel Export Complete', 'success', 2000);
|
|
164
162
|
}, 100);
|
|
165
163
|
}
|
|
166
164
|
catch (e) {
|
|
167
|
-
this.CreateSimpleNotification(
|
|
165
|
+
this.CreateSimpleNotification('Error exporting data', 'error', 5000);
|
|
168
166
|
LogError(e);
|
|
169
167
|
}
|
|
170
168
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ng-query-grid.component.js","sourceRoot":"","sources":["../../src/lib/ng-query-grid.component.ts","../../src/lib/ng-query-grid.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,EAAE,YAAY,EAAU,KAAK,EAAiB,MAAM,eAAe,CAAC;AAErH,OAAO,EAAE,QAAQ,EAAc,QAAQ,EAAgC,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ng-query-grid.component.js","sourceRoot":"","sources":["../../src/lib/ng-query-grid.component.ts","../../src/lib/ng-query-grid.component.html"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-query-grid",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.112.0",
|
|
4
4
|
"description": "MemberJunction: Angular Grid to display any MemberJunction Query",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -28,12 +28,11 @@
|
|
|
28
28
|
"@progress/kendo-angular-dialog": "16.2.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@memberjunction/core-entities": "2.
|
|
32
|
-
"@memberjunction/global": "2.
|
|
33
|
-
"@memberjunction/
|
|
34
|
-
"@memberjunction/ng-
|
|
35
|
-
"@memberjunction/ng-
|
|
36
|
-
"@memberjunction/ng-shared": "2.111.1",
|
|
31
|
+
"@memberjunction/core-entities": "2.112.0",
|
|
32
|
+
"@memberjunction/global": "2.112.0",
|
|
33
|
+
"@memberjunction/ng-container-directives": "2.112.0",
|
|
34
|
+
"@memberjunction/ng-compare-records": "2.112.0",
|
|
35
|
+
"@memberjunction/ng-shared": "2.112.0",
|
|
37
36
|
"tslib": "^2.3.0"
|
|
38
37
|
},
|
|
39
38
|
"sideEffects": false,
|