Skip to content

Commit 03f7662

Browse files
author
Edward Xiao
committed
- More tests. Fixed an error on number checking.
1 parent 20f5dcb commit 03f7662

12 files changed

+29
-34
lines changed

example/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,7 @@ class Index extends Component {
873873
name: 'Name', // Optional.[String].Default: "". To display in the Error message. i.e Please enter your ${name}.
874874
check: true, // Optional.[Bool].Default: true. To determin if you need to validate.
875875
required: true, // Optional.[Bool].Default: true. To determin if it is a required field.
876+
type: 'number',
876877
// type: 'string', // Optional.[String].Default: "string". Validation type, options are ['string', 'number', 'alphanumeric', 'alpha'].
877878
// numberType: 'decimal', // Optional.[String].Default: "decimal". Validation number type, options are ['decimal', 'int']. Handy when the validation type is number.
878879
// showMsg: true, // Optional.[Bool].Default: true. To determin display the error message or not.

lib/components/Textbox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ var component = function component(_ref) {
474474
break;
475475
}
476476

477-
if (_validator["default"][type](internalValue)) {
477+
if (_validator["default"][type](internalValue, null, null)) {
478478
_context.next = 43;
479479
break;
480480
}

lib/components/validator.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ var empty = function empty(v) {
99
return v.replace(/\s/g, '').length ? false : true;
1010
};
1111

12-
var number = function number(v) {
13-
var min = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
14-
var max = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 999999999999;
12+
var number = function number(v, min, max) {
13+
if (min === null && max === null) {
14+
return true;
15+
}
1516

1617
if (!isNumeric(v)) {
1718
return false;

lib/react-inputs-validation.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/react-inputs-validation.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-inputs-validation",
3-
"version": "3.4.2",
3+
"version": "3.4.3",
44
"description": "React form input validation components",
55
"main": "index.js",
66
"repository": {

src/__tests__/Textbox.js

-22
Original file line numberDiff line numberDiff line change
@@ -800,28 +800,6 @@ describe('Textbox component', () => {
800800
expect(wrapper.find(`.${MSG_CLASS_IDENTITIFIER}`).length).toEqual(0);
801801
});
802802

803-
it('[Number invalid]: Should msgHtml be appeared', () => {
804-
const wrapper = mount(
805-
<Textbox
806-
value="foobar"
807-
onBlur={() => {}}
808-
validationOption={{
809-
locale: 'en-US',
810-
type: 'number',
811-
name: '',
812-
check: true,
813-
showMsg: true,
814-
required: true,
815-
msgOnError: '',
816-
}}
817-
/>,
818-
);
819-
const $input = wrapper.find(INPUT);
820-
$input.simulate('focus');
821-
$input.simulate('blur');
822-
expect(wrapper.find(`.${MSG_CLASS_IDENTITIFIER}`).length).toEqual(1);
823-
});
824-
825803
it('[Number autoFormatNumber]: Should .5 to be 0.5', () => {
826804
let value = '';
827805
const wrapper = mount(

src/__tests__/utils.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,16 @@ describe('utils', () => {
1414
it('[toCamelCase("foo bar")(true)]: Should return the camelCase: "FooBar"', () => {
1515
expect(utils.toCamelCase('foo bar')(true)).equal('FooBar');
1616
});
17-
});
17+
it('[getRandomId()]: Should return string', () => {
18+
expect(utils.getRandomId()).to.be.a('string');
19+
});
20+
it('[getNumeric("a1")]: Should return 1', () => {
21+
expect(utils.getNumeric('a1')).equal('1');
22+
});
23+
it('[getAlphanumeric("@a1")]: Should return 1', () => {
24+
expect(utils.getAlphanumeric('@a1')).equal('a1');
25+
});
26+
it('[getAlpha("a1")]: Should return 1', () => {
27+
expect(utils.getAlpha('a1')).equal('a');
28+
});
29+
});

src/js/Inputs/Textbox.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ const component: React.FC<Props> = ({
290290
}
291291
}
292292
if (type === VALIDATE_OPTION_TYPE_LIST[1]) {
293-
if (!validator[type](internalValue)) {
293+
if (!validator[type](internalValue, null, null)) {
294294
handleCheckEnd(true, msg.invalid(nameText));
295295
return;
296296
}

src/js/Inputs/validator.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
const empty = (v: string) => (v.replace(/\s/g, '').length ? false : true);
2-
const number = (v: number, min: number = 0, max: number = 999999999999) => {
2+
const number = (v: number, min: any, max: any) => {
3+
if (min === null && max === null){
4+
return true
5+
}
36
if (!isNumeric(v)) {
47
return false;
58
}

0 commit comments

Comments
 (0)