File size: 7,212 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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
import { default as apiFetchPromise } from '@wordpress/api-fetch';
import { select } from '@wordpress/data';
import { addQueryArgs } from '@wordpress/url';
import { default as wpcomRequestPromise, canAccessWpcomApis } from 'wpcom-proxy-request';
import { GeneratorReturnType } from '../mapped-types';
import { SiteDetails } from '../site';
import { STORE_KEY } from './constants';
import { isE2ETest } from '.';
import type {
APIFetchOptions,
HelpCenterOptions,
HelpCenterSelect,
HelpCenterShowOptions,
} from './types';
import type { SupportInteraction } from '@automattic/odie-client/src/types';
import type { Location } from 'history';
export function setCurrentSupportInteraction( supportInteraction: SupportInteraction ) {
return {
type: 'HELP_CENTER_SET_CURRENT_SUPPORT_INTERACTION',
supportInteraction,
} as const;
}
export function setHelpCenterRouterHistory(
history: { entries: Location[]; index: number } | undefined
) {
return {
type: 'HELP_CENTER_SET_HELP_CENTER_ROUTER_HISTORY',
history,
} as const;
}
export const setNavigateToRoute = ( route?: string ) =>
( {
type: 'HELP_CENTER_SET_NAVIGATE_TO_ROUTE',
route,
} ) as const;
export const setUnreadCount = ( count: number ) =>
( {
type: 'HELP_CENTER_SET_UNREAD_COUNT',
count,
} ) as const;
export const setOdieInitialPromptText = ( text: string ) =>
( {
type: 'HELP_CENTER_SET_ODIE_INITIAL_PROMPT_TEXT',
text,
} ) as const;
export const setOdieBotNameSlug = ( odieBotNameSlug: string ) =>
( {
type: 'HELP_CENTER_SET_ODIE_BOT_NAME_SLUG',
odieBotNameSlug,
} ) as const;
export const setIsMinimized = ( minimized: boolean ) =>
( {
type: 'HELP_CENTER_SET_MINIMIZED',
minimized,
} ) as const;
export const setIsChatLoaded = ( isChatLoaded: boolean ) =>
( {
type: 'HELP_CENTER_SET_IS_CHAT_LOADED',
isChatLoaded,
} ) as const;
export const setAreSoundNotificationsEnabled = ( areSoundNotificationsEnabled: boolean ) =>
( {
type: 'HELP_CENTER_SET_ARE_SOUND_NOTIFICATIONS_ENABLED',
areSoundNotificationsEnabled,
} ) as const;
export const setZendeskClientId = ( zendeskClientId: string ) =>
( {
type: 'HELP_CENTER_SET_ZENDESK_CLIENT_ID',
zendeskClientId,
} ) as const;
export const setShowMessagingLauncher = ( show: boolean ) =>
( {
type: 'HELP_CENTER_SET_SHOW_MESSAGING_LAUNCHER',
show,
} ) as const;
export const setShowMessagingWidget = ( show: boolean ) =>
( {
type: 'HELP_CENTER_SET_SHOW_MESSAGING_WIDGET',
show,
} ) as const;
export const setMessage = ( message: string ) =>
( {
type: 'HELP_CENTER_SET_MESSAGE',
message,
} ) as const;
export const setContextTerm = ( contextTerm: string ) =>
( {
type: 'HELP_CENTER_SET_CONTEXT_TERM',
contextTerm,
} ) as const;
export const setAllowPremiumSupport = ( allow: boolean ) =>
( {
type: 'HELP_CENTER_SET_ALLOW_PREMIUM_SUPPORT',
allow,
} ) as const;
export const setHelpCenterOptions = ( options: HelpCenterOptions ) => ( {
type: 'HELP_CENTER_SET_OPTIONS' as const,
options,
} );
export const setShowHelpCenter = function* (
show: boolean,
allowPremiumSupport = false,
options: HelpCenterShowOptions = { hideBackButton: false, contextTerm: '' }
): Generator< unknown, { type: 'HELP_CENTER_SET_SHOW'; show: boolean }, unknown > {
const isMinimized = ( select( STORE_KEY ) as HelpCenterSelect ).getIsMinimized();
if ( ! show && isMinimized ) {
yield setIsMinimized( false );
return {
type: 'HELP_CENTER_SET_SHOW',
show: true,
} as const;
}
if ( ! isE2ETest() ) {
if ( canAccessWpcomApis() ) {
// Use the promise version to do that action without waiting for the result.
wpcomRequestPromise( {
path: '/me/preferences',
apiNamespace: 'wpcom/v2',
method: 'PUT',
body: {
calypso_preferences: {
help_center_open: show,
// Delete the remote version of the navigation history when closing the help center
...( ! show ? { help_center_router_history: null } : {} ),
},
},
} ).catch( () => {} );
} else {
// Use the promise version to do that action without waiting for the result.
apiFetchPromise( {
global: true,
path: '/help-center/open-state',
method: 'PUT',
data: {
help_center_open: show, // Delete the remote version of the navigation history when closing the help center
...( ! show ? { help_center_router_history: null } : {} ),
},
} as APIFetchOptions ).catch( () => {} );
}
}
if ( ! show ) {
yield setNavigateToRoute( undefined );
// Reset the local navigation history when closing the help center
yield setHelpCenterRouterHistory( undefined );
} else {
yield setShowMessagingWidget( false );
}
yield setContextTerm( options?.contextTerm || '' );
yield setIsMinimized( false );
if ( allowPremiumSupport ) {
yield setAllowPremiumSupport( true );
}
if ( options?.hideBackButton ) {
yield setHelpCenterOptions( options );
}
return {
type: 'HELP_CENTER_SET_SHOW',
show,
} as const;
};
export const setSubject = ( subject: string ) =>
( {
type: 'HELP_CENTER_SET_SUBJECT',
subject,
} ) as const;
export const setUserDeclaredSiteUrl = ( url: string ) =>
( {
type: 'HELP_CENTER_SET_USER_DECLARED_SITE_URL',
url,
} ) as const;
export const setUserDeclaredSite = ( site: SiteDetails | undefined ) =>
( {
type: 'HELP_CENTER_SET_USER_DECLARED_SITE',
site,
} ) as const;
export const resetStore = () =>
( {
type: 'HELP_CENTER_RESET_STORE',
} ) as const;
export const setNewMessagingChat = function* ( {
initialMessage,
section,
siteUrl,
siteId,
userFieldFlowName,
}: {
initialMessage: string;
section?: string;
siteUrl?: string;
siteId?: string;
userFieldFlowName?: string;
} ) {
const url = addQueryArgs( '/odie', {
provider: 'zendesk',
userFieldMessage: initialMessage,
section,
siteUrl,
siteId,
userFieldFlowName,
} );
yield setNavigateToRoute( url );
yield setShowHelpCenter( true );
};
export const setNavigateToOdie = function* () {
yield setNavigateToRoute( '/odie' );
yield setShowHelpCenter( true );
};
export const setShowSupportDoc = function* ( link: string, postId?: number, blogId?: number ) {
const params = new URLSearchParams( {
link,
...( postId && { postId: String( postId ) } ),
...( blogId && { blogId: String( blogId ) } ), // Conditionally add blogId if it exists, the default is support blog
} );
yield setNavigateToRoute( `/post/?${ params }` );
yield setShowHelpCenter( true );
yield setIsMinimized( false );
};
export type HelpCenterAction =
| ReturnType<
| typeof setShowMessagingLauncher
| typeof setShowMessagingWidget
| typeof setSubject
| typeof resetStore
| typeof setMessage
| typeof setContextTerm
| typeof setUserDeclaredSite
| typeof setUserDeclaredSiteUrl
| typeof setUnreadCount
| typeof setIsMinimized
| typeof setHelpCenterRouterHistory
| typeof setIsChatLoaded
| typeof setAreSoundNotificationsEnabled
| typeof setZendeskClientId
| typeof setNavigateToRoute
| typeof setOdieInitialPromptText
| typeof setOdieBotNameSlug
| typeof setCurrentSupportInteraction
| typeof setAllowPremiumSupport
| typeof setHelpCenterOptions
>
| GeneratorReturnType< typeof setShowHelpCenter >;
|