Skip to content

Commit

Permalink
fix(input): update input wrapper focus on padding click
Browse files Browse the repository at this point in the history
  • Loading branch information
Satyam Chatterjee committed Jul 25, 2023
1 parent 48f31a6 commit 02af84e
Show file tree
Hide file tree
Showing 12 changed files with 252 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/components/atoms/input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ export const Input = React.forwardRef<HTMLInputElement, InputProps>((props, forw
onClick={() => ref.current?.focus()}
role="presentation"
onBlur={() => setIsInputBlank(!ref.current?.value)}
tabIndex={1}
>
{inlineLabel && (
<div className="Input-inlineLabel">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -34,6 +35,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left Input-icon--inputBlank"
Expand Down Expand Up @@ -69,6 +71,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -93,6 +96,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left"
Expand Down Expand Up @@ -128,6 +132,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--large"
Expand All @@ -150,6 +155,7 @@ exports[`Input component
class="Input Input--large"
data-test="DesignSystem-InputWrapper"
role="presentation"
tabindex="1"
>
<div
class="Input-inlineLabel"
Expand Down Expand Up @@ -183,6 +189,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -205,6 +212,7 @@ exports[`Input component
class="Input Input--regular"
data-test="DesignSystem-InputWrapper"
role="presentation"
tabindex="1"
>
<div
class="Input-inlineLabel"
Expand Down Expand Up @@ -238,6 +246,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--tiny"
Expand All @@ -260,6 +269,7 @@ exports[`Input component
class="Input Input--tiny"
data-test="DesignSystem-InputWrapper"
role="presentation"
tabindex="1"
>
<div
class="Input-inlineLabel"
Expand Down Expand Up @@ -292,6 +302,7 @@ exports[`Input component
class="Input Input--regular"
data-test="DesignSystem-InputWrapper"
role="presentation"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -315,6 +326,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -338,6 +350,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -361,6 +374,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -386,6 +400,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left"
Expand Down Expand Up @@ -422,6 +437,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -447,6 +463,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left"
Expand Down Expand Up @@ -483,6 +500,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -506,6 +524,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left Input-icon--error"
Expand Down Expand Up @@ -540,6 +559,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
class="Input-input Input-input--regular"
Expand All @@ -565,6 +585,7 @@ exports[`Input component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<div
class="Input-icon Input-icon--left"
Expand Down
9 changes: 8 additions & 1 deletion core/components/atoms/metricInput/MetricInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,14 @@ export const MetricInput = React.forwardRef<HTMLInputElement, MetricInputProps>(
const actionButtonSize = size === 'large' ? 'regular' : 'tiny';

return (
<div data-test="DesignSystem-MetricInputWrapper" className={classes} onKeyDown={onKeyDown} role="presentation">
<div
data-test="DesignSystem-MetricInputWrapper"
className={classes}
onKeyDown={onKeyDown}
role="presentation"
onClick={() => ref.current?.focus()}
tabIndex={1}
>
{icon && (
<Icon
data-test="DesignSystem-MetricInput--icon"
Expand Down
13 changes: 13 additions & 0 deletions core/components/atoms/metricInput/__tests__/MetricInput.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,16 @@ describe('MetricInput component with props showActionButton', () => {
expect(queryByTestId('DesignSystem-MetricInput--downIcon')).not.toBeInTheDocument();
});
});

describe('MetricInput component receives focus', () => {
it('when MetricInputWrapper is clicked', () => {
const { getByTestId } = render(<MetricInput />);
const metricInputWrapper = getByTestId('DesignSystem-MetricInputWrapper');
const metricInput = getByTestId('DesignSystem-MetricInput');

metricInput.focus = FunctionValue;
fireEvent.click(metricInputWrapper);

expect(metricInput.focus).toHaveBeenCalled();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ exports[`MetricInput component
class="MetricInput MetricInput--regular"
data-test="DesignSystem-MetricInputWrapper"
role="presentation"
tabindex="1"
>
<i
class="material-icons material-icons-round Icon Icon--subtle MetricInput-icon MetricInput-icon--regular"
Expand Down Expand Up @@ -78,6 +79,7 @@ exports[`MetricInput component
class="MetricInput MetricInput--regular MetricInput--error"
data-test="DesignSystem-MetricInputWrapper"
role="presentation"
tabindex="1"
>
<i
class="material-icons material-icons-round Icon Icon--subtle MetricInput-icon MetricInput-icon--regular"
Expand Down Expand Up @@ -147,6 +149,7 @@ exports[`MetricInput component
class="MetricInput MetricInput--large"
data-test="DesignSystem-MetricInputWrapper"
role="presentation"
tabindex="1"
>
<span
class="Text Text--subtle Text--large mr-5"
Expand Down Expand Up @@ -221,6 +224,7 @@ exports[`MetricInput component
class="MetricInput MetricInput--regular"
data-test="DesignSystem-MetricInputWrapper"
role="presentation"
tabindex="1"
>
<span
class="Text Text--subtle Text--regular mr-4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ exports[`Input Mask component
data-test="DesignSystem-InputWrapper"
role="presentation"
style="min-width: 256px;"
tabindex="1"
>
<input
autocomplete="off"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ exports[`Pagination component
class="MetricInput MetricInput--regular Pagination-MetricInput"
data-test="DesignSystem-MetricInputWrapper"
role="presentation"
tabindex="1"
>
<input
class="MetricInput-input MetricInput-input--regular"
Expand Down
Loading

0 comments on commit 02af84e

Please sign in to comment.