| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | 
							- // @flow
 - 
 - import { assign, ReducerRegistry } from '../base/redux';
 - 
 - import {
 -     _SET_EMITTER_SUBSCRIPTIONS,
 -     ADD_PENDING_INVITE_REQUEST,
 -     REMOVE_PENDING_INVITE_REQUESTS,
 -     SET_CALLEE_INFO_VISIBLE,
 -     UPDATE_DIAL_IN_NUMBERS_FAILED,
 -     UPDATE_DIAL_IN_NUMBERS_SUCCESS
 - } from './actionTypes';
 - 
 - const DEFAULT_STATE = {
 -     /**
 -      * The indicator which determines whether (the) {@code CalleeInfo} is
 -      * visible.
 -      *
 -      * @type {boolean|undefined}
 -      */
 -     calleeInfoVisible: false,
 - 
 -     numbersEnabled: true,
 -     pendingInviteRequests: []
 - };
 - 
 - ReducerRegistry.register('features/invite', (state = DEFAULT_STATE, action) => {
 -     switch (action.type) {
 -     case _SET_EMITTER_SUBSCRIPTIONS:
 -         return (
 -             assign(state, 'emitterSubscriptions', action.emitterSubscriptions));
 -     case ADD_PENDING_INVITE_REQUEST:
 -         return {
 -             ...state,
 -             pendingInviteRequests: [
 -                 ...state.pendingInviteRequests,
 -                 action.request
 -             ]
 -         };
 -     case REMOVE_PENDING_INVITE_REQUESTS:
 -         return {
 -             ...state,
 -             pendingInviteRequests: []
 -         };
 - 
 -     case SET_CALLEE_INFO_VISIBLE:
 -         return {
 -             ...state,
 -             calleeInfoVisible: action.calleeInfoVisible,
 -             initialCalleeInfo: action.initialCalleeInfo
 -         };
 - 
 -     case UPDATE_DIAL_IN_NUMBERS_FAILED:
 -         return {
 -             ...state,
 -             error: action.error
 -         };
 - 
 -     case UPDATE_DIAL_IN_NUMBERS_SUCCESS: {
 -         const {
 -             defaultCountry,
 -             numbers,
 -             numbersEnabled
 -         } = action.dialInNumbers;
 - 
 -         return {
 -             ...state,
 -             conferenceID: action.conferenceID,
 -             defaultCountry,
 -             numbers,
 -             numbersEnabled
 -         };
 -     }
 -     }
 - 
 -     return state;
 - });
 
 
  |