-
Notifications
You must be signed in to change notification settings - Fork 224
/
custom-types.js
40 lines (34 loc) · 956 Bytes
/
custom-types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { object, string, optional, define, assert } from 'superstruct'
import isEmail from 'is-email'
import isUuid from 'is-uuid'
import isUrl from 'is-url'
// Define custom structs with validation functions.
const Uuid = define('Uuid', isUuid.v4)
const Url = define('Url', (value) => {
return isUrl(value) && value.length < 2048
})
const Email = define('Email', (value) => {
if (!isEmail(value)) {
return { code: 'not_email' }
} else if (value.length >= 256) {
return { code: 'too_long' }
} else {
return true
}
})
// Define a struct to validate with.
const User = object({
id: Uuid,
name: string(),
email: Email,
website: optional(Url),
})
// Define data to be validated.
const data = {
id: 'c8d63140-a1f7-45e0-bfc6-df72973fea86',
name: 'Jane Smith',
email: 'jane@example.com',
website: 'https://jane.example.com',
}
// Validate the data. In this case the data is valid, so it won't throw.
assert(data, User)