Skip to content

Commit

Permalink
fix(forms): pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dtsanevmw committed Dec 12, 2023
1 parent c9f1855 commit 4308bc0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 27 deletions.
2 changes: 1 addition & 1 deletion projects/angular/clarity.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4834,7 +4834,7 @@ export const TOGGLE_SERVICE_PROVIDER: {
export function ToggleServiceFactory(): BehaviorSubject<boolean>;

// @public (undocumented)
export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, OnDestroy, DoCheck {
export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, DoCheck, OnDestroy {
constructor(vcr: ViewContainerRef, wrapperType: Type<W>, injector: Injector, ngControl: NgControl, renderer: Renderer2, el: ElementRef);
// (undocumented)
protected controlIdService: ControlIdService;
Expand Down
34 changes: 17 additions & 17 deletions projects/angular/src/forms/common/wrapped-control.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export enum CHANGE_KEYS {
}

@Directive()
export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, OnDestroy, DoCheck {
export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, DoCheck, OnDestroy {
_id: string;

protected renderer: Renderer2;
Expand Down Expand Up @@ -115,22 +115,6 @@ export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, OnD
}
}

ngDoCheck() {
if (this.differ) {
const changes = this.differ.diff(this.ngControl);
if (changes) {
changes.forEachChangedItem(change => {
if (
(change.key === CHANGE_KEYS.FORM || change.key === CHANGE_KEYS.MODEL) &&
change.currentValue !== change.previousValue
) {
this.triggerValidation();
}
});
}
}
}

ngOnInit() {
this._containerInjector = new HostWrapper(this.wrapperType, this.vcr, this.index);
this.controlIdService = this._containerInjector.get(ControlIdService);
Expand All @@ -151,6 +135,22 @@ export class WrappedFormControl<W extends DynamicWrapper> implements OnInit, OnD
}
}

ngDoCheck() {
if (this.differ) {
const changes = this.differ.diff(this.ngControl);
if (changes) {
changes.forEachChangedItem(change => {
if (
(change.key === CHANGE_KEYS.FORM || change.key === CHANGE_KEYS.MODEL) &&
change.currentValue !== change.previousValue
) {
this.triggerValidation();
}
});
}
}
}

ngOnDestroy() {
this.subscriptions.forEach(sub => sub.unsubscribe());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ <h1>Dynamic Control Demo</h1>
<p>
We have a State service which have three statuses: NONE, INVALID, VALID. Success and Error messages are shown based on
the value of this state service but if you bind formControl \ ngModel to a control that is currently not available and
then add it dynamically while marking it as touched and updateValueValidility status change doesn't trigger and state
service value is not updated.
then add it dynamically with initial value while marking it as touched and updateValueValidility status change doesn't
trigger and state service value is not updated.
</p>
<br />
<label for="steps"> Steps to test:</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { ChangeDetectorRef, Component } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { filter, takeUntil, tap } from 'rxjs/operators';

@Component({
selector: 'dynamic-controls-demo',
Expand All @@ -25,18 +25,20 @@ export class DynamicControlsDemo {
ngOnInit() {
this.form
.get('platform')
?.valueChanges.pipe(takeUntil(this.destroyed))
.subscribe(res => {
console.log(res);
if (res === 'two') {
?.valueChanges.pipe(
takeUntil(this.destroyed),
filter(value => value === 'two'),
tap(() => {
this.form.addControl('control', new FormControl('test'));
this.form.get('control')?.markAsTouched();
this.form.get('control')?.updateValueAndValidity();
}
});
})
)
.subscribe();
}

ngOnDestroy() {
this.destroyed.next();
this.destroyed.complete();
}
}

0 comments on commit 4308bc0

Please sign in to comment.