File size: 5,534 Bytes
1e92f2d |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
import { combineReducers } from '@wordpress/data';
import { SiteDetails } from '../site';
import type { HelpCenterAction } from './actions';
import type { HelpCenterOptions } from './types';
import type { SupportInteraction } from '@automattic/odie-client/src/types';
import type { Location } from 'history';
import type { Reducer } from 'redux';
const showHelpCenter: Reducer< boolean | undefined, HelpCenterAction > = ( state, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_SHOW':
return action.show;
}
return state;
};
const showMessagingLauncher: Reducer< boolean | undefined, HelpCenterAction > = (
state,
action
) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_SHOW_MESSAGING_LAUNCHER':
return action.show;
}
return state;
};
const helpCenterRouterHistory: Reducer<
{ entries: Location[]; index: number } | undefined,
HelpCenterAction
> = ( state, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_HELP_CENTER_ROUTER_HISTORY':
return action.history;
}
return state;
};
const showMessagingWidget: Reducer< boolean | undefined, HelpCenterAction > = ( state, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_SHOW_MESSAGING_WIDGET':
return action.show;
}
return state;
};
const currentSupportInteraction: Reducer< SupportInteraction | undefined, HelpCenterAction > = (
state,
action
) => {
if ( action.type === 'HELP_CENTER_SET_CURRENT_SUPPORT_INTERACTION' ) {
return action.supportInteraction;
}
return state;
};
const isMinimized: Reducer< boolean, HelpCenterAction > = ( state = false, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_MINIMIZED':
return action.minimized;
}
return state;
};
const isChatLoaded: Reducer< boolean, HelpCenterAction > = ( state = false, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_IS_CHAT_LOADED':
return action.isChatLoaded;
}
return state;
};
const areSoundNotificationsEnabled: Reducer< boolean, HelpCenterAction > = (
state = true,
action
) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_ARE_SOUND_NOTIFICATIONS_ENABLED':
return action.areSoundNotificationsEnabled;
}
return state;
};
const zendeskClientId: Reducer< string, HelpCenterAction > = ( state = '', action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_ZENDESK_CLIENT_ID':
return action.zendeskClientId;
}
return state;
};
const subject: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_RESET_STORE' ) {
return undefined;
} else if ( action.type === 'HELP_CENTER_SET_SUBJECT' ) {
return action.subject;
}
return state;
};
const unreadCount: Reducer< number, HelpCenterAction > = ( state = 0, action ) => {
if ( action.type === 'HELP_CENTER_SET_UNREAD_COUNT' ) {
return action.count;
} else if ( action.type === 'HELP_CENTER_RESET_STORE' ) {
return 0;
}
return state;
};
const message: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_RESET_STORE' ) {
return undefined;
} else if ( action.type === 'HELP_CENTER_SET_MESSAGE' ) {
return action.message;
}
return state;
};
const userDeclaredSiteUrl: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_RESET_STORE' ) {
return undefined;
} else if ( action.type === 'HELP_CENTER_SET_USER_DECLARED_SITE_URL' ) {
return action.url;
}
return state;
};
const userDeclaredSite: Reducer< SiteDetails | undefined, HelpCenterAction > = (
state,
action
) => {
if ( action.type === 'HELP_CENTER_RESET_STORE' ) {
return undefined;
} else if ( action.type === 'HELP_CENTER_SET_USER_DECLARED_SITE' ) {
return action.site;
}
return state;
};
const navigateToRoute: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_SET_NAVIGATE_TO_ROUTE' ) {
return action.route;
}
return state;
};
const odieInitialPromptText: Reducer< string | undefined, HelpCenterAction > = (
state,
action
) => {
if ( action.type === 'HELP_CENTER_SET_ODIE_INITIAL_PROMPT_TEXT' ) {
return action.text;
}
return state;
};
const odieBotNameSlug: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_SET_ODIE_BOT_NAME_SLUG' ) {
return action.odieBotNameSlug;
}
return state;
};
const allowPremiumSupport: Reducer< boolean, HelpCenterAction > = ( state = false, action ) => {
switch ( action.type ) {
case 'HELP_CENTER_SET_ALLOW_PREMIUM_SUPPORT':
return action.allow;
}
return state;
};
const contextTerm: Reducer< string | undefined, HelpCenterAction > = ( state, action ) => {
if ( action.type === 'HELP_CENTER_SET_CONTEXT_TERM' ) {
return action.contextTerm;
}
return state;
};
const helpCenterOptions: Reducer< HelpCenterOptions, HelpCenterAction > = (
state = {},
action
) => {
if ( action.type === 'HELP_CENTER_SET_OPTIONS' ) {
return { ...state, ...action.options };
}
return state;
};
const reducer = combineReducers( {
currentSupportInteraction,
showHelpCenter,
showMessagingLauncher,
showMessagingWidget,
subject,
message,
userDeclaredSite,
userDeclaredSiteUrl,
isMinimized,
isChatLoaded,
areSoundNotificationsEnabled,
zendeskClientId,
unreadCount,
navigateToRoute,
odieInitialPromptText,
odieBotNameSlug,
helpCenterRouterHistory,
allowPremiumSupport,
contextTerm,
helpCenterOptions,
} );
export type State = ReturnType< typeof reducer >;
export default reducer;
|