@@ -69,6 +69,7 @@ import speechOutput from "./plugins/speech-output";
69
69
import getMessagesListWithoutControlCommands from "../utils/filter-out-control-commands" ;
70
70
import { isValidMarkdown , removeMarkdownChars } from "../../webchat/helper/handleMarkdown" ;
71
71
import DeleteAllConversationsModal from "./presentational/previous-conversations/DeleteAllConversations" ;
72
+ import { forceFocus } from "../utils/force-focus" ;
72
73
73
74
export interface WebchatUIProps {
74
75
currentSession : string ;
@@ -259,6 +260,7 @@ export class WebchatUI extends React.PureComponent<
259
260
chatToggleButtonRef : React . RefObject < HTMLButtonElement > ;
260
261
closeButtonInHeaderRef : React . RefObject < HTMLButtonElement > ;
261
262
menuButtonInHeaderRef : React . RefObject < HTMLButtonElement > ;
263
+ deleteButtonInHeaderRef : React . RefObject < HTMLButtonElement > ;
262
264
ratingButtonInHeaderRef : React . RefObject < HTMLButtonElement > ;
263
265
webchatWindowRef : React . RefObject < HTMLDivElement > ;
264
266
homeScreenCloseButtonRef : React . RefObject < HTMLButtonElement > ;
@@ -277,6 +279,7 @@ export class WebchatUI extends React.PureComponent<
277
279
this . chatToggleButtonRef = React . createRef ( ) ;
278
280
this . closeButtonInHeaderRef = React . createRef ( ) ;
279
281
this . menuButtonInHeaderRef = React . createRef ( ) ;
282
+ this . deleteButtonInHeaderRef = React . createRef ( ) ;
280
283
this . ratingButtonInHeaderRef = React . createRef ( ) ;
281
284
this . webchatWindowRef = React . createRef ( ) ;
282
285
this . homeScreenCloseButtonRef = React . createRef ( ) ;
@@ -1248,6 +1251,9 @@ export class WebchatUI extends React.PureComponent<
1248
1251
isOpen
1249
1252
onOpenChange = { open => {
1250
1253
this . setState ( { showDeleteAllConversationsModal : open } ) ;
1254
+ if ( ! open && this . deleteButtonInHeaderRef . current ) {
1255
+ forceFocus ( this . deleteButtonInHeaderRef . current ) ;
1256
+ }
1251
1257
} }
1252
1258
/>
1253
1259
) ;
@@ -1415,6 +1421,7 @@ export class WebchatUI extends React.PureComponent<
1415
1421
title = { getTitles ( ) }
1416
1422
closeButtonRef = { this . closeButtonInHeaderRef }
1417
1423
menuButtonRef = { this . menuButtonInHeaderRef }
1424
+ deleteButtonRef = { this . deleteButtonInHeaderRef }
1418
1425
chatToggleButtonRef = { this . chatToggleButtonRef }
1419
1426
hideBackButton = { hideBackButton }
1420
1427
showChatScreen = { showChatScreen }
0 commit comments