Giter Club home page Giter Club logo

Comments (5)

MrWolfZ avatar MrWolfZ commented on July 27, 2024

Hmm, I wasn't aware that reactive forms sets classes on elements. Can you point me to the documentation or some examples? In general I am not sure though if I would like to introduce this feature. If at all I'll make it optional. While I am thinking about this you could use the following custom directive to get what you want (I type these things up directly in the browser without even compiling so I can't guarantee that it will work, but it should provide you with a starting point):

@Directive({
  selector: '[ngrxFormControlState]',
})
export class SetFormControlClassDirective {
  @Input() set ngrxFormControlState(state: FormControlState<any>) {
    // put your logic here to set the classes whenever the state changes, e.g.
    if (state.isInvalid) {
      this.renderer.addClass(this.element.nativeElement, 'ngrx-forms-invalid');
    } else {
      this.renderer.removeClass(this.element.nativeElement, 'ngrx-forms-invalid');
    }
  };

  constructor(
    private element: Element,
    private renderer: Renderer2,
  ) {}
}

from ngrx-forms.

blissi avatar blissi commented on July 27, 2024

Thanks, I will try it out.
Regarding your question, see here: https://angular.io/guide/form-validation#control-status-css-classes

from ngrx-forms.

MrWolfZ avatar MrWolfZ commented on July 27, 2024

I'll leave this issue open to track this feature request.

from ngrx-forms.

blissi avatar blissi commented on July 27, 2024

Here is my implementation of it:

import {Directive, ElementRef, Input, Renderer2} from "@angular/core";
import {FormControlState} from "ngrx-forms";


/**
 * This directive automatically adds the Angular CSS classes to ngrx-forms controls.
 * See
 * https://angular.io/guide/form-validation#control-status-css-classes
 * and
 * https://github.com/MrWolfZ/ngrx-forms/issues/34#issuecomment-358785776
 */
@Directive({
	selector: "[ngrxFormControlState]",
})
export class NgrxSetFormControlClassDirective {
	@Input()
	set ngrxFormControlState(state: FormControlState<any>) {
		this.addOrRemoveCssClass(state.isValid, "ng-valid");
		this.addOrRemoveCssClass(state.isInvalid, "ng-invalid");
		this.addOrRemoveCssClass(state.isValidationPending, "ng-pending");
		this.addOrRemoveCssClass(state.isPristine, "ng-pristine");
		this.addOrRemoveCssClass(state.isDirty, "ng-dirty");
		this.addOrRemoveCssClass(state.isUntouched, "ng-untouched");
		this.addOrRemoveCssClass(state.isTouched, "ng-touched");
	};
	
	constructor(private element: ElementRef, private renderer: Renderer2,) {
	}
	
	private addOrRemoveCssClass(add: boolean, cssClass: string): void {
		if (add) {
			this.renderer.addClass(this.element.nativeElement, cssClass);
		} else {
			this.renderer.removeClass(this.element.nativeElement, cssClass);
		}
	}
}

from ngrx-forms.

MrWolfZ avatar MrWolfZ commented on July 27, 2024

I decided to include this feature unconditionally after all. I have just released version 2.3.0 which contains this feature. See the documentation for more details.

from ngrx-forms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.