2.0.0 • Published 4 years ago

@magnal/ng-utils v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

@magnal / ng-utils

Some Angular utils which I use in my projects.

Decorators

@InputFlag()

Turns a boolean @Input() from a directive or component into a flag to make the following statement work...

Example

@Input()
@InputFlag()
public myBool:boolean;
<my-component myBool></my-component>

<!-- ... is the same as ... -->
<my-component [myBool]="true"></my-component>

@InputObservable()

Turns an @Input() to an Observable.

Example

@Input()
public myData:string;

@InputObservable()
public myData$:Observable<string>;

Matches the @Input() name without $ sign.

@InputChanged()

Creates a method which is called when the @Input() value is changed.

This makes use of Angular ngOnChanges lifecycle hook. To make it work with aot, an empty ngOnChanges method needs to be present.

Example

@Input()
public myData:string;

@InputChanged()
public myDataChanged():void
{
  // make something with this.myData
}

// alternatively you can access 
   */

Pipes

negate

The negate pipes negates a statement. Simple as that.

Example

<!-- myStatement = false; -->

<div *ngIf="myStatement | negate">
  This is shown!
</div>

Functions

arrayify

Always creates an array if given data isn't already.

onlyOne

Returns the one and only item in an array. When there are multiple items, it returns null.

2.1.0-rc.1

4 years ago

2.0.0

4 years ago

1.1.0

5 years ago

1.0.0

5 years ago