vue-types
Prop type definitions for Vue.js. Compatible with both Vue 1.x and 2.x
Introduction
vue-types
is a collection of configurable prop type definitions for Vue.js components, inspired by React's prop-types
.
Try it now!
When to use
While basic prop type definition in Vue is simple and convenient, detailed prop validation can become verbose on complex components.
This is the case for vue-types
.
Instead of:
export default {
props: {
id: {
type: Number,
default: 10,
},
name: {
type: String,
required: true,
},
age: {
type: Number,
validator(value) {
return Number.isInteger(value)
},
},
nationality: String,
},
methods: {
},
}
You may write:
import VueTypes from 'vue-types'
export default {
props: {
id: VueTypes.number.def(10),
name: VueTypes.string.isRequired,
age: VueTypes.integer,
nationality: String,
},
methods: {
},
}
Installation
NPM package
npm install vue-types --save
yarn add vue-types
CDN delivered <script>
add the following script tags before your code
<script src="https://unpkg.com/vue-types"></script>
Usage with eslint-plugin-vue
When used in a project with eslint-plugin-vue, the linter might report errors related to the vue/require-default-prop
rule.
To prevent that error use eslint-plugin-vue-types
Production build
Vue.js does not validate components' props when used in a production build. If you're using a bundler such as Webpack or rollup you can shrink vue-types filesize by around 70% (minified and gzipped) by removing the validation logic while preserving the library's API methods. To achieve that result setup an alias to vue-types/es/shim.js
(vue-types/dist/shim.js
if you're using CommonJS modules).
If you're including the library via a script
tag use the dedicated shim build file:
<script src="https://unpkg.com/vue-types@latest/umd/vue-types.shim.min.js"></script>
Note: In order to use a specific version of the library change @latest
with @<version-number>
:
<script src="https://unpkg.com/vue-types@1.6.0/umd/vue-types.shim.min.js"></script>
Webpack
The following example will shim the module in Webpack by adding an alias field to the configuration when NODE_ENV
is set to "production"
:
return {
resolve: {
alias: {
...(process.env.NODE_ENV === 'production' && {
'vue-types': require.resolve('vue-types/es/shim.js'),
}),
},
},
}
Rollup
The following example will shim the module in rollup using rollup-plugin-alias when NODE_ENV
is set to "production"
:
import alias from 'rollup-plugin-alias'
return {
plugins: [
...(process.env.NODE_ENV === 'production' && [
alias({
'vue-types': require.resolve('vue-types/es/shim.js'),
}),
]),
],
}
Note: If you are using rollup-plugin-node-resolve make sure to place the alias plugin before the resolve plugin.
Documentation
Native Types
Most native types come with:
- a default value (not available in
.any
and .symbol
). - a
.def(any)
method to reassign the default value for the current prop. The passed-in value will be validated against the type configuration in order to prevent invalid values. - a
isRequired
flag to set the required: true
key. - a
validate(function)
method to set a custom validator function (not available in .integer
).
const numProp = VueTypes.number
const numPropCustom = VueTypes.number.def(10)
const numPropRequired = VueTypes.number.isRequired
const numPropRequiredCustom = VueTypes.number.def(10).isRequired
const gtTen = (num) => num > 10
const numPropGreaterThanTen = VueTypes.number.validate(gtTen)
VueTypes.any
Validates any type of value and has no default value.
VueTypes.array
Validates that a prop is an array primitive.
Note: Vue prop validation requires Array definitions to provide default value as a factory function. VueTypes.array.def()
accepts both factory functions and arrays. In the latter case, VueTypes will convert the value to a factory function for you.
VueTypes.bool
Validates boolean props.
VueTypes.func
Validates that a prop is a function.
- default: an empty function
VueTypes.number
Validates that a prop is a number.
VueTypes.integer
Validates that a prop is an integer.
VueTypes.object
Validates that a prop is an object.
Note: Vue prop validation requires Object definitions to provide default value as a factory function. VueTypes.object.def()
accepts both factory functions and plain objects. In the latter case, VueTypes will convert the value to a factory function for you.
VueTypes.string
Validates that a prop is a string.
VueTypes.symbol
VueTypes.symbol
Validates that a prop is a Symbol.
Native Types Configuration
All native types (with the exception of any
) come with a sensible default value. In order to modify or disable it you can set the global option VueTypes.sensibleDefaults
:
VueTypes.sensibleDefaults = true
VueTypes.sensibleDefaults = false
VueTypes.sensibleDefaults = {
string: 'mystringdefault',
}
Under the hood VueTypes.sensibleDefaults
is a plain object with just some added magic. That let's you play with it like you'd do with every other object.
For example you can remove some of the default values by leveraging object rest spread or lodash.omit like functions.
console.log(VueTypes.bool.default)
const { bool, ...newDefaults } = VueTypes.sensibleDefaults
VueTypes.sensibleDefaults = newDefaults
console.log(VueTypes.bool.default)
Custom Types
Custom types are a special kind of types useful to describe complex validation requirements. By design each custom type:
- doesn't have any sensible default value
- doesn't have a
validate
method - has a
.def()
method to assign a default value on the current prop - has an
isRequired
flag to set the required: true
key
const oneOfPropDefault = VueTypes.oneOf([0, 1]).def(1)
const oneOfPropRequired = VueTypes.oneOf([0, 1]).isRequired
const oneOfPropRequiredCustom = VueTypes.oneOf([0, 1]).def(1).isRequired
VueTypes.instanceOf()
class Person {
}
export default {
props: {
user: VueTypes.instanceOf(Person),
},
}
Validates that a prop is an instance of a JavaScript constructor. This uses JavaScript's instanceof
operator.
VueTypes.oneOf()
Validates that a prop is one of the provided values.
export default {
props: {
genre: VueTypes.oneOf(['action', 'thriller']),
},
}
VueTypes.oneOfType()
Validates that a prop is an object that could be one of many types. Accepts both simple and vue-types
types.
export default {
props: {
theProp: VueTypes.oneOfType([
String,
VueTypes.integer,
VueTypes.instanceOf(Person),
]),
},
}
VueTypes.arrayOf()
Validates that a prop is an array of a certain type.
export default {
props: {
theProp: VueTypes.arrayOf(String),
},
}
VueTypes.objectOf()
Validates that a prop is an object with values of a certain type.
export default {
props: {
userData: VueTypes.objectOf(String),
},
}
VueTypes.shape()
Validates that a prop is an object taking on a particular shape. Accepts both simple and vue-types
types. You can set shape's properties as required
but (obviously) you cannot use .def()
. On the other hand you can use def()
to set a default value for the shape itself. Like VueTypes.array
and VueTypes.object
, you can pass to .def()
either a factory function returning an object or a plain object.
export default {
props: {
userData: VueTypes.shape({
name: String,
age: VueTypes.integer,
id: VueTypes.integer.isRequired,
}).def(() => ({ name: 'John' })),
},
}
By default .shape()
won't validate objects with properties not defined in the shape. To allow partial matching use the loose
flag:
export default {
props: {
userData: VueTypes.shape({
name: String,
id: VueTypes.integer.isRequired,
}),
userDataLoose: VueTypes.shape({
name: String,
id: VueTypes.integer.isRequired,
}).loose,
},
}
VueTypes.custom()
Validates prop values against a custom validator function.
function minLength(value) {
return typeof value === 'string' && value.length >= 6
}
export default {
props: {
theProp: VueTypes.custom(minLength),
},
}
Note that the passed-in function name will be used as the custom validator name in warnings.
You can pass a validation error message as second argument as well:
function minLength(value) {
return typeof value === 'string' && value.length >= 6
}
export default {
props: {
theProp: VueTypes.custom(
minLength,
'theProp is not a string or is too short',
),
},
}
Extending VueTypes
You can extend VueTypes with your own types via VueTypes.extend({...})
. The method accepts an object with every key supported by Vue prop validation objects plus the following custom properties:
name
: (string, required) The type name. Will be exposed as VueType.validate
: (boolean, default: false
) If true
the type will have a validate
method like native types.getter
: (boolean, default: false
) If true
will setup the type as an accessor property (like, for example VueTypes.string
) else will setup the type as a configurable method (like, for example VueTypes.arrayOf
).
Examples:
VueTypes.extend({
name: 'negative',
getter: true,
type: Number,
validator: (v) => v < 0,
})
const negativeProp = VueTypes.negative
VueTypes.extend({
name: 'negativeFn',
type: Number,
validator: (v) => v < 0,
})
const negativeProp2 = VueTypes.negativeFn()
Note that if getter
is set to false
, arguments passed to the type will be passed to the validator
method together with the prop value:
VueTypes.extend({
name: 'maxLength',
type: String,
validator: (max, v) => v.length <= max,
})
const maxLengthType = VueTypes.maxLength(2)
maxLengthType.validator('ab')
maxLengthType.validator('abcd')
Inherit from VueTypes types
You can set a previously set type as parent for a new one by setting it as the new type's type
property. This feature can be useful to create named aliases:
const shape = VueTypes.shape({ name: String, age: Number })
VueTypes.extend({
name: 'user',
getter: true,
type: shape,
})
console.log(VueTypes.user.type)
const data = { name: 'John', surname: 'Doe' }
console.log(VueTypes.utils.validate(data, VueTypes.user))
Custom validators will be executed before the parent's one:
VueTypes.extend({
name: 'userDoe',
getter: true,
type: shape,
validator(value) {
return value && value.surname === 'Doe'
},
})
const data = { name: 'John', surname: 'Smith' }
console.log(VueTypes.utils.validate(data, VueTypes.userDoe))
Note: Types created with this method don't support the validate
method even if their parent type supports it (like VueTypes.string
or VueTypes.number
).
Define multiple types
To define multiple types at once pass an array of definitions as first argument:
VueTypes.extend([
{
name: 'negative',
getter: true,
type: Number,
validator: (v) => v < 0,
},
{
name: 'positive',
getter: true,
type: Number,
validator: (v) => v > 0,
},
])
Typescript
When used in a TypeScript project, types added via .extend()
might fail type checking. In order to instruct TypeScript about your custom types you can use the following pattern:
import VueTypes, {
VueTypeDef ,
VueTypesInterface,
} from 'vue-types'
interface ProjectTypes extends VueTypesInterface {
maxLength(max: number): VueTypeDef<string>
}
VueTypes.extend({
name: 'maxLength',
type: String,
validator: (max: number, v: string) => v.length <= max,
})
export default VueTypes as ProjectTypes
Then import the newly created propTypes.ts
instead of vue-types
:
<template>
</template>
<script lang="ts">
import Vue from 'vue'
import VueTypes from './prop-types'
export default Vue.extend({
name: 'MyComponent',
props: {
msg: VueTypes.maxLength(2),
},
})
</script>
Utilities
vue-types
exposes some utility functions on the .utils
property:
VueTypes.utils.validate(value, type)
Checks a value against a type definition
VueTypes.utils.validate('John', VueTypes.string)
VueTypes.utils.validate('John', { type: String })
Note that this utility won't check for isRequired
flag, but will execute any custom validator function is provided.
const isJohn = {
type: String,
validator(value) {
return value.length === 'John'
},
}
VueTypes.utils.validate('John', isJohn)
VueTypes.utils.validate('Jane', isJohn)
VueTypes.utils.toType(name, obj)
Will convert a plain object to a VueTypes' type object with .def()
and isRequired
modifiers:
const password = {
type: String,
validator(value) {
return value.length > 10
},
}
const passwordType = VueTypes.utils.toType('password', password)
export default {
props: {
password: passwordType.isRequired,
},
}
License
MIT
Copyright (c) 2019 Marco Solazzi