diff --git a/ts/components/basic/SessionInput.tsx b/ts/components/basic/SessionInput.tsx deleted file mode 100644 index 4cf524251..000000000 --- a/ts/components/basic/SessionInput.tsx +++ /dev/null @@ -1,126 +0,0 @@ -import { ChangeEvent, useState } from 'react'; - -import classNames from 'classnames'; -import { Noop } from '../../types/Util'; -import { useHTMLDirection } from '../../util/i18n'; -import { SessionIconButton } from '../icon'; - -type Props = { - label?: string; - error?: string; - type?: string; - value?: string; - placeholder: string; - maxLength?: number; - enableShowHide?: boolean; - onValueChanged?: (value: string) => any; - onEnterPressed?: any; - autoFocus?: boolean; - ref?: any; - inputDataTestId?: string; -}; - -const LabelItem = (props: { inputValue: string; label?: string }) => { - return ( - - ); -}; - -const ErrorItem = (props: { error: string | undefined }) => { - return ( - - ); -}; - -const ShowHideButton = (props: { toggleForceShow: Noop }) => { - const htmlDirection = useHTMLDirection(); - const position = htmlDirection === 'ltr' ? { right: '0px' } : { left: '0px' }; - - return ( - - ); -}; - -export const SessionInput = (props: Props) => { - const { - autoFocus, - placeholder, - type, - value, - maxLength, - enableShowHide, - error, - label, - onValueChanged, - inputDataTestId, - } = props; - const [inputValue, setInputValue] = useState(''); - const [forceShow, setForceShow] = useState(false); - - const correctType = forceShow ? 'text' : type; - - const updateInputValue = (e: ChangeEvent) => { - e.preventDefault(); - const val = e.target.value; - setInputValue(val); - if (onValueChanged) { - onValueChanged(val); - } - }; - - return ( -
- {error ? ( - - ) : ( - - )} - { - if (event.key === 'Enter' && props.onEnterPressed) { - props.onEnterPressed(); - } - }} - /> - - {enableShowHide && ( - { - setForceShow(!forceShow); - }} - /> - )} -
-
- ); -}; diff --git a/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx b/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx index ee971a2a5..850c19182 100644 --- a/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx +++ b/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx @@ -7,7 +7,7 @@ import { useSelectedConversationKey } from '../../../../state/selectors/selected import { Flex } from '../../../basic/Flex'; import { SessionButton } from '../../../basic/SessionButton'; import { SpacerLG, SpacerXL } from '../../../basic/Text'; -import { SessionInput2 } from '../../../inputs'; +import { SessionInput } from '../../../inputs'; import { SessionProgressBar } from '../../../loading'; import { StyledScrollContainer } from './components'; @@ -82,7 +82,7 @@ export const OverlayRightPanelSettings2 = () => { showPercentage={true} /> - { +export const SessionInput = (props: Props) => { const { autoFocus, placeholder, diff --git a/ts/components/inputs/index.tsx b/ts/components/inputs/index.tsx index b767c89c6..0e2b3f719 100644 --- a/ts/components/inputs/index.tsx +++ b/ts/components/inputs/index.tsx @@ -1,3 +1,3 @@ -import { SessionInput2 } from './SessionInput2'; +import { SessionInput } from './SessionInput'; -export { SessionInput2 }; +export { SessionInput }; diff --git a/ts/components/registration/RegistrationUserDetails.tsx b/ts/components/registration/RegistrationUserDetails.tsx index 75702134e..ac6c320de 100644 --- a/ts/components/registration/RegistrationUserDetails.tsx +++ b/ts/components/registration/RegistrationUserDetails.tsx @@ -1,5 +1,5 @@ import { SpacerLG } from '../basic/Text'; -import { SessionInput2 } from '../inputs'; +import { SessionInput } from '../inputs'; const RecoveryPhraseInput = (props: { recoveryPhrase: string; @@ -8,7 +8,7 @@ const RecoveryPhraseInput = (props: { stealAutoFocus?: boolean; }) => { return ( - { {window.i18n('displayNameDescription')} -