Skip to content
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

feat: support max length #313

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,20 @@ online example: https://input-number.vercel.app/
<td></td>
<td>Specifies the inputmode of input</td>
</tr>
<tr>
<td>maxLength</td>
<td>number</td>
<td></td>
<td>input max length</td>
</tr>
</tbody>
</table>

## Keyboard Navigation
* When you hit the <kbd>⬆</kbd> or <kbd>⬇</kbd> key, the input value will be increased or decreased by `step`
* With the <kbd>Shift</kbd> key (<kbd>Shift+⬆</kbd>, <kbd>Shift+⬇</kbd>), the input value will be changed by `10 * step`
* With the <kbd>Ctrl</kbd> or <kbd>⌘</kbd> key (<kbd>Ctrl+⬆</kbd> or <kbd>⌘+⬆</kbd> or <kbd>Ctrl+⬇</kbd> or <kbd>⌘+⬇</kbd> ), the input value will be changed by `0.1 * step`

- When you hit the <kbd>⬆</kbd> or <kbd>⬇</kbd> key, the input value will be increased or decreased by `step`
- With the <kbd>Shift</kbd> key (<kbd>Shift+⬆</kbd>, <kbd>Shift+⬇</kbd>), the input value will be changed by `10 * step`
- With the <kbd>Ctrl</kbd> or <kbd>⌘</kbd> key (<kbd>Ctrl+⬆</kbd> or <kbd>⌘+⬆</kbd> or <kbd>Ctrl+⬇</kbd> or <kbd>⌘+⬇</kbd> ), the input value will be changed by `0.1 * step`

## Test Case

Expand Down
9 changes: 7 additions & 2 deletions src/InputNumber.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export interface InputNumberProps<T extends ValueType = ValueType>
// useTouch: boolean;

// size?: ISize;
maxLength?: number;
}

const InputNumber = React.forwardRef(
Expand All @@ -92,6 +93,7 @@ const InputNumber = React.forwardRef(
formatter,
precision,
decimalSeparator,
maxLength,

onChange,
onInput,
Expand Down Expand Up @@ -336,8 +338,11 @@ const InputNumber = React.forwardRef(
};

// >>> Input
const onInternalInput: React.ChangeEventHandler<HTMLInputElement> = (e) => {
const onInternalInput: React.ChangeEventHandler<HTMLInputElement> = e => {
let inputStr = e.target.value;
if (maxLength > 0) {
inputStr = inputStr.slice(0, maxLength);
}

// optimize for chinese input experience
// https://github.com/ant-design/ant-design/issues/8196
Expand Down Expand Up @@ -404,7 +409,7 @@ const InputNumber = React.forwardRef(
}
};

const onKeyDown: React.KeyboardEventHandler<HTMLInputElement> = (event) => {
const onKeyDown: React.KeyboardEventHandler<HTMLInputElement> = event => {
const { which } = event;
userTypingRef.current = true;

Expand Down
18 changes: 18 additions & 0 deletions tests/input.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,24 @@ describe('InputNumber.Input', () => {
expect(wrapper.getInputValue()).toEqual('');
});

it('max length 3', () => {
const wrapper = prepareWrapper('333333', { maxLength: 3 }, true);
expect(wrapper.getInputValue()).toEqual('333');
hengkx marked this conversation as resolved.
Show resolved Hide resolved
});

it('max length 0', () => {
const wrapper = prepareWrapper('333333', { maxLength: 0 }, true);
expect(wrapper.getInputValue()).toEqual('333333');
});

it('control max length', () => {
const wrapper = mount(<InputNumber value={9} maxLength={3} />);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

value={1234},它的长度需要超过 maxLength,且结果是 1234 不会被裁剪。

Copy link
Member Author

@hengkx hengkx Apr 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

value={1234} max 是1 那它的值还是1234?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrapper.focusInput();

wrapper.changeValue('1234');
expect(wrapper.getInputValue()).toEqual('123');
});

it('blur on default input', () => {
const onChange = jest.fn();
const wrapper = mount(<InputNumber onChange={onChange} />);
Expand Down