2019-11-07 01:51:06 +08:00
|
|
|
import { toRaw, lock, unlock } from '@vue/reactivity'
|
2019-05-28 18:06:00 +08:00
|
|
|
import {
|
|
|
|
EMPTY_OBJ,
|
|
|
|
camelize,
|
|
|
|
hyphenate,
|
|
|
|
capitalize,
|
|
|
|
isString,
|
|
|
|
isFunction,
|
|
|
|
isArray,
|
2019-06-03 13:44:45 +08:00
|
|
|
isObject,
|
2019-09-24 03:36:30 +08:00
|
|
|
hasOwn,
|
2019-10-25 23:15:04 +08:00
|
|
|
toRawType,
|
2019-10-23 22:34:58 +08:00
|
|
|
PatchFlags,
|
2020-02-11 02:15:36 +08:00
|
|
|
makeMap,
|
2020-03-22 04:25:33 +08:00
|
|
|
isReservedProp,
|
2020-04-04 00:05:52 +08:00
|
|
|
EMPTY_ARR,
|
2020-04-04 07:08:17 +08:00
|
|
|
ShapeFlags
|
2019-05-28 18:06:00 +08:00
|
|
|
} from '@vue/shared'
|
|
|
|
import { warn } from './warning'
|
2019-09-07 00:58:31 +08:00
|
|
|
import { Data, ComponentInternalInstance } from './component'
|
2020-04-04 08:40:34 +08:00
|
|
|
import { isEmitListener } from './componentEmits'
|
2019-05-28 18:06:00 +08:00
|
|
|
|
2019-10-08 21:26:09 +08:00
|
|
|
export type ComponentPropsOptions<P = Data> =
|
|
|
|
| ComponentObjectPropsOptions<P>
|
|
|
|
| string[]
|
|
|
|
|
|
|
|
export type ComponentObjectPropsOptions<P = Data> = {
|
2019-06-01 00:47:05 +08:00
|
|
|
[K in keyof P]: Prop<P[K]> | null
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
|
2019-09-07 00:58:31 +08:00
|
|
|
export type Prop<T> = PropOptions<T> | PropType<T>
|
2019-05-28 18:06:00 +08:00
|
|
|
|
2019-10-30 23:11:23 +08:00
|
|
|
type DefaultFactory<T> = () => T | null | undefined
|
|
|
|
|
2019-05-31 18:07:43 +08:00
|
|
|
interface PropOptions<T = any> {
|
2019-05-28 18:06:00 +08:00
|
|
|
type?: PropType<T> | true | null
|
|
|
|
required?: boolean
|
2019-10-30 23:11:23 +08:00
|
|
|
default?: T | DefaultFactory<T> | null | undefined
|
2019-10-22 23:26:48 +08:00
|
|
|
validator?(value: unknown): boolean
|
2019-05-31 18:07:43 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 00:47:05 +08:00
|
|
|
export type PropType<T> = PropConstructor<T> | PropConstructor<T>[]
|
|
|
|
|
2020-04-03 21:28:13 +08:00
|
|
|
type PropConstructor<T = any> =
|
|
|
|
| { new (...args: any[]): T & object }
|
|
|
|
| { (): T }
|
|
|
|
| PropMethod<T>
|
|
|
|
|
|
|
|
type PropMethod<T> = T extends (...args: any) => any // if is function with args
|
|
|
|
? { new (): T; (): T; readonly proptotype: Function } // Create Function like contructor
|
|
|
|
: never
|
2019-06-01 00:47:05 +08:00
|
|
|
|
2019-10-05 22:48:54 +08:00
|
|
|
type RequiredKeys<T, MakeDefaultRequired> = {
|
2019-06-12 15:43:19 +08:00
|
|
|
[K in keyof T]: T[K] extends
|
|
|
|
| { required: true }
|
2019-10-05 22:48:54 +08:00
|
|
|
| (MakeDefaultRequired extends true ? { default: any } : never)
|
2019-06-12 15:43:19 +08:00
|
|
|
? K
|
|
|
|
: never
|
2019-06-01 00:47:05 +08:00
|
|
|
}[keyof T]
|
|
|
|
|
2019-10-05 22:48:54 +08:00
|
|
|
type OptionalKeys<T, MakeDefaultRequired> = Exclude<
|
2019-06-12 15:43:19 +08:00
|
|
|
keyof T,
|
2019-10-05 22:48:54 +08:00
|
|
|
RequiredKeys<T, MakeDefaultRequired>
|
2019-06-12 15:43:19 +08:00
|
|
|
>
|
2019-06-01 00:47:05 +08:00
|
|
|
|
|
|
|
type InferPropType<T> = T extends null
|
2019-06-01 17:43:41 +08:00
|
|
|
? any // null & true would fail to infer
|
|
|
|
: T extends { type: null | true }
|
2019-10-22 23:52:29 +08:00
|
|
|
? any // somehow `ObjectConstructor` when inferred from { (): T } becomes `any`
|
|
|
|
: T extends ObjectConstructor | { type: ObjectConstructor }
|
|
|
|
? { [key: string]: any }
|
|
|
|
: T extends Prop<infer V> ? V : T
|
2019-06-01 00:47:05 +08:00
|
|
|
|
2019-06-12 15:43:19 +08:00
|
|
|
export type ExtractPropTypes<
|
|
|
|
O,
|
2019-10-05 22:48:54 +08:00
|
|
|
MakeDefaultRequired extends boolean = true
|
2019-06-12 15:43:19 +08:00
|
|
|
> = O extends object
|
2019-11-10 07:40:25 +08:00
|
|
|
? { [K in RequiredKeys<O, MakeDefaultRequired>]: InferPropType<O[K]> } &
|
|
|
|
{ [K in OptionalKeys<O, MakeDefaultRequired>]?: InferPropType<O[K]> }
|
2019-06-01 00:47:05 +08:00
|
|
|
: { [K in string]: any }
|
2019-05-28 18:06:00 +08:00
|
|
|
|
|
|
|
const enum BooleanFlags {
|
2019-11-25 05:00:46 +08:00
|
|
|
shouldCast,
|
|
|
|
shouldCastTrue
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 00:47:05 +08:00
|
|
|
type NormalizedProp =
|
|
|
|
| null
|
|
|
|
| (PropOptions & {
|
|
|
|
[BooleanFlags.shouldCast]?: boolean
|
|
|
|
[BooleanFlags.shouldCastTrue]?: boolean
|
|
|
|
})
|
2019-05-28 18:06:00 +08:00
|
|
|
|
2019-12-13 11:07:48 +08:00
|
|
|
// normalized value is a tuple of the actual normalized options
|
|
|
|
// and an array of prop keys that need value casting (booleans and defaults)
|
|
|
|
type NormalizedPropsOptions = [Record<string, NormalizedProp>, string[]]
|
2019-05-28 18:06:00 +08:00
|
|
|
|
|
|
|
// resolve raw VNode data.
|
2020-01-24 10:01:56 +08:00
|
|
|
// - filter out reserved keys (key, ref)
|
2019-05-28 18:06:00 +08:00
|
|
|
// - extract class and style into $attrs (to be merged onto child
|
|
|
|
// component root)
|
|
|
|
// - for the rest:
|
|
|
|
// - if has declared props: put declared ones in `props`, the rest in `attrs`
|
|
|
|
// - else: everything goes in `props`.
|
|
|
|
|
|
|
|
export function resolveProps(
|
2019-09-07 00:58:31 +08:00
|
|
|
instance: ComponentInternalInstance,
|
2020-04-04 00:05:52 +08:00
|
|
|
rawProps: Data | null
|
2019-05-29 11:36:16 +08:00
|
|
|
) {
|
2020-04-04 00:05:52 +08:00
|
|
|
const _options = instance.type.props
|
2020-03-19 06:14:51 +08:00
|
|
|
const hasDeclaredProps = !!_options
|
2019-05-29 09:18:45 +08:00
|
|
|
if (!rawProps && !hasDeclaredProps) {
|
2020-04-04 00:05:52 +08:00
|
|
|
instance.props = instance.attrs = EMPTY_OBJ
|
2019-05-29 11:36:16 +08:00
|
|
|
return
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
2019-05-30 23:16:15 +08:00
|
|
|
|
2019-12-13 11:07:48 +08:00
|
|
|
const { 0: options, 1: needCastKeys } = normalizePropsOptions(_options)!
|
2020-04-04 08:40:34 +08:00
|
|
|
const emits = instance.type.emits
|
2019-10-22 23:26:48 +08:00
|
|
|
const props: Data = {}
|
2020-02-11 02:15:36 +08:00
|
|
|
let attrs: Data | undefined = undefined
|
2019-05-30 23:16:15 +08:00
|
|
|
|
|
|
|
// update the instance propsProxy (passed to setup()) to trigger potential
|
|
|
|
// changes
|
|
|
|
const propsProxy = instance.propsProxy
|
|
|
|
const setProp = propsProxy
|
2019-10-22 23:26:48 +08:00
|
|
|
? (key: string, val: unknown) => {
|
2019-05-30 23:16:15 +08:00
|
|
|
props[key] = val
|
|
|
|
propsProxy[key] = val
|
|
|
|
}
|
2019-10-22 23:26:48 +08:00
|
|
|
: (key: string, val: unknown) => {
|
2019-05-30 23:16:15 +08:00
|
|
|
props[key] = val
|
|
|
|
}
|
|
|
|
|
2019-08-23 21:38:32 +08:00
|
|
|
// allow mutation of propsProxy (which is readonly by default)
|
2019-05-30 23:16:15 +08:00
|
|
|
unlock()
|
|
|
|
|
2020-03-19 06:14:51 +08:00
|
|
|
if (rawProps) {
|
2019-05-29 09:18:45 +08:00
|
|
|
for (const key in rawProps) {
|
2020-02-11 02:15:36 +08:00
|
|
|
const value = rawProps[key]
|
2019-11-21 10:56:17 +08:00
|
|
|
// key, ref are reserved and never passed down
|
2020-02-11 02:15:36 +08:00
|
|
|
if (isReservedProp(key)) {
|
|
|
|
continue
|
|
|
|
}
|
2019-10-24 22:59:57 +08:00
|
|
|
// prop option names are camelized during normalization, so to support
|
|
|
|
// kebab -> camel conversion here we need to camelize the key.
|
2020-04-04 00:05:52 +08:00
|
|
|
let camelKey
|
|
|
|
if (hasDeclaredProps && hasOwn(options, (camelKey = camelize(key)))) {
|
|
|
|
setProp(camelKey, value)
|
2020-04-04 07:08:17 +08:00
|
|
|
} else if (!emits || !isEmitListener(emits, key)) {
|
2020-04-04 00:05:52 +08:00
|
|
|
// Any non-declared (either as a prop or an emitted event) props are put
|
|
|
|
// into a separate `attrs` object for spreading. Make sure to preserve
|
|
|
|
// original key casing
|
|
|
|
;(attrs || (attrs = {}))[key] = value
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-04 00:05:52 +08:00
|
|
|
|
2019-05-28 18:06:00 +08:00
|
|
|
if (hasDeclaredProps) {
|
2019-12-13 11:07:48 +08:00
|
|
|
// set default values & cast booleans
|
|
|
|
for (let i = 0; i < needCastKeys.length; i++) {
|
|
|
|
const key = needCastKeys[i]
|
2019-05-28 18:06:00 +08:00
|
|
|
let opt = options[key]
|
|
|
|
if (opt == null) continue
|
2019-09-06 08:48:14 +08:00
|
|
|
const hasDefault = hasOwn(opt, 'default')
|
2019-05-28 18:06:00 +08:00
|
|
|
const currentValue = props[key]
|
|
|
|
// default values
|
|
|
|
if (hasDefault && currentValue === undefined) {
|
|
|
|
const defaultValue = opt.default
|
2019-05-30 23:16:15 +08:00
|
|
|
setProp(key, isFunction(defaultValue) ? defaultValue() : defaultValue)
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
// boolean casting
|
|
|
|
if (opt[BooleanFlags.shouldCast]) {
|
2020-03-17 22:35:32 +08:00
|
|
|
if (!hasOwn(props, key) && !hasDefault) {
|
2019-05-30 23:16:15 +08:00
|
|
|
setProp(key, false)
|
2019-05-28 18:06:00 +08:00
|
|
|
} else if (
|
|
|
|
opt[BooleanFlags.shouldCastTrue] &&
|
|
|
|
(currentValue === '' || currentValue === hyphenate(key))
|
|
|
|
) {
|
2019-05-30 23:16:15 +08:00
|
|
|
setProp(key, true)
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
}
|
2019-12-13 11:07:48 +08:00
|
|
|
}
|
|
|
|
// validation
|
|
|
|
if (__DEV__ && rawProps) {
|
|
|
|
for (const key in options) {
|
|
|
|
let opt = options[key]
|
|
|
|
if (opt == null) continue
|
2020-03-17 22:35:32 +08:00
|
|
|
validateProp(key, props[key], opt, !hasOwn(props, key))
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-29 11:36:16 +08:00
|
|
|
|
2019-06-05 21:38:32 +08:00
|
|
|
// in case of dynamic props, check if we need to delete keys from
|
|
|
|
// the props proxy
|
|
|
|
const { patchFlag } = instance.vnode
|
2020-04-04 00:05:52 +08:00
|
|
|
if (
|
|
|
|
hasDeclaredProps &&
|
|
|
|
propsProxy &&
|
|
|
|
(patchFlag === 0 || patchFlag & PatchFlags.FULL_PROPS)
|
|
|
|
) {
|
2019-06-11 23:50:28 +08:00
|
|
|
const rawInitialProps = toRaw(propsProxy)
|
2019-06-05 21:38:32 +08:00
|
|
|
for (const key in rawInitialProps) {
|
2019-09-06 08:48:14 +08:00
|
|
|
if (!hasOwn(props, key)) {
|
2019-06-05 21:38:32 +08:00
|
|
|
delete propsProxy[key]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-23 21:38:32 +08:00
|
|
|
// lock readonly
|
2019-05-30 23:16:15 +08:00
|
|
|
lock()
|
|
|
|
|
2020-04-04 00:05:52 +08:00
|
|
|
if (
|
|
|
|
instance.vnode.shapeFlag & ShapeFlags.FUNCTIONAL_COMPONENT &&
|
|
|
|
!hasDeclaredProps
|
|
|
|
) {
|
|
|
|
// functional component with optional props: use attrs as props
|
|
|
|
instance.props = attrs || EMPTY_OBJ
|
|
|
|
} else {
|
|
|
|
instance.props = props
|
|
|
|
}
|
2020-02-29 06:53:26 +08:00
|
|
|
instance.attrs = attrs || EMPTY_OBJ
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
|
2020-03-17 06:45:08 +08:00
|
|
|
function validatePropName(key: string) {
|
|
|
|
if (key[0] !== '$') {
|
|
|
|
return true
|
|
|
|
} else if (__DEV__) {
|
|
|
|
warn(`Invalid prop name: "${key}" is a reserved property.`)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-03-22 04:25:33 +08:00
|
|
|
export function normalizePropsOptions(
|
2019-05-28 18:06:00 +08:00
|
|
|
raw: ComponentPropsOptions | void
|
2019-12-13 11:07:48 +08:00
|
|
|
): NormalizedPropsOptions {
|
2019-05-28 18:06:00 +08:00
|
|
|
if (!raw) {
|
2020-03-22 04:25:33 +08:00
|
|
|
return EMPTY_ARR as any
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
2020-04-04 00:05:52 +08:00
|
|
|
if ((raw as any)._n) {
|
|
|
|
return (raw as any)._n
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
2020-04-04 00:05:52 +08:00
|
|
|
const normalized: NormalizedPropsOptions[0] = {}
|
2019-12-13 11:07:48 +08:00
|
|
|
const needCastKeys: NormalizedPropsOptions[1] = []
|
2019-05-28 18:06:00 +08:00
|
|
|
if (isArray(raw)) {
|
|
|
|
for (let i = 0; i < raw.length; i++) {
|
|
|
|
if (__DEV__ && !isString(raw[i])) {
|
|
|
|
warn(`props must be strings when using array syntax.`, raw[i])
|
|
|
|
}
|
|
|
|
const normalizedKey = camelize(raw[i])
|
2020-03-17 06:45:08 +08:00
|
|
|
if (validatePropName(normalizedKey)) {
|
2020-04-04 00:05:52 +08:00
|
|
|
normalized[normalizedKey] = EMPTY_OBJ
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (__DEV__ && !isObject(raw)) {
|
|
|
|
warn(`invalid props options`, raw)
|
|
|
|
}
|
|
|
|
for (const key in raw) {
|
|
|
|
const normalizedKey = camelize(key)
|
2020-03-17 06:45:08 +08:00
|
|
|
if (validatePropName(normalizedKey)) {
|
2019-05-28 18:06:00 +08:00
|
|
|
const opt = raw[key]
|
2020-04-04 00:05:52 +08:00
|
|
|
const prop: NormalizedProp = (normalized[normalizedKey] =
|
2019-05-28 18:06:00 +08:00
|
|
|
isArray(opt) || isFunction(opt) ? { type: opt } : opt)
|
2020-03-19 06:14:51 +08:00
|
|
|
if (prop) {
|
2019-05-28 18:06:00 +08:00
|
|
|
const booleanIndex = getTypeIndex(Boolean, prop.type)
|
|
|
|
const stringIndex = getTypeIndex(String, prop.type)
|
2019-06-01 00:47:05 +08:00
|
|
|
prop[BooleanFlags.shouldCast] = booleanIndex > -1
|
2020-03-16 22:19:06 +08:00
|
|
|
prop[BooleanFlags.shouldCastTrue] =
|
|
|
|
stringIndex < 0 || booleanIndex < stringIndex
|
2019-12-13 11:07:48 +08:00
|
|
|
// if the prop needs boolean casting or default value
|
|
|
|
if (booleanIndex > -1 || hasOwn(prop, 'default')) {
|
|
|
|
needCastKeys.push(normalizedKey)
|
|
|
|
}
|
2019-05-28 18:06:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-04 00:05:52 +08:00
|
|
|
const normalizedEntry: NormalizedPropsOptions = [normalized, needCastKeys]
|
|
|
|
Object.defineProperty(raw, '_n', { value: normalizedEntry })
|
|
|
|
return normalizedEntry
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:06:00 +08:00
|
|
|
// use function string name to check type constructors
|
|
|
|
// so that it works across vms / iframes.
|
|
|
|
function getType(ctor: Prop<any>): string {
|
|
|
|
const match = ctor && ctor.toString().match(/^\s*function (\w+)/)
|
|
|
|
return match ? match[1] : ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function isSameType(a: Prop<any>, b: Prop<any>): boolean {
|
|
|
|
return getType(a) === getType(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTypeIndex(
|
|
|
|
type: Prop<any>,
|
|
|
|
expectedTypes: PropType<any> | void | null | true
|
|
|
|
): number {
|
|
|
|
if (isArray(expectedTypes)) {
|
|
|
|
for (let i = 0, len = expectedTypes.length; i < len; i++) {
|
|
|
|
if (isSameType(expectedTypes[i], type)) {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 22:19:06 +08:00
|
|
|
} else if (isFunction(expectedTypes)) {
|
2019-05-28 18:06:00 +08:00
|
|
|
return isSameType(expectedTypes, type) ? 0 : -1
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
type AssertionResult = {
|
|
|
|
valid: boolean
|
|
|
|
expectedType: string
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateProp(
|
|
|
|
name: string,
|
2019-10-22 23:26:48 +08:00
|
|
|
value: unknown,
|
|
|
|
prop: PropOptions,
|
2019-05-28 18:06:00 +08:00
|
|
|
isAbsent: boolean
|
|
|
|
) {
|
|
|
|
const { type, required, validator } = prop
|
|
|
|
// required!
|
|
|
|
if (required && isAbsent) {
|
|
|
|
warn('Missing required prop: "' + name + '"')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// missing but optional
|
|
|
|
if (value == null && !prop.required) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// type check
|
|
|
|
if (type != null && type !== true) {
|
|
|
|
let isValid = false
|
|
|
|
const types = isArray(type) ? type : [type]
|
|
|
|
const expectedTypes = []
|
|
|
|
// value is valid as long as one of the specified types match
|
|
|
|
for (let i = 0; i < types.length && !isValid; i++) {
|
|
|
|
const { valid, expectedType } = assertType(value, types[i])
|
|
|
|
expectedTypes.push(expectedType || '')
|
|
|
|
isValid = valid
|
|
|
|
}
|
|
|
|
if (!isValid) {
|
|
|
|
warn(getInvalidTypeMessage(name, value, expectedTypes))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// custom validator
|
|
|
|
if (validator && !validator(value)) {
|
|
|
|
warn('Invalid prop: custom validator check failed for prop "' + name + '".')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-23 22:34:58 +08:00
|
|
|
const isSimpleType = /*#__PURE__*/ makeMap(
|
|
|
|
'String,Number,Boolean,Function,Symbol'
|
|
|
|
)
|
2019-05-28 18:06:00 +08:00
|
|
|
|
2019-10-22 23:26:48 +08:00
|
|
|
function assertType(value: unknown, type: PropConstructor): AssertionResult {
|
2019-05-28 18:06:00 +08:00
|
|
|
let valid
|
|
|
|
const expectedType = getType(type)
|
2019-10-23 22:34:58 +08:00
|
|
|
if (isSimpleType(expectedType)) {
|
2019-05-28 18:06:00 +08:00
|
|
|
const t = typeof value
|
|
|
|
valid = t === expectedType.toLowerCase()
|
|
|
|
// for primitive wrapper objects
|
|
|
|
if (!valid && t === 'object') {
|
|
|
|
valid = value instanceof type
|
|
|
|
}
|
|
|
|
} else if (expectedType === 'Object') {
|
|
|
|
valid = toRawType(value) === 'Object'
|
|
|
|
} else if (expectedType === 'Array') {
|
|
|
|
valid = isArray(value)
|
|
|
|
} else {
|
|
|
|
valid = value instanceof type
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
valid,
|
|
|
|
expectedType
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getInvalidTypeMessage(
|
|
|
|
name: string,
|
2019-10-22 23:26:48 +08:00
|
|
|
value: unknown,
|
2019-05-28 18:06:00 +08:00
|
|
|
expectedTypes: string[]
|
|
|
|
): string {
|
|
|
|
let message =
|
|
|
|
`Invalid prop: type check failed for prop "${name}".` +
|
|
|
|
` Expected ${expectedTypes.map(capitalize).join(', ')}`
|
|
|
|
const expectedType = expectedTypes[0]
|
|
|
|
const receivedType = toRawType(value)
|
|
|
|
const expectedValue = styleValue(value, expectedType)
|
|
|
|
const receivedValue = styleValue(value, receivedType)
|
|
|
|
// check if we need to specify expected value
|
|
|
|
if (
|
|
|
|
expectedTypes.length === 1 &&
|
|
|
|
isExplicable(expectedType) &&
|
|
|
|
!isBoolean(expectedType, receivedType)
|
|
|
|
) {
|
|
|
|
message += ` with value ${expectedValue}`
|
|
|
|
}
|
|
|
|
message += `, got ${receivedType} `
|
|
|
|
// check if we need to specify received value
|
|
|
|
if (isExplicable(receivedType)) {
|
|
|
|
message += `with value ${receivedValue}.`
|
|
|
|
}
|
|
|
|
return message
|
|
|
|
}
|
|
|
|
|
2019-10-22 23:26:48 +08:00
|
|
|
function styleValue(value: unknown, type: string): string {
|
2019-05-28 18:06:00 +08:00
|
|
|
if (type === 'String') {
|
|
|
|
return `"${value}"`
|
|
|
|
} else if (type === 'Number') {
|
|
|
|
return `${Number(value)}`
|
|
|
|
} else {
|
|
|
|
return `${value}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isExplicable(type: string): boolean {
|
|
|
|
const explicitTypes = ['string', 'number', 'boolean']
|
|
|
|
return explicitTypes.some(elem => type.toLowerCase() === elem)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isBoolean(...args: string[]): boolean {
|
|
|
|
return args.some(elem => elem.toLowerCase() === 'boolean')
|
|
|
|
}
|