@@ -8,7 +8,7 @@ import { helpers, store as aiStore } from '@ai-services/ai';
8
8
*/
9
9
import { Children , cloneElement } from '@wordpress/element' ;
10
10
import { useDispatch } from '@wordpress/data' ;
11
- import { __ } from '@wordpress/i18n' ;
11
+ import { __ , sprintf } from '@wordpress/i18n' ;
12
12
13
13
/**
14
14
* Internal dependencies
@@ -35,16 +35,27 @@ export default function ActionProvider( {
35
35
const { sendMessage } = useDispatch ( aiStore ) ;
36
36
37
37
const respond = async ( message ) => {
38
- const aiResponse = await sendMessage ( chatId , message ) ;
39
- const aiResponseText = helpers . contentToText ( aiResponse ) ;
40
- const chatResponse = createChatBotMessage (
41
- aiResponseText !== ''
42
- ? aiResponseText
43
- : __ (
44
- 'It looks like something went wrong. Please check your browser console for further information.' ,
38
+ let aiResponseText ;
39
+ try {
40
+ const aiResponse = await sendMessage ( chatId , message ) ;
41
+ aiResponseText = helpers . contentToText ( aiResponse ) ;
42
+ } catch ( error ) {
43
+ aiResponseText =
44
+ __ (
45
+ 'I cannot respond to that due to a technical problem. Please try again.' ,
46
+ 'ai-services'
47
+ ) +
48
+ '\n\n' +
49
+ sprintf (
50
+ /* translators: %s: error message */
51
+ __ (
52
+ 'Here is the underlying error message: %s' ,
45
53
'ai-services'
46
- )
47
- ) ;
54
+ ) ,
55
+ error ?. message || error
56
+ ) ;
57
+ }
58
+ const chatResponse = createChatBotMessage ( aiResponseText ) ;
48
59
setState ( ( state ) => ( {
49
60
...state ,
50
61
messages : [ ...state . messages , chatResponse ] ,
0 commit comments