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

angular-formatter-parser

v0.2.1

Published

This library provides an option to hook into the value flow of inputs and other "editable" html elements. Easy to implement and elegant to use it also provides the possibility to register custom transform functions over a InjectionToken.

Downloads

89

Readme

angular-formatter-parser

Angular Formatter Parser - The AngularJS Port

This library provides an option to hook into the value flow of inputs and other "editable" html elements. Easy to implement and elegant to use it also provides the possibility to register custom transform functions over a InjectionToken.

License NPM Version Build Status Coverage Status

Demo

Angular-Formatter-Psrser

Basic Usage:

Implement Library

$ npm install angular-formatter-parser --save
// app.module.ts
...
// IMPORT YOUR LIBRARY
import { FormatterParserModule } from 'angular-formatter-parser';

@NgModule({
  imports: [
    ...
    FormatterParserModule.forRoot();
  ]
  ...
})
export class AppModule { }

Create formatterParser config object

// app.component.ts
...
import { IFormatterParserConfig } from 'angular-formatter-parser/struct/formatter-parser-config';

@Component({
  selector: 'app-basic-usage',
  templateUrl: './basic-usage.component.html',
  styleUrls: ['./basic-usage.component.scss']
})
export class BasicUsageComponent {

  fPConfig: IFormatterParserConfig = {
    formatterParser:[
     { name: 'toCapitalized' }
    ]
  }

  constructor() { }

}

Use directive with config object

// app.component.html
<input type="text" [formatterParser]="fPConfig">

Usage with Reactive Forms

Create FormGroup

// app.component.ts

...
export class BasicUsageComponent {

  fPConfig: IFormatterParserConfig = {
    ...
  }

  formGroup: FormGroup;

  constructor(private fb: FormBuilder) {
    this.basicFormGroup = this.fb.group({ name: [] });
  }

}

Set formGroup and formControlName

// app.component.html
<form [formGroup]="formGroup">
  <input type="text" formControlName="name" [formatterParser]="fPConfig">
  {{formGroup.get('name').value}}
</form>

Specify the target (transform the value of the view or the model)

// app.component.ts
...
export class BasicUsageComponent {

  fPConfig: IFormatterParserConfig = {
    formatterParser:[
     //0 for view, 1 for model, 2 or nothing for both
     { name: 'toCapitalized', target: 0  }
    ]
  }

}

Use multiple transform functions

// app.component.ts
...
  fPConfig: IFormatterParserConfig = {
    formatterParser:[
     { name: 'toCapitalized', target: 0},
     { name: 'replaceString',  params: [/ /g, ''], target: 1 }
    ]
  }
...

Use custom transform function

Create custom function

//add-questionmark-transform.ts
import { IFormatterParserFn } from 'angular-formatter-parser/struct/formatter-parser-function';

export function addQuestionmark(value:any): IFormatterParserResult {
    const transformadValue = value;
    const result:IFormatterParserResult = {
      name: "addQuestionmark",
      result : transformadValue+'?',
      previous: value
    };

    return result;
}

Provide the function over the FORMATTER_PARSER token

// app.module.ts

...
// IMPORT FORMATTER_PARSER
import { FORMATTER_PARSER, FormatterParserModule } from 'angular-formatter-parser';
...

@NgModule({
  ...
  providers: [
    { provide: FORMATTER_PARSER, useValue: addQuestionmark, multi: true }
  ]
  ...
})
export class AppModule {

}

Use custom transform function in config object

// app.component.ts
...
export class BasicUsageComponent {

  fPConfig: IFormatterParserConfig = {
    formatterParser:[
     { name: 'addQuestionMark' }
    ]
  }

}

Built in transform functions

What it is

The angular FormatterParser library in a port of the Angular 1.x ngModel.$formatter and ngModel.$parser implementation.

It is implemented as an configurable directive which mimics the angular reactive-forms validation.

Like the Validators service provides a set default validation functions there is a FormatterParser service that provides a set of default transform functions.

When you custom a custom validator you implement the ValidatorFn on your custom validation function. Then you implement ControlValueAccessor and use the NG_VALIDATORS token to hook into the validation section and provide your custom function as a validator.

Same with transform functions with a little more options. As you know in angular1 we have $parser and $formatter. $parser, the array of transform functions that are called when the model changes and updates the HtmlInputElement value. And $formatter, the array of transform functions that are called when the HtmlInputElement fires it's input event with changes and updates the model.

We hook into the two directions by using the ControlValueAccessor for the $formatter direction, and the @HostListener('input') to hook into the $parser direction.

To register our transform functions we use the FORMATTER_PARSER token to provide our functions

To apply validators to a FormControl you setup an array of validator functions, default or custom and provide it under the validators key in the FormControl constructor parmas.

To apply transform functions to a FormControl use use the formatterParser directive which also binds a config array. But instead of providing an array of validator functions use just provide an array of strings that are the name of the transform functions. the directive automatically recogizes the strings and finds the related transform function. Your custom transform functions can be registered under FORMATTER_PARSER, similar as you would with NG_VALIDATORS.

License

MIT © Michael Hladky

Copyright 2017 Michael Hladky. All Rights Reserved. Use of this source code is governed by an MIT-style license that can be found in the LICENSE file at angular-formatter-parser