Skip to content

Instantly share code, notes, and snippets.

@umairhm
Created July 26, 2020 02:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save umairhm/9f5acc1f41d10c75bfe186650f2ef804 to your computer and use it in GitHub Desktop.
Save umairhm/9f5acc1f41d10c75bfe186650f2ef804 to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
import { coerceNumberProperty } from '@angular/cdk/coercion'; // NEW IMPORT
@Component({
selector: 'number-coercion',
template: `...`
})
export class NumberCoercionComponent {
// In the following code, `@Input numberOne` will NOT work with strict type checking
// But we'll make the `@Input numberTwo` to work with strict type checking as well
// Declare private properties to hold coerced numbers
private _numberOne: number;
private _numberTwo: number;
// We have to separate this getter and name it differently to be used in the template
// This works in combination with the `@Input set numberTwo` defined on line 36
get coercedNumberTwo(): number {
return this._numberTwo;
}
// Use setter to call coerceNumberProperty method and convert passed value to number
@Input()
get numberOne(): number {
return this._numberOne;
}
set numberOne(val: number) {
this._numberOne = coerceNumberProperty(val);
}
// Note that the val parameter excepts value of type 'any'
// We have to do this for strict type checking to work properly
// 'coerceNumberProperty' method takes a second parameter
// The second parameter is the fallback or default value
@Input()
set numberTwo(val: any) {
this._numberTwo = coerceNumberProperty(val, 12);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment