| 12345678910111213141516171819202122232425262728293031323334 | 
							- // @flow
 - 
 - import { ReducerRegistry, set } from '../base/redux';
 - 
 - import {
 -     SET_FOLLOW_ME_MODERATOR,
 -     SET_FOLLOW_ME_STATE
 - } from './actionTypes';
 - 
 - /**
 -  * Listen for actions that contain the Follow Me feature active state, so that it can be stored.
 -  */
 - ReducerRegistry.register(
 -     'features/follow-me',
 -     (state = {}, action) => {
 -         switch (action.type) {
 - 
 -         case SET_FOLLOW_ME_MODERATOR: {
 -             let newState = set(state, 'moderator', action.id);
 - 
 -             if (!action.id) {
 -                 // clear the state if feature becomes disabled
 -                 newState = set(newState, 'state', undefined);
 -             }
 - 
 -             return newState;
 -         }
 -         case SET_FOLLOW_ME_STATE: {
 -             return set(state, 'state', action.state);
 -         }
 -         }
 - 
 -         return state;
 -     });
 
 
  |