File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-form-controlled" ,
3
- "version" : " 0.16.15 " ,
3
+ "version" : " 0.16.16 " ,
4
4
"description" : " React controlled form components. The main idea is to make forms as simple as possible." ,
5
5
"author" : {
6
6
"name" : " Zlatko Fedor" ,
Original file line number Diff line number Diff line change @@ -68,23 +68,21 @@ export default class Input extends Element {
68
68
}
69
69
70
70
clearTimeout ( sendValue ) {
71
- if ( ! this . timeoutId ) {
72
- return ;
71
+ if ( this . timeoutId ) {
72
+ clearTimeout ( this . timeoutId ) ;
73
+ this . timeoutId = null ;
73
74
}
74
75
75
- clearTimeout ( this . timeoutId ) ;
76
- this . timeoutId = null ;
77
-
78
76
if ( sendValue && this . props . value !== this . state . value ) {
79
- this . notifiyParent ( this . state . value , this ) ;
77
+ this . notifiyParent ( this . state . value , this , sendValue ) ;
80
78
}
81
79
}
82
80
83
81
componentWillUnmount ( ) {
84
82
this . clearTimeout ( ) ;
85
83
}
86
84
87
- notifiyParent ( value , component ) {
85
+ notifiyParent ( value , component , force ) {
88
86
const { type, debaunce } = this . props ;
89
87
90
88
if ( ! this . focused || ! debaunce || type === 'checkbox' || type === 'radio' ) {
@@ -93,6 +91,12 @@ export default class Input extends Element {
93
91
}
94
92
95
93
this . clearTimeout ( ) ;
94
+
95
+ if ( force ) {
96
+ super . notifiyParent ( value , component , force ) ;
97
+ return ;
98
+ }
99
+
96
100
this . timeoutId = setTimeout ( ( ) => {
97
101
this . timeoutId = null ;
98
102
super . notifiyParent ( value , component ) ;
You can’t perform that action at this time.
0 commit comments