-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: scope use-propagate to a single Web Chat instance (#5248)
* Add test * fix: scope use-propagate to a single webchat instance * Changelog --------- Co-authored-by: William Wong <[email protected]>
- Loading branch information
Showing
14 changed files
with
166 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+23.1 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+27.9 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-2-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.7 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.4 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-4-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+47.7 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-5-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.9 KB
...ent-theme-applied-with-multiple-web-chat-instances-places-focus-back-6-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<!doctype html> | ||
<html lang="en-US"> | ||
<head> | ||
<link href="/assets/index.css" rel="stylesheet" type="text/css" /> | ||
<script crossorigin="anonymous" src="https://unpkg.com/@babel/standalone/babel.min.js"></script> | ||
<script crossorigin="anonymous" src="https://unpkg.com/[email protected]/umd/react.production.min.js"></script> | ||
<script crossorigin="anonymous" src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js"></script> | ||
<script crossorigin="anonymous" src="/test-harness.js"></script> | ||
<script crossorigin="anonymous" src="/test-page-object.js"></script> | ||
<script crossorigin="anonymous" src="/__dist__/webchat-es5.js"></script> | ||
<script crossorigin="anonymous" src="/__dist__/botframework-webchat-fluent-theme.production.min.js"></script> | ||
<style> | ||
#webchat { | ||
display: flex; | ||
width: 720px; | ||
} | ||
#webchat > * { | ||
flex-basis: 50%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<main id="webchat"> | ||
<div id="webchat1"></div> | ||
<div id="webchat2"></div> | ||
</main> | ||
<script type="text/babel"> | ||
run( | ||
async function () { | ||
const { | ||
React, | ||
ReactDOM: { render }, | ||
WebChat: { FluentThemeProvider, ReactWebChat } | ||
} = window; // Imports in UMD fashion. | ||
|
||
await host.windowSize(720, 640, document.getElementById('webchat')); | ||
|
||
const createWebChat = (id) => { | ||
const { directLine, store } = testHelpers.createDirectLineEmulator(); | ||
|
||
const App = () => ( | ||
<ReactWebChat directLine={directLine} store={store} styleOptions={{ hideTelephoneKeypadButton: false }} /> | ||
); | ||
|
||
render( | ||
<FluentThemeProvider> | ||
<App /> | ||
</FluentThemeProvider>, | ||
document.getElementById(id) | ||
); | ||
|
||
return { directLine, store }; | ||
}; | ||
|
||
const webChat1 = createWebChat('webchat1'); | ||
const webChat2 = createWebChat('webchat2'); | ||
|
||
await pageConditions.uiConnected(); | ||
|
||
// Test WebChat 1 | ||
await webChat1.directLine.emulateIncomingActivity( | ||
'WebChat 1: Eiusmod anim adipisicing cupidatat adipisicing officia sint qui consequat veniam id aute.' | ||
); | ||
|
||
await pageConditions.numActivitiesShown(1); | ||
|
||
document.querySelector(`#webchat1 [data-testid="${WebChat.testIds.sendBoxTextBox}"]`).focus(); | ||
|
||
// WHEN: SHIFT-TAB key is pressed on WebChat 1. | ||
await host.sendShiftTab(); | ||
|
||
// THEN: Should focus on the chat history of WebChat 1. | ||
await host.snapshot(); | ||
|
||
// WHEN: A key is pressed on WebChat 1. | ||
await host.sendKeys('WebChat 1: The quick brown fox jumps over the lazy dog'); | ||
|
||
// THEN: Should focus on the SendBox of WebChat 1 | ||
await host.snapshot(); | ||
|
||
await (await webChat1.directLine.actPostActivity(() => host.sendKeys('\n'))).resolveAll(); | ||
|
||
// THEN: Should send the activity in WebChat 1. | ||
await pageConditions.numActivitiesShown(2); | ||
await pageConditions.allOutgoingActivitiesSent(); | ||
await host.snapshot(); | ||
|
||
// Test WebChat 2 | ||
await webChat2.directLine.emulateIncomingActivity( | ||
'WebChat 2: Eiusmod anim adipisicing cupidatat adipisicing officia sint qui consequat veniam id aute.' | ||
); | ||
|
||
document.querySelector(`#webchat2 [data-testid="${WebChat.testIds.sendBoxTextBox}"]`).focus(); | ||
|
||
// WHEN: SHIFT-TAB key is pressed on WebChat 2. | ||
await host.sendShiftTab(); | ||
|
||
// THEN: Should focus on the chat history of WebChat 2. | ||
await host.snapshot(); | ||
|
||
// WHEN: A key is pressed on WebChat 2. | ||
await host.sendKeys('WebChat 2: The quick brown fox jumps over the lazy dog'); | ||
|
||
// THEN: Should focus on the SendBox of WebChat 2 | ||
await host.snapshot(); | ||
|
||
await (await webChat2.directLine.actPostActivity(() => host.sendKeys('\n'))).resolveAll(); | ||
|
||
// THEN: Should send the activity in WebChat 2. | ||
await pageConditions.allOutgoingActivitiesSent(); | ||
await host.snapshot(); | ||
}, | ||
// TODO: unskip and try ShadowDOM when we get support | ||
{ skipCheckAccessibility: true } | ||
); | ||
// TODO: unskip and try ShadowDOM when we get support | ||
// TODO: fix checkAccessibility throws even if skipped | ||
window.checkAccessibility = async () => {} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** @jest-environment ./packages/test/harness/src/host/jest/WebDriverEnvironment.js */ | ||
|
||
describe('Fluent theme applied with multiple WebChat instances', () => { | ||
test('places focus back', () => runHTML('fluentTheme/focusBack.multiple')); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters