| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | 
							- import {
 -     ReducerRegistry
 - } from '../base/redux';
 - 
 - import {
 -     DIAL_OUT_CANCELED,
 -     DIAL_OUT_CODES_UPDATED,
 -     DIAL_OUT_SERVICE_FAILED,
 -     PHONE_NUMBER_CHECKED
 - } from './actionTypes';
 - 
 - const DEFAULT_STATE = {
 -     dialOutCodes: null,
 -     error: null,
 -     isDialNumberAllowed: true
 - };
 - 
 - ReducerRegistry.register(
 -     'features/dial-out',
 -     (state = DEFAULT_STATE, action) => {
 -         switch (action.type) {
 -         case DIAL_OUT_CANCELED: {
 -             // if we have already downloaded codes fill them in default state
 -             // to skip another ajax query
 -             return {
 -                 ...DEFAULT_STATE,
 -                 dialOutCodes: state.dialOutCodes
 -             };
 -         }
 -         case DIAL_OUT_CODES_UPDATED: {
 -             return {
 -                 ...state,
 -                 error: null,
 -                 dialOutCodes: action.response
 -             };
 -         }
 -         case DIAL_OUT_SERVICE_FAILED: {
 -             return {
 -                 ...state,
 -                 error: action.error
 -             };
 -         }
 -         case PHONE_NUMBER_CHECKED: {
 -             return {
 -                 ...state,
 -                 error: null,
 -                 isDialNumberAllowed: action.response.allow
 -             };
 -         }
 -         }
 - 
 -         return state;
 -     });
 
 
  |