-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved Typing Indicator to SendBox #2321
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. @compulim?
CHANGELOG.md
Outdated
@@ -62,6 +62,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | |||
- `component`: Remove [`react`](https://www.npmjs.com/package/react) and [`react-dom`](https://www.npmjs.com/package/react-dom) from `devDependencies` | |||
- `playground`: Remove [`react`](https://www.npmjs.com/package/react) and [`react-dom`](https://www.npmjs.com/package/react-dom) from `dependencies` | |||
- `samples/*`: Move to production version of Web Chat, and bump to [`[email protected]`](https://www.npmjs.com/package/react) and [`[email protected]`](https://www.npmjs.com/package/react-dom) | |||
- Moved the typing indicator to the send box and removed the typing indicator logic from the sagas, by [@tdunrford](https://github.com/tdurnford), in PR [#2321](https://github.com/microsoft/BotFramework-WebChat/pull/2321) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spelling OF YOUR OWN USERNAME xP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surprised prettier didn't catch that
packages/component/src/Middleware/Attachment/createCoreMiddleware.js
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really love this work.
Simplifying so much code while enabling the user. IMO, this is the most enjoyable part of refactoring/rewriting work.
The direction is great, and I think you will work on the comment. So I am approving this. Feel free to re-request review if big things come up.
Fixes #2214
Fixes #2031
Changelog Entry
Moved the typing indicator to the send box and removed the typing indicator logic from the sagas, by @tdurnford, in PR #2321
Description
Removed typing indicator from the conversation transcript and added it to the
SendBox
.Specific Changes
lastTypingAt
reducer that updates on typing activities.TypingActivity
component and createdTypingIndicator
component.typingAnimationDuration
to the default style options.....