25 lines
692 B
JavaScript
25 lines
692 B
JavaScript
import * as Analytics from "expo-firebase-analytics";
|
|
import { store } from "../redux/store";
|
|
|
|
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
|
|
);
|
|
Analytics.logEvent(eventName, eventParams);
|
|
};
|
|
|
|
//export const ExpoAnalytics = Analytics;
|