-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Refactor migrate password page to functional component #21960
Refactor migrate password page to functional component #21960
Conversation
…unctional-component
@allroundexperts Please 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-07-04.at.2.24.13.PM.movMobile Web - ChromeScreen.Recording.2023-07-04.at.2.42.00.PM.movMobile Web - SafariScreen.Recording.2023-07-04.at.2.38.26.PM.movDesktopScreen.Recording.2023-07-04.at.2.29.12.PM.moviOSScreen.Recording.2023-07-04.at.2.43.42.PM.movAndroidScreen.Recording.2023-07-04.at.2.45.26.PM.mov |
@HezekielT Try to make your commit messages meaningful. |
@allroundexperts ok sorry. |
@HezekielT Are you sure that you've uploaded correct screenshots for iOS? I would include the full device frame in the screen recording. |
08ed259
to
5af9a7a
Compare
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!
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.
one minor minor comment but otherwise looks good
src/pages/settings/PasswordPage.js
Outdated
useEffect( | ||
() => () => { | ||
Session.clearAccountMessages(); | ||
}, | ||
[], | ||
); |
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 think you can make this one-line and it still falls within our style guidelines
useEffect(() => () => Session.clearAccountMessages(),[]);
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.
@NikkiWines I've made the change you requested.
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.
✋ 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/NikkiWines in version: 1.3.38-0 🚀
|
🚀 Deployed to production by https://github.com/francoisl in version: 1.3.38-7 🚀
|
Details
Migrate
PasswordPage.js
to functional component.Fixed Issues
$ #16283
PROPOSAL: #16283 (comment)
Tests
Current Password
field and only letters toNew Password
field and click onSave
button.Your password must have at least 8 characters, 1 capital letter ...
error is displayed.New password
field to password that fulfills the above requirement and click onSave
button.Your password changes could not be saved because the old password entered is incorrect
error is displayed assuming you added an incorrect password inCurrent Password
field.Current Password
field and click onSave
button.Password Updated!
screen is shown.Offline tests
Current Password
field and letter only toNew Password
field and click onSave
button.Your password must have at least 8 characters, 1 capital letter ...
error is displayed.QA Steps
Same as
Tests
section above.PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.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
PasswordPageWeb.mov
Mobile Web - Chrome
PasswordPageMweb.mov
Mobile Web - Safari
Desktop
PasswordPageDesktop.mov
iOS
Android
PasswordPageAndroidNative.mov