How to implement Notification based on user's action in React JS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
In my web application, based on some action happened from user, in my case whenever the details are exchanged between two users, backend will send a notification message to Front End. I need to display that message in UI like a message in a pop up. Upon closing the modal, the notification should disappear and appear again if the data is shared between the two users again.I am not sure if I have to use service workers for this. I have a React application, not sure if making an api call on every page load will help. Can someone let me know how can I implement this.
My Notification api-
"name": "http://localhost:8056/getnotifications?username=harveyspectre&policyno=11111",
"request":
"url":
"raw": "http://localhost:8056/getnotificationsusername=harveyspectre&policyno=11111",
"protocol": "http",
"host": [
"localhost"
],
"port": "8056",
"path": [
"getnotifications"
],
"query": [
"key": "username",
"value": "Harvey Spectre",
"equals": true,
"description": ""
,
"key": "policyno",
"value": "11111",
"equals": true,
"description": ""
],
"variable":
,
"method": "GET",
"header": ,
"body": ,
"description": ""
,
"response":
javascript reactjs
add a comment |
In my web application, based on some action happened from user, in my case whenever the details are exchanged between two users, backend will send a notification message to Front End. I need to display that message in UI like a message in a pop up. Upon closing the modal, the notification should disappear and appear again if the data is shared between the two users again.I am not sure if I have to use service workers for this. I have a React application, not sure if making an api call on every page load will help. Can someone let me know how can I implement this.
My Notification api-
"name": "http://localhost:8056/getnotifications?username=harveyspectre&policyno=11111",
"request":
"url":
"raw": "http://localhost:8056/getnotificationsusername=harveyspectre&policyno=11111",
"protocol": "http",
"host": [
"localhost"
],
"port": "8056",
"path": [
"getnotifications"
],
"query": [
"key": "username",
"value": "Harvey Spectre",
"equals": true,
"description": ""
,
"key": "policyno",
"value": "11111",
"equals": true,
"description": ""
],
"variable":
,
"method": "GET",
"header": ,
"body": ,
"description": ""
,
"response":
javascript reactjs
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56
add a comment |
In my web application, based on some action happened from user, in my case whenever the details are exchanged between two users, backend will send a notification message to Front End. I need to display that message in UI like a message in a pop up. Upon closing the modal, the notification should disappear and appear again if the data is shared between the two users again.I am not sure if I have to use service workers for this. I have a React application, not sure if making an api call on every page load will help. Can someone let me know how can I implement this.
My Notification api-
"name": "http://localhost:8056/getnotifications?username=harveyspectre&policyno=11111",
"request":
"url":
"raw": "http://localhost:8056/getnotificationsusername=harveyspectre&policyno=11111",
"protocol": "http",
"host": [
"localhost"
],
"port": "8056",
"path": [
"getnotifications"
],
"query": [
"key": "username",
"value": "Harvey Spectre",
"equals": true,
"description": ""
,
"key": "policyno",
"value": "11111",
"equals": true,
"description": ""
],
"variable":
,
"method": "GET",
"header": ,
"body": ,
"description": ""
,
"response":
javascript reactjs
In my web application, based on some action happened from user, in my case whenever the details are exchanged between two users, backend will send a notification message to Front End. I need to display that message in UI like a message in a pop up. Upon closing the modal, the notification should disappear and appear again if the data is shared between the two users again.I am not sure if I have to use service workers for this. I have a React application, not sure if making an api call on every page load will help. Can someone let me know how can I implement this.
My Notification api-
"name": "http://localhost:8056/getnotifications?username=harveyspectre&policyno=11111",
"request":
"url":
"raw": "http://localhost:8056/getnotificationsusername=harveyspectre&policyno=11111",
"protocol": "http",
"host": [
"localhost"
],
"port": "8056",
"path": [
"getnotifications"
],
"query": [
"key": "username",
"value": "Harvey Spectre",
"equals": true,
"description": ""
,
"key": "policyno",
"value": "11111",
"equals": true,
"description": ""
],
"variable":
,
"method": "GET",
"header": ,
"body": ,
"description": ""
,
"response":
javascript reactjs
javascript reactjs
edited Nov 16 '18 at 12:49
techie questie
asked Nov 16 '18 at 12:44
techie questietechie questie
257520
257520
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56
add a comment |
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53338178%2fhow-to-implement-notification-based-on-users-action-in-react-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53338178%2fhow-to-implement-notification-based-on-users-action-in-react-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
firebase.google.com/docs/cloud-messaging/js/receive
– Ravi Patel
Nov 16 '18 at 12:49
Check this link you can receive fcm push notifications on index.html file. After that you can send your notification data to your appropriate React screen using custom events.
– Ravi Patel
Nov 16 '18 at 12:50
But it has to listen continuously to the event on all the screens.
– techie questie
Nov 16 '18 at 12:53
If your requirement is to just show as modal then you can directly do on index.html file. No need to pass custom events.
– Ravi Patel
Nov 16 '18 at 12:56