-
Notifications
You must be signed in to change notification settings - Fork 3k
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: remove extra space after mention insertion #19304
Conversation
@puneetlath @thesahindia One of you needs to copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button] |
Reviewer Checklist
Screenshots/VideosWebScreen.Recording.2023-05-22.at.9.53.23.PM.movMobile Web - ChromeScreen.Recording.2023-05-22.at.10.54.42.PM.movMobile Web - SafariScreen.Recording.2023-05-22.at.11.11.12.PM.movDesktopScreen.Recording.2023-05-22.at.9.59.54.PM.moviOSScreen.Recording.2023-05-22.at.11.06.12.PM.movAndroidScreen.Recording.2023-05-22.at.10.36.15.PM.mov |
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.
Looks good and works well!
cc: @puneetlath
this.updateComment(`${commentBeforeAtSign}${mentionCode} ${commentAfterAtSignWithMentionRemoved}`, true); | ||
this.updateComment( | ||
`${commentBeforeAtSign}${mentionCode} ${ | ||
commentAfterAtSignWithMentionRemoved.slice(0, 1) === ' ' ? commentAfterAtSignWithMentionRemoved.slice(1) : commentAfterAtSignWithMentionRemoved |
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.
Given that we're doing the exact same thing on both line 609 and 576, could we move this into some sort of helper function?
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.
@puneetlath Abstracted this into a helper function.
@@ -561,6 +561,15 @@ class ReportActionCompose extends React.Component { | |||
return CONST.REGEX.HAS_AT_MOST_TWO_AT_SIGNS.test(str); | |||
} | |||
|
|||
/** | |||
* Trims first character of the string |
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.
* Trims first character of the string | |
* Trims first character of the string if it is a space |
* @param {String} str | ||
* @returns {String} | ||
*/ | ||
trimLeftOneCharacter(str) { |
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.
trimLeftOneCharacter(str) { | |
trimLeadingSpace(str) { |
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.
Nice name 💯
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!
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
🚀 Deployed to staging by https://github.com/puneetlath in version: 1.3.18-0 🚀
|
🚀 Deployed to staging by https://github.com/puneetlath in version: 1.3.18-0 🚀
|
🚀 Deployed to staging by https://github.com/puneetlath in version: 1.3.18-0 🚀
|
🚀 Deployed to production by https://github.com/yuwenmemon in version: 1.3.18-2 🚀
|
Details
This PR edits the mention / emoji insertion behaviour such that an extra space is added ONLY if there isn't any extra space present after the mention.
Fixed Issues
$ #18742
PROPOSAL: #18742 (comment)
Tests
Verify that no additional space is added.
Offline tests
N/A
QA Steps
Verify that no additional space is added.
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)src/languages/*
files and using the translation methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Web
Screen.Recording.2023-05-19.at.10.23.58.PM.mov
Mobile Web - Chrome
Screen.Recording.2023-05-19.at.10.25.12.PM.mov
Mobile Web - Safari
Screen.Recording.2023-05-19.at.10.27.00.PM.mov
Desktop
Screen.Recording.2023-05-19.at.10.24.23.PM.mov
iOS
Screen.Recording.2023-05-19.at.10.26.24.PM.mov
Android
Screen.Recording.2023-05-19.at.10.25.50.PM.mov