Skip to content

Commit 06b2340

Browse files
committed
Improve error handling in chat store and built-in chatbot.
1 parent 1beb2c5 commit 06b2340

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

src/ai/chat.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,12 @@ const actions = {
125125
response = await session.sendMessage( newContent );
126126
} catch ( error ) {
127127
console.error( error?.message || error ); // eslint-disable-line no-console
128-
}
129-
130-
if ( response ) {
131-
dispatch.receiveContent( chatId, response );
132-
} else {
133128
dispatch.revertContent( chatId );
129+
throw error;
134130
}
135131

132+
dispatch.receiveContent( chatId, response );
133+
136134
await dispatch( {
137135
type: LOAD_CHAT_FINISH,
138136
payload: { chatId },

src/chatbot/components/ActionProvider/index.js

+21-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { helpers, store as aiStore } from '@ai-services/ai';
88
*/
99
import { Children, cloneElement } from '@wordpress/element';
1010
import { useDispatch } from '@wordpress/data';
11-
import { __ } from '@wordpress/i18n';
11+
import { __, sprintf } from '@wordpress/i18n';
1212

1313
/**
1414
* Internal dependencies
@@ -35,16 +35,27 @@ export default function ActionProvider( {
3535
const { sendMessage } = useDispatch( aiStore );
3636

3737
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',
4553
'ai-services'
46-
)
47-
);
54+
),
55+
error?.message || error
56+
);
57+
}
58+
const chatResponse = createChatBotMessage( aiResponseText );
4859
setState( ( state ) => ( {
4960
...state,
5061
messages: [ ...state.messages, chatResponse ],

0 commit comments

Comments
 (0)