Skip to content

Commit 05a45c1

Browse files
committed
Release 0.16.16
1 parent 3bbb4ee commit 05a45c1

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-form-controlled",
3-
"version": "0.16.15",
3+
"version": "0.16.16",
44
"description": "React controlled form components. The main idea is to make forms as simple as possible.",
55
"author": {
66
"name": "Zlatko Fedor",

src/Input.jsx

+11-7
Original file line numberDiff line numberDiff line change
@@ -68,23 +68,21 @@ export default class Input extends Element {
6868
}
6969

7070
clearTimeout(sendValue) {
71-
if (!this.timeoutId) {
72-
return;
71+
if (this.timeoutId) {
72+
clearTimeout(this.timeoutId);
73+
this.timeoutId = null;
7374
}
7475

75-
clearTimeout(this.timeoutId);
76-
this.timeoutId = null;
77-
7876
if (sendValue && this.props.value !== this.state.value) {
79-
this.notifiyParent(this.state.value, this);
77+
this.notifiyParent(this.state.value, this, sendValue);
8078
}
8179
}
8280

8381
componentWillUnmount() {
8482
this.clearTimeout();
8583
}
8684

87-
notifiyParent(value, component) {
85+
notifiyParent(value, component, force) {
8886
const { type, debaunce } = this.props;
8987

9088
if (!this.focused || !debaunce || type === 'checkbox' || type === 'radio') {
@@ -93,6 +91,12 @@ export default class Input extends Element {
9391
}
9492

9593
this.clearTimeout();
94+
95+
if (force) {
96+
super.notifiyParent(value, component, force);
97+
return;
98+
}
99+
96100
this.timeoutId = setTimeout(() => {
97101
this.timeoutId = null;
98102
super.notifiyParent(value, component);

0 commit comments

Comments
 (0)