fix: name showHide button props more explcitly

pull/3083/head
William Grant 10 months ago
parent cf34db53c8
commit 9e9fffd9d2

@ -160,13 +160,13 @@ const ErrorItem = (props: { id: string; error: string }) => {
); );
}; };
type ShowHideStrings = { hide: string; show: string }; type ShowHideButtonStrings = { hide: string; show: string };
type ShowHideButtonProps = { type ShowHideButtonProps = {
forceShow: boolean; forceShow: boolean;
toggleForceShow: () => void; toggleForceShow: () => void;
error: boolean; error: boolean;
ariaLabels?: ShowHideStrings; ariaLabels?: ShowHideButtonStrings;
dataTestIds?: ShowHideStrings; dataTestIds?: ShowHideButtonStrings;
}; };
const ShowHideButton = (props: ShowHideButtonProps) => { const ShowHideButton = (props: ShowHideButtonProps) => {
@ -232,9 +232,9 @@ type Props = {
inputRef?: RefObject<HTMLInputElement | HTMLTextAreaElement>; inputRef?: RefObject<HTMLInputElement | HTMLTextAreaElement>;
inputDataTestId?: string; inputDataTestId?: string;
id?: string; id?: string;
enableShowHide?: boolean; enableShowHideButton?: boolean;
showHideAriaLabels?: ShowHideStrings; showHideButtonAriaLabels?: ShowHideButtonStrings;
showHideDataTestIds?: ShowHideStrings; showHideButtonDataTestIds?: ShowHideButtonStrings;
ctaButton?: ReactNode; ctaButton?: ReactNode;
monospaced?: boolean; monospaced?: boolean;
textSize?: TextSizes; textSize?: TextSizes;
@ -261,9 +261,9 @@ export const SessionInput = (props: Props) => {
inputRef, inputRef,
inputDataTestId, inputDataTestId,
id = 'session-input-floating-label', id = 'session-input-floating-label',
enableShowHide, enableShowHideButton,
showHideAriaLabels, showHideButtonAriaLabels,
showHideDataTestIds, showHideButtonDataTestIds,
ctaButton, ctaButton,
monospaced, monospaced,
textSize, textSize,
@ -307,7 +307,7 @@ export const SessionInput = (props: Props) => {
tabIndex, tabIndex,
ref: inputRef, ref: inputRef,
onChange: updateInputValue, onChange: updateInputValue,
style: { paddingInlineEnd: enableShowHide ? '48px' : undefined }, style: { paddingInlineEnd: enableShowHideButton ? '48px' : undefined },
// just in case onChange isn't triggered // just in case onChange isn't triggered
onBlur: (event: ChangeEvent<HTMLInputElement>) => { onBlur: (event: ChangeEvent<HTMLInputElement>) => {
if (editable && !disableOnBlurEvent) { if (editable && !disableOnBlurEvent) {
@ -377,15 +377,15 @@ export const SessionInput = (props: Props) => {
aria-label={ariaLabel || 'session input'} aria-label={ariaLabel || 'session input'}
/> />
)} )}
{editable && enableShowHide && ( {editable && enableShowHideButton && (
<ShowHideButton <ShowHideButton
forceShow={forceShow} forceShow={forceShow}
toggleForceShow={() => { toggleForceShow={() => {
setForceShow(!forceShow); setForceShow(!forceShow);
}} }}
error={Boolean(errorString)} error={Boolean(errorString)}
ariaLabels={showHideAriaLabels} ariaLabels={showHideButtonAriaLabels}
dataTestIds={showHideDataTestIds} dataTestIds={showHideButtonDataTestIds}
/> />
)} )}
</StyledBorder> </StyledBorder>

@ -241,12 +241,12 @@ export const RestoreAccount = () => {
}} }}
onEnterPressed={recoverAndFetchDisplayName} onEnterPressed={recoverAndFetchDisplayName}
error={recoveryPasswordError} error={recoveryPasswordError}
enableShowHide={true} enableShowHideButton={true}
showHideAriaLabels={{ showHideButtonAriaLabels={{
hide: 'Hide recovery password toggle', hide: 'Hide recovery password toggle',
show: 'Reveal recovery password toggle', show: 'Reveal recovery password toggle',
}} }}
showHideDataTestIds={{ showHideButtonDataTestIds={{
hide: 'hide-recovery-phrase-toggle', hide: 'hide-recovery-phrase-toggle',
show: 'reveal-recovery-phrase-toggle', show: 'reveal-recovery-phrase-toggle',
}} }}

Loading…
Cancel
Save