37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import { Middleware } from 'redux';
|
|
import { State } from 'ts/redux/reducer';
|
|
import { ActionTypes } from 'ts/types';
|
|
import { analytics } from 'ts/utils/analytics';
|
|
|
|
export const analyticsMiddleware: Middleware = store => next => action => {
|
|
const nextAction = next(action);
|
|
const nextState = (store.getState() as any) as State;
|
|
switch (action.type) {
|
|
case ActionTypes.UpdateInjectedProviderName:
|
|
analytics.addEventProperties({
|
|
injectedProviderName: nextState.injectedProviderName,
|
|
});
|
|
break;
|
|
case ActionTypes.UpdateNetworkId:
|
|
analytics.addEventProperties({
|
|
networkId: nextState.networkId,
|
|
});
|
|
break;
|
|
case ActionTypes.UpdateUserAddress:
|
|
analytics.addUserProperties({
|
|
ethAddress: nextState.userAddress,
|
|
});
|
|
break;
|
|
case ActionTypes.UpdateUserEtherBalance:
|
|
if (nextState.userEtherBalanceInWei) {
|
|
analytics.addUserProperties({
|
|
ethBalance: nextState.userEtherBalanceInWei.toString(),
|
|
});
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return nextAction;
|
|
};
|