@ecodev/natural 45.1.0 → 45.1.1
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/esm2020/lib/classes/utility.mjs +1 -6
- package/esm2020/lib/modules/dropdown-components/type-select/type-select.component.mjs +2 -2
- package/esm2020/lib/modules/fixed-button-detail/fixed-button-detail.component.mjs +8 -4
- package/esm2020/lib/modules/logger/error-handler.mjs +2 -4
- package/fesm2015/ecodev-natural.mjs +8 -13
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +8 -13
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/classes/utility.d.ts +2 -0
- package/lib/modules/fixed-button-detail/fixed-button-detail.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@angular/localize/init';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
import { Directive, Component, Inject, Injectable, HostBinding, HostListener, InjectionToken, Input, NgModule, EventEmitter, ChangeDetectionStrategy, Output, ContentChildren, Pipe, TemplateRef, ViewEncapsulation, ViewChild, Injector, Optional, Self, ContentChild, createEnvironmentInjector, createComponent, PLATFORM_ID, ErrorHandler } from '@angular/core';
|
|
4
|
-
import { Subject, BehaviorSubject, of, timer, switchMap as switchMap$1, endWith, last, EMPTY, Observable, first as first$1, combineLatest, ReplaySubject, debounceTime as debounceTime$1, raceWith, take as take$1, mergeMap, shareReplay as shareReplay$1, catchError, forkJoin, map as map$1, merge as merge$1, tap as tap$1, asyncScheduler } from 'rxjs';
|
|
4
|
+
import { Subject, BehaviorSubject, of, timer, switchMap as switchMap$1, endWith, last, EMPTY, Observable, first as first$1, combineLatest, ReplaySubject, debounceTime as debounceTime$1, raceWith, take as take$1, mergeMap, shareReplay as shareReplay$1, catchError, forkJoin, map as map$1, merge as merge$1, tap as tap$1, asyncScheduler, takeUntil as takeUntil$1 } from 'rxjs';
|
|
5
5
|
import * as i3 from '@angular/forms';
|
|
6
6
|
import { FormGroup, FormArray, Validators, UntypedFormGroup, UntypedFormArray, UntypedFormControl, FormsModule, FormControl, FormControlDirective, FormControlName, ReactiveFormsModule } from '@angular/forms';
|
|
7
7
|
import * as i2$1 from '@angular/router';
|
|
@@ -213,11 +213,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
213
213
|
args: ['click']
|
|
214
214
|
}] } });
|
|
215
215
|
|
|
216
|
-
/**
|
|
217
|
-
* Very basic formatting to get only date, without time and ignoring entirely the timezone
|
|
218
|
-
*
|
|
219
|
-
* So something like: "2021-09-23"
|
|
220
|
-
*/
|
|
221
216
|
function formatIsoDate(date) {
|
|
222
217
|
if (!date) {
|
|
223
218
|
return null;
|
|
@@ -5553,7 +5548,7 @@ class TypeSelectComponent extends NaturalAbstractController {
|
|
|
5553
5548
|
this.items = items;
|
|
5554
5549
|
// Reload selection, according to possible values from configuration
|
|
5555
5550
|
const possibleIds = this.items.map(item => this.getId(item));
|
|
5556
|
-
const wantedAndPossibleIds = wantedIds.filter(id =>
|
|
5551
|
+
const wantedAndPossibleIds = wantedIds.filter(id => possibleIds.some(i => i === id));
|
|
5557
5552
|
return wantedAndPossibleIds;
|
|
5558
5553
|
}));
|
|
5559
5554
|
}
|
|
@@ -8806,13 +8801,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImpor
|
|
|
8806
8801
|
* Public API Surface of natural
|
|
8807
8802
|
*/
|
|
8808
8803
|
|
|
8809
|
-
class NaturalFixedButtonDetailComponent {
|
|
8804
|
+
class NaturalFixedButtonDetailComponent extends NaturalAbstractController {
|
|
8810
8805
|
constructor(route) {
|
|
8806
|
+
super();
|
|
8811
8807
|
this.canChange = true;
|
|
8812
8808
|
this.isCreation = false;
|
|
8813
8809
|
this.create = new EventEmitter();
|
|
8814
8810
|
this.delete = new EventEmitter();
|
|
8815
|
-
route.params.subscribe(() => (this.canChange = true));
|
|
8811
|
+
route.params.pipe(takeUntil$1(this.ngUnsubscribe)).subscribe(() => (this.canChange = true));
|
|
8816
8812
|
}
|
|
8817
8813
|
get model() {
|
|
8818
8814
|
return this._model;
|
|
@@ -8821,6 +8817,7 @@ class NaturalFixedButtonDetailComponent {
|
|
|
8821
8817
|
this._model = value;
|
|
8822
8818
|
if (this.canChange) {
|
|
8823
8819
|
this.isCreation = !this._model.id;
|
|
8820
|
+
this.canChange = false;
|
|
8824
8821
|
}
|
|
8825
8822
|
}
|
|
8826
8823
|
clickCreate() {
|
|
@@ -8835,7 +8832,7 @@ class NaturalFixedButtonDetailComponent {
|
|
|
8835
8832
|
}
|
|
8836
8833
|
}
|
|
8837
8834
|
NaturalFixedButtonDetailComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalFixedButtonDetailComponent, deps: [{ token: i2$1.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
8838
|
-
NaturalFixedButtonDetailComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: NaturalFixedButtonDetailComponent, selector: "natural-fixed-button-detail", inputs: { model: "model", form: "form" }, outputs: { create: "create", delete: "delete" }, ngImport: i0, template: "<natural-fixed-button\n (click)=\"clickCreate()\"\n *ngIf=\"isCreation\"\n [disabled]=\"form.disabled\"\n [color]=\"form.valid ? 'accent' : 'warn'\"\n class=\"detail-speed-dial\"\n icon=\"save\"\n></natural-fixed-button>\n\n<natural-fixed-button\n (click)=\"clickDelete()\"\n *ngIf=\"!isCreation && (!model.permissions || model.permissions.delete)\"\n [disabled]=\"form.disabled\"\n class=\"detail-speed-dial\"\n color=\"warn\"\n icon=\"delete_forever\"\n i18n-matTooltip\n matTooltip=\"Supprimer d\u00E9finitivement\"\n matTooltipPosition=\"left\"\n></natural-fixed-button>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: NaturalFixedButtonComponent, selector: "natural-fixed-button", inputs: ["icon", "link", "color", "disabled"] }, { kind: "directive", type: i7.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }] });
|
|
8835
|
+
NaturalFixedButtonDetailComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.1", type: NaturalFixedButtonDetailComponent, selector: "natural-fixed-button-detail", inputs: { model: "model", form: "form" }, outputs: { create: "create", delete: "delete" }, usesInheritance: true, ngImport: i0, template: "<natural-fixed-button\n (click)=\"clickCreate()\"\n *ngIf=\"isCreation\"\n [disabled]=\"form.disabled\"\n [color]=\"form.valid ? 'accent' : 'warn'\"\n class=\"detail-speed-dial\"\n icon=\"save\"\n></natural-fixed-button>\n\n<natural-fixed-button\n (click)=\"clickDelete()\"\n *ngIf=\"!isCreation && (!model.permissions || model.permissions.delete)\"\n [disabled]=\"form.disabled\"\n class=\"detail-speed-dial\"\n color=\"warn\"\n icon=\"delete_forever\"\n i18n-matTooltip\n matTooltip=\"Supprimer d\u00E9finitivement\"\n matTooltipPosition=\"left\"\n></natural-fixed-button>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: NaturalFixedButtonComponent, selector: "natural-fixed-button", inputs: ["icon", "link", "color", "disabled"] }, { kind: "directive", type: i7.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }] });
|
|
8839
8836
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.1", ngImport: i0, type: NaturalFixedButtonDetailComponent, decorators: [{
|
|
8840
8837
|
type: Component,
|
|
8841
8838
|
args: [{ selector: 'natural-fixed-button-detail', template: "<natural-fixed-button\n (click)=\"clickCreate()\"\n *ngIf=\"isCreation\"\n [disabled]=\"form.disabled\"\n [color]=\"form.valid ? 'accent' : 'warn'\"\n class=\"detail-speed-dial\"\n icon=\"save\"\n></natural-fixed-button>\n\n<natural-fixed-button\n (click)=\"clickDelete()\"\n *ngIf=\"!isCreation && (!model.permissions || model.permissions.delete)\"\n [disabled]=\"form.disabled\"\n class=\"detail-speed-dial\"\n color=\"warn\"\n icon=\"delete_forever\"\n i18n-matTooltip\n matTooltip=\"Supprimer d\u00E9finitivement\"\n matTooltipPosition=\"left\"\n></natural-fixed-button>\n" }]
|
|
@@ -10895,9 +10892,7 @@ class NaturalErrorHandler extends ErrorHandler {
|
|
|
10895
10892
|
if (this.url) {
|
|
10896
10893
|
this.http
|
|
10897
10894
|
.post(this.url, params, { headers: new HttpHeaders().set('content-type', 'application/json') })
|
|
10898
|
-
.pipe(catchError(() =>
|
|
10899
|
-
return EMPTY;
|
|
10900
|
-
}))
|
|
10895
|
+
.pipe(catchError(() => EMPTY))
|
|
10901
10896
|
.subscribe();
|
|
10902
10897
|
}
|
|
10903
10898
|
}
|