Skip to content

Commit c6e9cab

Browse files
committed
Add decimal validation function
1 parent 168d15d commit c6e9cab

File tree

11 files changed

+95
-1
lines changed

11 files changed

+95
-1
lines changed

library/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to the library will be documented in this file.
44

55
## vX.X.X (Month DD, YYYY)
66

7-
- Add `creditCard`, `hash`, `hexadecimal`, `hexColor` and `octal` validation function (pull request #292, #304, #307, #308, #309)
7+
- Add `creditCard`, `decimal`, `hash`, `hexadecimal`, `hexColor` and `octal` validation function (pull request #292, #304, #307, #308, #309)
88

99
## v0.24.1 (December 11, 2023)
1010

library/src/regex.ts

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ export const BIC_REGEX = /^[A-Z]{6}(?!00)[A-Z\d]{2}(?:[A-Z\d]{3})?$/u;
88
*/
99
export const CUID2_REGEX = /^[a-z][\da-z]*$/u;
1010

11+
/**
12+
* [Decimal](https://en.wikipedia.org/wiki/Decimal) regex.
13+
*/
14+
export const DECIMAL_REGEX = /^\d+$/u;
15+
1116
/**
1217
* Email regex.
1318
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { describe, expect, test } from 'vitest';
2+
import { decimal } from './decimal.ts';
3+
4+
describe('decimal', () => {
5+
test('should pass only decimal strings', () => {
6+
const validate = decimal();
7+
8+
const value1 = '0';
9+
expect(validate._parse(value1).output).toBe(value1);
10+
const value2 = '9';
11+
expect(validate._parse(value2).output).toBe(value2);
12+
const value3 = '123456789';
13+
expect(validate._parse(value3).output).toBe(value3);
14+
15+
expect(validate._parse('').issues).toBeTruthy();
16+
expect(validate._parse('0a').issues).toBeTruthy();
17+
expect(validate._parse('0 0').issues).toBeTruthy();
18+
expect(validate._parse('12345f').issues).toBeTruthy();
19+
expect(validate._parse('#FFAABB').issues).toBeTruthy();
20+
expect(validate._parse('XYZ123').issues).toBeTruthy();
21+
expect(validate._parse('hello!').issues).toBeTruthy();
22+
expect(validate._parse('11 22 33').issues).toBeTruthy();
23+
expect(validate._parse('7G5H').issues).toBeTruthy();
24+
expect(validate._parse('!@#$%^').issues).toBeTruthy();
25+
expect(validate._parse('abc123xyz').issues).toBeTruthy();
26+
});
27+
28+
test('should return custom error message', () => {
29+
const error = 'Value is not decimal string!';
30+
const validate = decimal(error);
31+
expect(validate._parse('1G').issues?.[0].message).toBe(error);
32+
});
33+
});
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
import { DECIMAL_REGEX } from '../../regex.ts';
2+
import type { BaseValidation, ErrorMessage } from '../../types/index.ts';
3+
import { actionIssue, actionOutput } from '../../utils/index.ts';
4+
5+
/**
6+
* Decimal validation type.
7+
*/
8+
export type DecimalValidation<TInput extends string> =
9+
BaseValidation<TInput> & {
10+
/**
11+
* The validation type.
12+
*/
13+
type: 'decimal';
14+
/**
15+
* The decimal regex.
16+
*/
17+
requirement: RegExp;
18+
};
19+
20+
/**
21+
* Creates a validation function that validates a decimal string.
22+
*
23+
* @param message The error message.
24+
*
25+
* @returns A validation function.
26+
*/
27+
export function decimal<TInput extends string>(
28+
message: ErrorMessage = 'Invalid decimal'
29+
): DecimalValidation<TInput> {
30+
return {
31+
type: 'decimal',
32+
async: false,
33+
message,
34+
requirement: DECIMAL_REGEX,
35+
_parse(input) {
36+
return !this.requirement.test(input)
37+
? actionIssue(this.type, this.message, input, this.requirement)
38+
: actionOutput(input);
39+
},
40+
};
41+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './decimal.ts';

library/src/validations/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export * from './bytes/index.ts';
33
export * from './creditCard/index.ts';
44
export * from './cuid2/index.ts';
55
export * from './custom/index.ts';
6+
export * from './decimal/index.ts';
67
export * from './email/index.ts';
78
export * from './emoji/index.ts';
89
export * from './endsWith/index.ts';

website/src/routes/api/(schemas)/any/index.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ The following APIs can be combined with `any`.
7272
'creditCard',
7373
'cuid2',
7474
'custom',
75+
'decimal',
7576
'email',
7677
'emoji',
7778
'endsWith',

website/src/routes/api/(schemas)/string/index.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ The following APIs can be combined with `string`.
119119
'creditCard',
120120
'cuid2',
121121
'custom',
122+
'decimal',
122123
'email',
123124
'emoji',
124125
'endsWith',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: decimal
3+
contributors:
4+
- fabian-hiller
5+
---
6+
7+
# decimal
8+
9+
> The content of this page is not yet ready. Until then just use the [source code](https://github.com/fabian-hiller/valibot/blob/main/library/src/validations/decimal/decimal.ts).

website/src/routes/api/menu.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
- [creditCard](/api/creditCard/)
6868
- [cuid2](/api/cuid2/)
6969
- [custom](/api/custom/)
70+
- [decimal](/api/decimal/)
7071
- [email](/api/email/)
7172
- [emoji](/api/emoji/)
7273
- [endsWith](/api/endsWith/)

website/src/routes/guides/(main-concepts)/pipelines/index.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Validation functions examine the input and, if the input does not meet a certain
4848
'creditCard',
4949
'cuid2',
5050
'custom',
51+
'decimal',
5152
'email',
5253
'emoji',
5354
'endsWith',

0 commit comments

Comments
 (0)