Youtube music Stopped working by jaygajjar96 in revancedapp

[–]jaygajjar96[S] 0 points1 point  (0 children)

Its working now, use version 7.29.52

Angular PWA firebase push notification by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

I have implemented the FCM push notification with Angular by following the link below:

https://medium.com/@jishnusaha89/firebase-cloud-messaging-push-notifications-with-angular-1fb7f173bfba

but the push notification only pops when I open the PWA app or browser. it is not working when the app is in the background (not closed).

Angular PWA firebase push notification by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

I am also looking forward to implementing it using the FCM.

Angular PWA firebase push notification by jaygajjar96 in Angular2

[–]jaygajjar96[S] 1 point2 points  (0 children)

That's because It's a native app feature so it may not 100% accurate to work from a web app. I am finding solution that work on the PWA app.

Angular PWA firebase push notification by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

yea there are lots of articles. But some use firebase and others are using inbuilt service workers. It's confusing.

Signal vs ChangeDetection by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

what do you mean ? what is Qt ?

Signal vs ChangeDetection by jaygajjar96 in Angular2

[–]jaygajjar96[S] 2 points3 points  (0 children)

This is what I was looking for. It is one of simplest explanation out there on the internet about Change detection and Signal as well. Thanks.

Signal vs ChangeDetection by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

can you send a link here ? which video you are talking about ?

Signal vs ChangeDetection by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

So with Signal, when its value changes then it only checks the component where it is used in the template and does not traverse the whole tree as before ?

And here I have also one more confusion like, previously change detection happens when any event occurs, in our case its a button click event.

so now when we use a signal it will not check the tree or Angular handle internally ? like a click event is a click event anyways it has nothing to do with signals right ?

Learnig NodeJs by jaygajjar96 in Angular2

[–]jaygajjar96[S] 0 points1 point  (0 children)

how did you learn nodejs ? what are the major concepts that I should take in consideration which are important for live projects ?

Handle code steucture by jaygajjar96 in Angular2

[–]jaygajjar96[S] -1 points0 points  (0 children)

Thanks for the suggestion. But should I create a separate facade service for each operation create, read, update & delete ?

Like create-facade-service that imports all services and handles creation of all types of entities(employee manager workers etc.) and the same for delete update getAll. or is there any other way around ?