@magic-xpa/angular 4.1100.0-dev4110.1 → 4.1100.0-dev4110.100
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 +5 -5
- package/esm2020/src/services/OverlayWindowService.mjs +37 -9
- package/esm2020/src/services/magic-color.service.mjs +1 -1
- package/esm2020/src/services/subform.magic.service.mjs +1 -1
- package/esm2020/src/services/table.magic.service.mjs +1 -1
- package/esm2020/src/services/task.magics.service.mjs +3 -3
- package/esm2020/src/ui/GuiInteractiveExecutor.mjs +8 -1
- package/esm2020/src/ui/components/base-magic-alert.component.mjs +1 -1
- package/esm2020/src/ui/components/base-magic-confirm.component.mjs +1 -1
- package/esm2020/src/ui/components/magic-alert.component.mjs +8 -8
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +11 -11
- package/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +8 -6
- package/esm2020/src/ui/directives/magic-focus.directive.mjs +1 -1
- package/esm2020/src/ui/directives/magic.directive.mjs +10 -5
- package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +1 -1
- package/esm2020/src/ui/magic-root.component.mjs +2 -2
- package/fesm2015/magic-xpa-angular.mjs +70 -34
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +70 -34
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/OverlayWindowService.d.ts +9 -3
- package/src/ui/GuiInteractiveExecutor.d.ts +1 -0
- package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +3 -2
- package/src/ui/directives/magic.directive.d.ts +4 -2
@@ -18,9 +18,9 @@ import * as i1$1 from '@angular/platform-browser';
|
|
18
18
|
import { maskitoTimeOptionsGenerator } from '@maskito/kit';
|
19
19
|
import * as i1$2 from '@angular/common/http';
|
20
20
|
import { HttpClientModule } from '@angular/common/http';
|
21
|
+
import * as i2$1 from '@angular/cdk/platform';
|
21
22
|
import { MaskitoModule } from '@maskito/angular';
|
22
23
|
import { NativeDateAdapter, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
|
23
|
-
import * as i1$3 from '@angular/cdk/platform';
|
24
24
|
|
25
25
|
class ControlMetadata {
|
26
26
|
constructor() {
|
@@ -734,6 +734,9 @@ class GuiInteractiveExecutor {
|
|
734
734
|
case InteractiveCommandType.GET_LAST_ROUTE:
|
735
735
|
this.OnGetLastRoute();
|
736
736
|
break;
|
737
|
+
case InteractiveCommandType.OPEN_FORM:
|
738
|
+
this.OnOpenForm();
|
739
|
+
break;
|
737
740
|
}
|
738
741
|
}
|
739
742
|
catch (ex) {
|
@@ -770,6 +773,10 @@ class GuiInteractiveExecutor {
|
|
770
773
|
OnMessageBox() {
|
771
774
|
this.overlayService.openConfirmationBox(this.command._mgValue.title, this.command._mgValue.str, this.command._mgValue.style);
|
772
775
|
}
|
776
|
+
OnOpenForm() {
|
777
|
+
if (this.command._boolVal)
|
778
|
+
this.overlayService.loadAndOpenModule(this.command.controlName, this.command._mgValue.str, this.command._mgValue.path);
|
779
|
+
}
|
773
780
|
OnSetTitle() {
|
774
781
|
this.task.setTitle(this.command._mgValue.title);
|
775
782
|
}
|
@@ -1261,13 +1268,13 @@ MagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicAlertComponent,
|
|
1261
1268
|
(function () {
|
1262
1269
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicAlertComponent, [{
|
1263
1270
|
type: Component,
|
1264
|
-
args: [{ selector: 'sample-magic-alert-component', template: `<div>
|
1265
|
-
<div class="mg-message-background">
|
1266
|
-
<h2> {{title}}</h2>
|
1267
|
-
<p>{{message}} </p>
|
1268
|
-
|
1269
|
-
<button (click)="OnClose()">OK</button>
|
1270
|
-
</div>
|
1271
|
+
args: [{ selector: 'sample-magic-alert-component', template: `<div>
|
1272
|
+
<div class="mg-message-background">
|
1273
|
+
<h2> {{title}}</h2>
|
1274
|
+
<p>{{message}} </p>
|
1275
|
+
|
1276
|
+
<button (click)="OnClose()">OK</button>
|
1277
|
+
</div>
|
1271
1278
|
</div>`, styles: [".mg-message-background{background-color:#f5f5f5;width:40%;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;padding:17px;border-radius:5px;text-align:center;margin-top:10%;margin-left:auto;margin-right:auto;border:1px solid gray}button{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}\n"] }]
|
1272
1279
|
}], null, null);
|
1273
1280
|
})();
|
@@ -1301,16 +1308,16 @@ MagicConfirmationBoxComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicConfir
|
|
1301
1308
|
(function () {
|
1302
1309
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicConfirmationBoxComponent, [{
|
1303
1310
|
type: Component,
|
1304
|
-
args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
|
1305
|
-
<div class="mg-message-background">
|
1306
|
-
<h2> {{title}}</h2>
|
1307
|
-
{{message}}
|
1308
|
-
<br>
|
1309
|
-
<br>
|
1310
|
-
|
1311
|
-
<button (click)="OnClose(true)">OK</button>
|
1312
|
-
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1313
|
-
</div>
|
1311
|
+
args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
|
1312
|
+
<div class="mg-message-background">
|
1313
|
+
<h2> {{title}}</h2>
|
1314
|
+
{{message}}
|
1315
|
+
<br>
|
1316
|
+
<br>
|
1317
|
+
|
1318
|
+
<button (click)="OnClose(true)">OK</button>
|
1319
|
+
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1320
|
+
</div>
|
1314
1321
|
</div>`, styles: [".mg-message-background{background-color:#f5f5f5;width:40%;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;padding:17px;border-radius:5px;text-align:center;margin-top:10%;margin-left:auto;margin-right:auto;border:1px solid gray}button{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}button.cancel{background-color:#c1c1c1}\n"] }]
|
1315
1322
|
}], null, null);
|
1316
1323
|
})();
|
@@ -1335,17 +1342,42 @@ ConfirmationComponentsMagicProvider.ɵprov = i0.ɵɵdefineInjectable({ token: Co
|
|
1335
1342
|
})();
|
1336
1343
|
|
1337
1344
|
class OverlayWindowService {
|
1338
|
-
constructor(componentFactoryResolver, componentList, engineMagicService, overlayContainerMagicProvider, confirmationComponentsMagicProvider) {
|
1345
|
+
constructor(componentFactoryResolver, componentList, engineMagicService, magicLazyModuleLoader, injector, compiler, overlayContainerMagicProvider, confirmationComponentsMagicProvider) {
|
1339
1346
|
this.componentFactoryResolver = componentFactoryResolver;
|
1340
1347
|
this.componentList = componentList;
|
1341
1348
|
this.engineMagicService = engineMagicService;
|
1349
|
+
this.magicLazyModuleLoader = magicLazyModuleLoader;
|
1350
|
+
this.injector = injector;
|
1351
|
+
this.compiler = compiler;
|
1342
1352
|
this.overlayContainerMagicProvider = overlayContainerMagicProvider;
|
1343
1353
|
this.confirmationComponentsMagicProvider = confirmationComponentsMagicProvider;
|
1344
1354
|
this.overlayWindowFocusManager = null;
|
1355
|
+
this.changeDetectorRef = null;
|
1345
1356
|
}
|
1346
|
-
init(overlayWindowsContainerViewRef, rootMagicElement) {
|
1357
|
+
init(overlayWindowsContainerViewRef, rootMagicElement, changeDetectorRef) {
|
1347
1358
|
this.overlayWindowsContainerViewRef = overlayWindowsContainerViewRef;
|
1348
1359
|
this.overlayWindowFocusManager = new OverlayWindowFocusManager(rootMagicElement);
|
1360
|
+
this.changeDetectorRef = changeDetectorRef;
|
1361
|
+
}
|
1362
|
+
loadAndOpenModule(formName, taskId, taskDescription) {
|
1363
|
+
let moduleRef = this.componentList.getModuleRef(formName);
|
1364
|
+
if (moduleRef == null) {
|
1365
|
+
let lazyLoadModule = this.componentList.getLazyLoadModuleData(formName);
|
1366
|
+
if (lazyLoadModule != null) {
|
1367
|
+
let moduleName = lazyLoadModule.moduleName.replace("Magic", "");
|
1368
|
+
moduleName = moduleName.replace("Module", "");
|
1369
|
+
this.magicLazyModuleLoader.Load(moduleName).then(m => {
|
1370
|
+
const compiled = this.compiler.compileModuleAndAllComponentsSync(m[lazyLoadModule.moduleName]);
|
1371
|
+
moduleRef = compiled.ngModuleFactory.create(this.injector);
|
1372
|
+
this.open(formName, taskId, taskDescription);
|
1373
|
+
this.finishConfirmation(Styles.MSGBOX_BUTTON_OK, true);
|
1374
|
+
});
|
1375
|
+
}
|
1376
|
+
}
|
1377
|
+
else {
|
1378
|
+
this.open(formName, taskId, taskDescription);
|
1379
|
+
this.finishConfirmation(Styles.MSGBOX_BUTTON_OK, true);
|
1380
|
+
}
|
1349
1381
|
}
|
1350
1382
|
open(formName, taskId, taskDescription) {
|
1351
1383
|
let comp = this.componentList.lazyLoadModulesMap != null && this.componentList.lazyLoadModulesMap.hasOwnProperty(formName) ? null : this.componentList.getComponent(formName);
|
@@ -1356,6 +1388,7 @@ class OverlayWindowService {
|
|
1356
1388
|
guiEvent.TaskID = taskId;
|
1357
1389
|
this.engineMagicService.insertEvent(guiEvent);
|
1358
1390
|
});
|
1391
|
+
this.changeDetectorRef.detectChanges();
|
1359
1392
|
}
|
1360
1393
|
close(commandStr) {
|
1361
1394
|
this.overlayWindowsContainerViewRef.remove();
|
@@ -1401,7 +1434,7 @@ class OverlayWindowService {
|
|
1401
1434
|
return componentRef;
|
1402
1435
|
}
|
1403
1436
|
}
|
1404
|
-
OverlayWindowService.ɵfac = function OverlayWindowService_Factory(t) { return new (t || OverlayWindowService)(i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(OverlayContainerMagicProvider), i0.ɵɵinject(ConfirmationComponentsMagicProvider)); };
|
1437
|
+
OverlayWindowService.ɵfac = function OverlayWindowService_Factory(t) { return new (t || OverlayWindowService)(i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(MagicLazyLoaderService), i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.Compiler), i0.ɵɵinject(OverlayContainerMagicProvider), i0.ɵɵinject(ConfirmationComponentsMagicProvider)); };
|
1405
1438
|
OverlayWindowService.ɵprov = i0.ɵɵdefineInjectable({ token: OverlayWindowService, factory: OverlayWindowService.ɵfac, providedIn: 'root' });
|
1406
1439
|
(function () {
|
1407
1440
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OverlayWindowService, [{
|
@@ -1409,7 +1442,7 @@ OverlayWindowService.ɵprov = i0.ɵɵdefineInjectable({ token: OverlayWindowServ
|
|
1409
1442
|
args: [{
|
1410
1443
|
providedIn: 'root'
|
1411
1444
|
}]
|
1412
|
-
}], function () { return [{ type: i0.ComponentFactoryResolver }, { type: ComponentListMagicService }, { type: EngineMagicService }, { type: OverlayContainerMagicProvider }, { type: ConfirmationComponentsMagicProvider }]; }, null);
|
1445
|
+
}], function () { return [{ type: i0.ComponentFactoryResolver }, { type: ComponentListMagicService }, { type: EngineMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.Compiler }, { type: OverlayContainerMagicProvider }, { type: ConfirmationComponentsMagicProvider }]; }, null);
|
1413
1446
|
})();
|
1414
1447
|
class OverlayWindowFocusManager {
|
1415
1448
|
constructor(rootMagicElement) {
|
@@ -1946,7 +1979,7 @@ class TaskMagicService {
|
|
1946
1979
|
if (isUndefined(val))
|
1947
1980
|
return val;
|
1948
1981
|
else
|
1949
|
-
return (val != null) ? +val : null;
|
1982
|
+
return (val != null) ? (typeof val === 'string') ? val : +val : null;
|
1950
1983
|
default:
|
1951
1984
|
return val;
|
1952
1985
|
}
|
@@ -2001,7 +2034,7 @@ class TaskMagicService {
|
|
2001
2034
|
}
|
2002
2035
|
onScrollDown() {
|
2003
2036
|
if (!this.Records.includesLast) {
|
2004
|
-
let guiEvent = getGuiEventObj('getRows', '
|
2037
|
+
let guiEvent = getGuiEventObj('getRows', '', 0);
|
2005
2038
|
guiEvent.Line = this.formGroups.length;
|
2006
2039
|
this.insertEvent(guiEvent);
|
2007
2040
|
}
|
@@ -2839,11 +2872,12 @@ class MagicDirective {
|
|
2839
2872
|
this.eventsOnlyVal = true;
|
2840
2873
|
}
|
2841
2874
|
;
|
2842
|
-
constructor(_task, element, renderer, vcRef, magicRow) {
|
2875
|
+
constructor(_task, element, renderer, vcRef, platform, magicRow) {
|
2843
2876
|
this._task = _task;
|
2844
2877
|
this.element = element;
|
2845
2878
|
this.renderer = renderer;
|
2846
2879
|
this.vcRef = vcRef;
|
2880
|
+
this.platform = platform;
|
2847
2881
|
this.magicRow = magicRow;
|
2848
2882
|
this.eventHandlers = {};
|
2849
2883
|
this.eventsOnlyVal = false;
|
@@ -2865,6 +2899,8 @@ class MagicDirective {
|
|
2865
2899
|
let fromButton = false;
|
2866
2900
|
if (this.htmlElement instanceof HTMLButtonElement)
|
2867
2901
|
fromButton = true;
|
2902
|
+
if (fromButton && (this.platform.IOS || this.platform.SAFARI))
|
2903
|
+
this.task.insertEvent(getGuiEventObj("focus", this.id, +this.rowId));
|
2868
2904
|
this.task.insertEvent(getGuiEventObj(event, this.id, +this.rowId, fromButton));
|
2869
2905
|
if (MagicDirective.noOfAutoCompleteBoxesOpened < 1)
|
2870
2906
|
e.cancelBubble = true;
|
@@ -3006,7 +3042,7 @@ class MagicDirective {
|
|
3006
3042
|
}
|
3007
3043
|
MagicDirective.opened = false;
|
3008
3044
|
MagicDirective.noOfAutoCompleteBoxesOpened = 0;
|
3009
|
-
MagicDirective.ɵfac = function MagicDirective_Factory(t) { return new (t || MagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3045
|
+
MagicDirective.ɵfac = function MagicDirective_Factory(t) { return new (t || MagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$1.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3010
3046
|
MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors: [["", "magic", ""]], inputs: { magic: "magic", eventsOnly: "eventsOnly", rowId: "rowId" } });
|
3011
3047
|
(function () {
|
3012
3048
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicDirective, [{
|
@@ -3015,7 +3051,7 @@ MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors:
|
|
3015
3051
|
selector: "[magic]"
|
3016
3052
|
}]
|
3017
3053
|
}], function () {
|
3018
|
-
return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: RowMagicDirective, decorators: [{
|
3054
|
+
return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$1.Platform }, { type: RowMagicDirective, decorators: [{
|
3019
3055
|
type: Optional
|
3020
3056
|
}] }];
|
3021
3057
|
}, { magic: [{
|
@@ -3032,8 +3068,8 @@ MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors:
|
|
3032
3068
|
class NoControlMagicDirective extends MagicDirective {
|
3033
3069
|
set magic(val) { this.id = val; this.selector = 'magicnc'; }
|
3034
3070
|
;
|
3035
|
-
constructor(_task, element, renderer, vcRef, magicRow) {
|
3036
|
-
super(_task, element, renderer, vcRef, magicRow);
|
3071
|
+
constructor(_task, element, renderer, vcRef, platform, magicRow) {
|
3072
|
+
super(_task, element, renderer, vcRef, platform, magicRow);
|
3037
3073
|
}
|
3038
3074
|
regEvents() {
|
3039
3075
|
super.regEvents();
|
@@ -3195,7 +3231,7 @@ class NoControlMagicDirective extends MagicDirective {
|
|
3195
3231
|
}
|
3196
3232
|
}
|
3197
3233
|
}
|
3198
|
-
NoControlMagicDirective.ɵfac = function NoControlMagicDirective_Factory(t) { return new (t || NoControlMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3234
|
+
NoControlMagicDirective.ɵfac = function NoControlMagicDirective_Factory(t) { return new (t || NoControlMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$1.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3199
3235
|
NoControlMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: NoControlMagicDirective, selectors: [["", "magicnc", ""]], inputs: { magic: ["magicnc", "magic"] }, features: [i0.ɵɵInheritDefinitionFeature] });
|
3200
3236
|
(function () {
|
3201
3237
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NoControlMagicDirective, [{
|
@@ -3204,7 +3240,7 @@ NoControlMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: NoControlMagicDir
|
|
3204
3240
|
selector: '[magicnc]'
|
3205
3241
|
}]
|
3206
3242
|
}], function () {
|
3207
|
-
return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: RowMagicDirective, decorators: [{
|
3243
|
+
return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$1.Platform }, { type: RowMagicDirective, decorators: [{
|
3208
3244
|
type: Optional
|
3209
3245
|
}] }];
|
3210
3246
|
}, { magic: [{
|
@@ -4126,7 +4162,7 @@ class MagicShellComponent {
|
|
4126
4162
|
this.engineMagicService.TerminateContextUsingFetchAPI();
|
4127
4163
|
}
|
4128
4164
|
ngAfterViewInit() {
|
4129
|
-
this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef.nativeElement);
|
4165
|
+
this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef.nativeElement, this.changeDetectorRef);
|
4130
4166
|
this.engineMagicService.startMagicEngine(this.httpClient);
|
4131
4167
|
}
|
4132
4168
|
setViewContainerRef(vcRef) {
|
@@ -4733,13 +4769,13 @@ class MgDateAdapter extends NativeDateAdapter {
|
|
4733
4769
|
}
|
4734
4770
|
}
|
4735
4771
|
}
|
4736
|
-
MgDateAdapter.ɵfac = function MgDateAdapter_Factory(t) { return new (t || MgDateAdapter)(i0.ɵɵinject(
|
4772
|
+
MgDateAdapter.ɵfac = function MgDateAdapter_Factory(t) { return new (t || MgDateAdapter)(i0.ɵɵinject(i2$1.Platform), i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(MAT_DATE_LOCALE)); };
|
4737
4773
|
MgDateAdapter.ɵprov = i0.ɵɵdefineInjectable({ token: MgDateAdapter, factory: MgDateAdapter.ɵfac });
|
4738
4774
|
(function () {
|
4739
4775
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MgDateAdapter, [{
|
4740
4776
|
type: Injectable
|
4741
4777
|
}], function () {
|
4742
|
-
return [{ type:
|
4778
|
+
return [{ type: i2$1.Platform }, { type: TaskMagicService }, { type: undefined, decorators: [{
|
4743
4779
|
type: Inject,
|
4744
4780
|
args: [MAT_DATE_LOCALE]
|
4745
4781
|
}] }];
|