npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-form-fields

v0.0.4

Published

Adding rml-field to template will build the required reactiveforms definitions automatically. Create custom form fields.

Downloads

14

Readme

Example of Form Feilds

@Component({
  template: `
    <rml-form #appFrom (submitForm)="onSubmit($event)" class="container" [query="query$">

      <!--  Standard form input types -->
      <rml-field type="text" key="id" disabled="true"></rml-field>
      <rml-field type="textarea" key="notes" label="Notes" required></rml-field>

      <!--  Create Custom field template -->
      <app-custom-field type="select" key="firstName" ></app-custom-field>

      <!--  Group validation -->
      <rml-field-group key="pax" [validator]="paxValidator">
        <rml-field type="email" key="emailAddress" required></rml-field>
        <rml-field type="email" key="emailAddressConfirm" required></rml-field>
      </rml-field-group>

      <!--  Show/Hide visiblity of fields -->
      <rml-field type="select" key="brave" [options]="braveOptions" required  [visible]="showBrave" ></rml-field>
      <rml-field type="checkbox" key="showBrave" (valueChanges)="showBraveChange($event)" ></rml-field>

      <div class="alert alert-danger" *ngIf="appFrom.error">{{appFrom.error}} </div>

      <div class="form-row">
        <button type="submit" class="btn btn-primary {{appFrom.valid  ? '': 'is-invalid'}}"
          (click)="appFrom.submit()">Save</button>
      </div>

    </rml-form>
  `,
})
export class StudentComponent implements OnInit {

  query$: Observable<any>;
  paxValidator: ValidatorOption;
  showBrave = true;
  braveOptions = [];

  constructor() {

    // this.query$ = this.qx.call(queryStr).pipe(
    //   map((result) => result?.data?.students[0]));
    this.braveOptions = [
      { key: 'solid', value: 'Solid' },
      { key: 'great', value: 'Great' },
      { key: 'good', value: 'Good' },
      { key: 'unproven', value: 'Unproven' }];

  }

  ngOnInit(): void {

    this.paxValidator = {
      key: 'emailCompare',
      validator: (c: FormGroup): ValidationErrors | null => {
        const e1 = c.get('emailAddress').value || '';
        const e2 = c.get('emailAddressConfirm').value || '';
        if (e1 === '' || e2 === '') { return null; }
        if (e1 !== e2) { return { error: true }; }
        return null;
      },
      error: ' Emails to not match.'
    };

  } 


  onSubmit(value) {
    // if (this.validate()) {
    //   this.payLoad = JSON.stringify(this.form.getRawValue());
    // }
  }

  showBraveChange(value) {
    this.showBrave = !this.showBrave;
  }

}

Example of Custom Field Component

@Component({
  selector: 'app-custom-field',
  template: `
  <div class="{{groupClass}}" [formGroup]="form" *ngIf="visible">
    <label [ngClass]="{'required': required }" [attr.for]="guid">{{label}}</label>

    <!-- you could put in a switchcase for multiple field types here -->
    <input class="{{inputClass}}" [formControlName]="key"
      [ngClass]="{'is-invalid': error }" [attr.readOnly]="readonly?'':null" [attr.disabled]="disabled?'':null"
      (blur)="blur()" [id]="guid" type="text" placeholder="{{placeHolder || label}}">

    <span class="invalid-feedback {{error ? 'd-block': '' }}">{{error}}</span>
  </div>
  `
})
export class MyFieldComponent extends FieldComponent {

  constructor(
    @SkipSelf() formComponent: FormComponent,
    @Optional() @SkipSelf() fieldGroupComponent: FieldGroupComponent) {
    super(formComponent, fieldGroupComponent);
  }

}

Using Custom component

<rml-form #appFrom (submitForm)="onSubmit($event)" class="container" [query]="query$">

  <!-- Using custom component -->
  <app-custom-field type="text" key="firstName"  ></app-custom-field>

</rml-form>