aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/redux/analyticsMiddleware.ts
blob: 51d39a5d745a834ccef61dbc6a4645dbb5bb552e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
};