forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Adrienne / TS migration for Password Input #34
Merged
niloofar-deriv
merged 3 commits into
niloofar-deriv:niloo/84471/ts-migration-parent
from
adrienne-deriv:adrienne-deriv/task-76911/password-input
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import Input from './input'; | ||
import Input, { TInputProps } from './input'; | ||
import './input.scss'; | ||
|
||
export type { TInputProps }; | ||
export default Input; |
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
2 changes: 1 addition & 1 deletion
2
...ts/src/components/password-input/index.js → ...ts/src/components/password-input/index.ts
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import PasswordInput from './password-input.jsx'; | ||
import PasswordInput from './password-input'; | ||
import './password-input.scss'; | ||
|
||
export default PasswordInput; |
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
import classNames from 'classnames'; | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import Icon from '../icon'; | ||
import Input from '../input'; | ||
import Input, { TInputProps } from '../input'; | ||
|
||
type TPasswordInput = Partial<TInputProps> & { | ||
autoComplete: string; | ||
className?: string; | ||
input_id?: string; | ||
}; | ||
|
||
const PasswordInput = ({ | ||
className, // Must not be passed to Input as the only trailing icon should be the visibility icon | ||
autoComplete, // Must be passed to Input, if not will get console warning | ||
input_id, | ||
...otherProps | ||
}) => { | ||
}: TPasswordInput) => { | ||
const [should_show_password, setShouldShowPassword] = React.useState(false); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typescript automatically infers the |
||
|
||
const togglePasswordVisibility = () => { | ||
|
@@ -39,10 +44,4 @@ const PasswordInput = ({ | |
); | ||
}; | ||
|
||
PasswordInput.propTypes = { | ||
className: PropTypes.string, | ||
autoComplete: PropTypes.string.isRequired, | ||
input_id: PropTypes.string, | ||
}; | ||
|
||
export default PasswordInput; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Used
Partial
to make types forInput
optional since there are some components that usesPasswordInput
without passing the required props forInput
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 can see that the
type
is required in the InputField. If you put Partial it might accept even thetype
is undefined. If you remove Partial can i know what error will be return to you?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.
If
TInputProps
is not wrapped withPartial
, there will be some places that usesPasswordInput
who does not pass in the requiredtype
prop, thus causing the build to fail. Since I wasn't so sure if the type definitions forInput
componenttype
needs to be made optional ininput.tsx
, I just made it optional forPasswordInput
as for now