-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
fix:synchronization between state in report switch #2166
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
@@ -30,6 +30,7 @@ class ReportView extends React.Component { | |||
<ReportActionCompose | |||
onSubmit={text => addAction(this.props.reportID, text)} | |||
reportID={this.props.reportID} | |||
key={this.props.reportID} |
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.
To help in review:
Basically the TextInputFocusable
is an uncontrolled input, so when we change the context (reportID) this component have their own value and don't receive the new value from the switch between reportID.
And the change doesn't occur because we sent the value in the defaultValue
property and when we change the context(reportID) this input already have a value, so defaultValue
isn't used as a initial value to value
property.
The solution is when change the context, we could re-render(with key
property) the component(ReportActionCompose
) and it will solve this problems.
I have read the CLA Document and I hereby sign the CLA |
7aa3b6f
to
a4d2c59
Compare
a4d2c59
to
416b40f
Compare
@@ -64,25 +64,16 @@ class ReportActionCompose extends React.Component { | |||
this.comment = props.comment; | |||
|
|||
this.state = { | |||
isFocused: false, | |||
isFocused: true, |
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.
When the component is mounted the TextInputFocusable
is already focused
textInputShouldClear: false, | ||
isCommentEmpty: props.comment.length === 0, | ||
isMenuVisible: false, | ||
}; | ||
} | ||
|
||
componentDidUpdate(prevProps) { | ||
// The first time the component loads the props is empty and the next time it may contain value. | ||
// If it does let's update this.comment so that it matches the defaultValue that we show in textInput. | ||
if (this.props.comment && prevProps.comment === '' && prevProps.comment !== this.props.comment) { |
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.
The first time the component is mounted this.comment
is attributed in the constructor(){...}
of this component
@iwiznia The PR is ready for review |
Hey @Thierrysantos, thanks for the helpful self-review. I'm you assigned reviewer, and I had seen this yesterday but have asked a few questions internally that I'd like to get answered before I leave my review. Sorry I didn't post here to let you know I was working on it. |
Nice work! I finished off the testing by doing this on iOS. |
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.
Great job! Thanks
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
Sorry for not getting to this before, it should've been assigned to me (but I realize now that our instructions are wrong). |
Yeah, It solves @iwiznia. In the description of the issue @stephanieelliott show 3 scenarios, I could record this 3 scenarios if you want. |
What is wrong? |
1 similar comment
What is wrong? |
Oh nice! I don't think we need recording of the 3 scenarios, just listing the tests and including them for QA, so they can verify all is working properly before deploy. |
Nothing on your part, we are tweaking how the review process is and seems we have not updated our instructions to match it. The idea is that whoever reviews the proposal in the issue, reviews the PR. |
@iwiznia QA Test updated 👍🏾
Great, yeah that make sense |
@iwiznia Do you know if it's already tested by QAs? |
When QA finishes testing all PRs, they get deployed and you should see a comment here saying it was deployed. |
Details
Drafted message text should constrained to the user selected when the text was entered into the compose box, draft icon should show only when text exists in the compose box.
Fixed Issues
#2100
Tests
QA Steps
After drafting message text in the compose box for (but prior to sending), text continues to show after clicking into another chat (2 users)
1.Open a chat with User A
2.Enter text into the compose box (but do not send)
3.Switch to chat with User B
4.Notice: Message drafted in compose box to User A continues to show in compose box in chat with User B
After drafting message text in the compose box for (but prior to sending), text continues to show after clicking into another chat (3 users)
1.Open a chat with User A
2.Enter text into the compose box (but do not send)
3.Switch to chat with User B
4.Switch to a chat with User C
5.Notice: Message drafted in compose box to User A continues to show in compose box in chat with User C
Draft icon continues to show when text does not exist in the compose box
1.Open a chat with User A
2.Enter text into the compose box (but do not send), wait 3-5 seconds
3.Switch to chat with User B
4.Go back to chat with User A, delete the text drafted in compose box
5.Switch to chat with User C
6.Notice: Draft icon continues to show next to User A even though you deleted the text in the compose box
Tested On
Screenshots
Web
screen-recorder-tue-mar-30-2021-22-52-41.mp4
Mobile Web
Mobile.web.mp4
Desktop
screen-recorder-wed-mar-31-2021-23-01-14.mp4
iOS
I don't have a mac to test and record the screen
Android
screen-recorder-thu-apr-01-2021-08-09-54.mp4