angular2-busy icon indicating copy to clipboard operation
angular2-busy copied to clipboard

Unfortunately it is not usable at all

Open montella1507 opened this issue 7 years ago • 0 comments

In real angular APP, you do not use http observable directly, you want to use real data = TRUE/FALSE.

So if this should have been usable, you would have added support for TRUE/FALSE direct binding. :-(

[ngBusy]="booleanValue"

in normal production ready application, your components have never ever access to services, they have theirs INPUTs, like [loading]="value" and it is Boolean and it is taken from store (ngrx/redux anything).

From your services, you will just update boolean value in the store (for example with @ngrx/effects, or in normalne subscriptions).

Access services and subscriptions directly in your component is bad behavior and i think not to support it is your wish.

montella1507 avatar May 22 '17 20:05 montella1507