152 lines
4.5 KiB
JavaScript
152 lines
4.5 KiB
JavaScript
import { getAnalytics, logEvent } from "firebase/analytics";
|
|
import { initializeApp } from "firebase/app";
|
|
import { getAuth, updatePassword, updateProfile } from "firebase/auth";
|
|
import { getFirestore } from "firebase/firestore";
|
|
import { getMessaging, getToken, onMessage } from "firebase/messaging";
|
|
import { store } from "../redux/store";
|
|
|
|
const config = JSON.parse(process.env.REACT_APP_FIREBASE_CONFIG);
|
|
initializeApp(config);
|
|
|
|
export const auth = getAuth();
|
|
export const firestore = getFirestore();
|
|
export const analytics = getAnalytics();
|
|
|
|
//export default firebase;
|
|
export const getCurrentUser = () => {
|
|
return new Promise((resolve, reject) => {
|
|
const unsubscribe = auth.onAuthStateChanged((userAuth) => {
|
|
unsubscribe();
|
|
resolve(userAuth);
|
|
}, reject);
|
|
});
|
|
};
|
|
|
|
export const updateCurrentUser = (userDetails) => {
|
|
return new Promise((resolve, reject) => {
|
|
const unsubscribe = auth.onAuthStateChanged((userAuth) => {
|
|
updateProfile(userAuth, userDetails).then((r) => {
|
|
unsubscribe();
|
|
resolve(userAuth);
|
|
});
|
|
}, reject);
|
|
});
|
|
};
|
|
|
|
export const updateCurrentPassword = async (password) => {
|
|
const currentUser = await getCurrentUser();
|
|
|
|
return updatePassword(currentUser, password);
|
|
};
|
|
let messaging;
|
|
try {
|
|
messaging = getMessaging();
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export { messaging };
|
|
|
|
export const requestForToken = () => {
|
|
return getToken(messaging, {
|
|
vapidKey: process.env.REACT_APP_FIREBASE_PUBLIC_VAPID_KEY,
|
|
})
|
|
.then((currentToken) => {
|
|
if (currentToken) {
|
|
console.log("current token for client: ", currentToken);
|
|
window.sessionStorage.setItem("fcmtoken", currentToken);
|
|
// Perform any other necessary action with the token
|
|
} else {
|
|
// Show permission request UI
|
|
console.log(
|
|
"No registration token available. Request permission to generate one."
|
|
);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
console.log("An error occurred while retrieving token. ", err);
|
|
});
|
|
};
|
|
|
|
export const onMessageListener = () =>
|
|
new Promise((resolve) => {
|
|
onMessage(messaging, (payload) => {
|
|
console.log("Inbound FCM Message", payload);
|
|
resolve(payload);
|
|
});
|
|
});
|
|
|
|
export const logImEXEvent = (eventName, additionalParams, stateProp = null) => {
|
|
const state = stateProp || store.getState();
|
|
const eventParams = {
|
|
shop:
|
|
(state.user && state.user.bodyshop && state.user.bodyshop.shopname) ||
|
|
null,
|
|
user:
|
|
(state.user && state.user.currentUser && state.user.currentUser.email) ||
|
|
null,
|
|
...additionalParams,
|
|
};
|
|
// console.log(
|
|
// "%c[Analytics]",
|
|
// "background-color: green ;font-weight:bold;",
|
|
// eventName,
|
|
// eventParams
|
|
// );
|
|
logEvent(analytics, eventName, eventParams);
|
|
};
|
|
|
|
// if (messaging) {
|
|
// onMessage(async (payload) => {
|
|
// console.log("[FCM] UTILS Message received. ", payload);
|
|
// navigator.serviceWorker.getRegistration().then((registration) => {
|
|
// return registration.showNotification(
|
|
// "[UTIL]" + payload.notification.title,
|
|
// payload.notification
|
|
// );
|
|
// });
|
|
|
|
// // if (!payload.clientId) return;
|
|
|
|
// // // Get the client.
|
|
// // const client = await clients.get(payload.clientId);
|
|
// // // Exit early if we don't get the client.
|
|
// // // Eg, if it closed.
|
|
// // if (!client) return;
|
|
|
|
// // // Send a message to the client.
|
|
// // console.log("Posting to client.");
|
|
// // client.postMessage({
|
|
// // msg: "Hey I just got a fetch from you!",
|
|
// // url: payload.request.url,
|
|
// // });
|
|
|
|
// // [START_EXCLUDE]
|
|
// // Update the UI to include the received message.
|
|
// //appendMessage(payload);
|
|
|
|
// // [END_EXCLUDE]
|
|
// });
|
|
|
|
// messaging.onTokenRefresh(() => {
|
|
// messaging
|
|
// .getToken()
|
|
// .then((refreshedToken) => {
|
|
// console.log("[FCM] Token refreshed.");
|
|
// // Indicate that the new Instance ID token has not yet been sent to the
|
|
// // app server.
|
|
// // setTokenSentToServer(false);
|
|
// // // Send Instance ID token to app server.
|
|
// // sendTokenToServer(refreshedToken);
|
|
// // // [START_EXCLUDE]
|
|
// // // Display new Instance ID token and clear UI of all previous messages.
|
|
// // resetUI();
|
|
// // [END_EXCLUDE]
|
|
// })
|
|
// .catch((err) => {
|
|
// console.log("[FCM] Unable to retrieve refreshed token ", err);
|
|
// // showToken("Unable to retrieve refreshed token ", err);
|
|
// });
|
|
// });
|
|
// }
|