Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | 1x 1x 1x 1x 302x 302x 302x 302x 302x 302x 225x 225x 262x 77x 77x 223x 43x 51x 51x 51x 51x 43x 262x 35x 1x 1x 1x 1x 1x 34x 34x 302x 33x 33x 72x 72x 72x 72x 225x 225x 225x 225x 225x 225x 216x 216x 9x 9x 9x 9x 9x 9x 9x 34x 34x 225x 1x 1x 1x 1x 1x 9x 34x 9x 9x 9x 1x 198x 198x 31x 31x 15x 15x 23x 23x 23x 23x 9x 9x 9x 9x 23x 15x 3x 3x 3x 3x 15x 198x 33x 33x 197x 198x 3x 3x 3x 198x 194x 194x 198x 1x 33x 33x 33x 33x 33x 33x 33x 129x 129x 124x 124x 129x 32x 32x 33x 4x 4x 4x 4x 32x 32x 33x 33x 33x 33x 33x 33x 33x 129x 129x 129x 129x 35x 2x 2x 35x 33x 33x 35x 129x 129x 129x 129x 129x 129x 129x 33x 33x 129x 129x 129x 129x 129x 129x 129x 129x 9x 9x 9x 129x 14x 14x 35x 35x 35x 14x 14x 10x 6x 10x 4x 4x 4x 4x 10x 14x 128x 129x 111x 111x 111x 111x 111x 111x 111x 17x 17x 19x 13x 17x 17x 9x 9x 9x 9x 12x 8x 2x 1x 1x 1x 1x 1x 1x 2x 8x 8x 129x 33x 33x 33x 9x 8x 8x 13x 11x 8x 33x 152x 152x 152x 152x 152x 152x 152x 152x 19x 19x 19x 10x 10x 1x 1x 1x 1x 1x 10x 18x 18x 9x 19x 19x 15x 6x 19x 19x 19x 19x 19x 152x 10x 10x 10x 2x 10x 4x 10x 10x 2x 10x 10x 10x 2x 10x 10x | import type { Expression, LVal, Node, ObjectExpression, ObjectMethod, ObjectProperty, } from '@babel/types' import { BindingTypes, isFunctionType, unwrapTSNode } from '@vue/compiler-dom' import type { ScriptCompileContext } from './context' import { type TypeResolveContext, inferRuntimeType, resolveTypeElements, } from './resolveType' import { UNKNOWN_TYPE, concatStrings, getEscapedPropName, isCallOf, isLiteralNode, resolveObjectKey, toRuntimeTypeString, } from './utils' import { genModelProps } from './defineModel' import { getObjectOrArrayExpressionKeys } from './analyzeScriptBindings' import { processPropsDestructure } from './definePropsDestructure' export const DEFINE_PROPS = 'defineProps' export const WITH_DEFAULTS = 'withDefaults' export interface PropTypeData { key: string type: string[] required: boolean skipCheck: boolean } export type PropsDestructureBindings = Record< string, // public prop key { local: string // local identifier, may be different default?: Expression } > export function processDefineProps( ctx: ScriptCompileContext, node: Node, declId?: LVal, isWithDefaults = false, ): boolean { if (!isCallOf(node, DEFINE_PROPS)) { return processWithDefaults(ctx, node, declId) } if (ctx.hasDefinePropsCall) { ctx.error(`duplicate ${DEFINE_PROPS}() call`, node) } ctx.hasDefinePropsCall = true ctx.propsRuntimeDecl = node.arguments[0] // register bindings if (ctx.propsRuntimeDecl) { for (const key of getObjectOrArrayExpressionKeys(ctx.propsRuntimeDecl)) { if (!(key in ctx.bindingMetadata)) { ctx.bindingMetadata[key] = BindingTypes.PROPS } } } // call has type parameters - infer runtime types from it if (node.typeParameters) { if (ctx.propsRuntimeDecl) { ctx.error( `${DEFINE_PROPS}() cannot accept both type and non-type arguments ` + `at the same time. Use one or the other.`, node, ) } ctx.propsTypeDecl = node.typeParameters.params[0] } // handle props destructure if (!isWithDefaults && declId && declId.type === 'ObjectPattern') { processPropsDestructure(ctx, declId) } ctx.propsCall = node ctx.propsDecl = declId return true } function processWithDefaults( ctx: ScriptCompileContext, node: Node, declId?: LVal, ): boolean { if (!isCallOf(node, WITH_DEFAULTS)) { return false } if ( !processDefineProps( ctx, node.arguments[0], declId, true /* isWithDefaults */, ) ) { ctx.error( `${WITH_DEFAULTS}' first argument must be a ${DEFINE_PROPS} call.`, node.arguments[0] || node, ) } if (ctx.propsRuntimeDecl) { ctx.error( `${WITH_DEFAULTS} can only be used with type-based ` + `${DEFINE_PROPS} declaration.`, node, ) } if (declId && declId.type === 'ObjectPattern') { ctx.warn( `${WITH_DEFAULTS}() is unnecessary when using destructure with ${DEFINE_PROPS}().\n` + `Reactive destructure will be disabled when using withDefaults().\n` + `Prefer using destructure default values, e.g. const { foo = 1 } = defineProps(...). `, node.callee, ) } ctx.propsRuntimeDefaults = node.arguments[1] if (!ctx.propsRuntimeDefaults) { ctx.error(`The 2nd argument of ${WITH_DEFAULTS} is required.`, node) } ctx.propsCall = node return true } export function genRuntimeProps(ctx: ScriptCompileContext): string | undefined { let propsDecls: undefined | string if (ctx.propsRuntimeDecl) { propsDecls = ctx.getString(ctx.propsRuntimeDecl).trim() if (ctx.propsDestructureDecl) { const defaults: string[] = [] for (const key in ctx.propsDestructuredBindings) { const d = genDestructuredDefaultValue(ctx, key) const finalKey = getEscapedPropName(key) if (d) defaults.push( `${finalKey}: ${d.valueString}${ d.needSkipFactory ? `, __skip_${finalKey}: true` : `` }`, ) } if (defaults.length) { propsDecls = `/*@__PURE__*/${ctx.helper( `mergeDefaults`, )}(${propsDecls}, {\n ${defaults.join(',\n ')}\n})` } } } else if (ctx.propsTypeDecl) { propsDecls = extractRuntimeProps(ctx) } const modelsDecls = genModelProps(ctx) if (propsDecls && modelsDecls) { return `/*@__PURE__*/${ctx.helper( 'mergeModels', )}(${propsDecls}, ${modelsDecls})` } else { return modelsDecls || propsDecls } } export function extractRuntimeProps( ctx: TypeResolveContext, ): string | undefined { // this is only called if propsTypeDecl exists const props = resolveRuntimePropsFromType(ctx, ctx.propsTypeDecl!) if (!props.length) { return } const propStrings: string[] = [] const hasStaticDefaults = hasStaticWithDefaults(ctx) for (const prop of props) { propStrings.push(genRuntimePropFromType(ctx, prop, hasStaticDefaults)) // register bindings if ('bindingMetadata' in ctx && !(prop.key in ctx.bindingMetadata)) { ctx.bindingMetadata[prop.key] = BindingTypes.PROPS } } let propsDecls = `{ ${propStrings.join(',\n ')}\n }` if (ctx.propsRuntimeDefaults && !hasStaticDefaults) { propsDecls = `/*@__PURE__*/${ctx.helper( 'mergeDefaults', )}(${propsDecls}, ${ctx.getString(ctx.propsRuntimeDefaults)})` } return propsDecls } function resolveRuntimePropsFromType( ctx: TypeResolveContext, node: Node, ): PropTypeData[] { const props: PropTypeData[] = [] const elements = resolveTypeElements(ctx, node) for (const key in elements.props) { const e = elements.props[key] let type = inferRuntimeType(ctx, e) let skipCheck = false // skip check for result containing unknown types if (type.includes(UNKNOWN_TYPE)) { if (type.includes('Boolean') || type.includes('Function')) { type = type.filter(t => t !== UNKNOWN_TYPE) skipCheck = true } else { type = ['null'] } } props.push({ key, required: !e.optional, type: type || [`null`], skipCheck, }) } return props } function genRuntimePropFromType( ctx: TypeResolveContext, { key, required, type, skipCheck }: PropTypeData, hasStaticDefaults: boolean, ): string { let defaultString: string | undefined const destructured = genDestructuredDefaultValue(ctx, key, type) if (destructured) { defaultString = `default: ${destructured.valueString}${ destructured.needSkipFactory ? `, skipFactory: true` : `` }` } else if (hasStaticDefaults) { const prop = (ctx.propsRuntimeDefaults as ObjectExpression).properties.find( node => { if (node.type === 'SpreadElement') return false return resolveObjectKey(node.key, node.computed) === key }, ) as ObjectProperty | ObjectMethod if (prop) { if (prop.type === 'ObjectProperty') { // prop has corresponding static default value defaultString = `default: ${ctx.getString(prop.value)}` } else { defaultString = `${prop.async ? 'async ' : ''}${ prop.kind !== 'method' ? `${prop.kind} ` : '' }default() ${ctx.getString(prop.body)}` } } } const finalKey = getEscapedPropName(key) if (!ctx.options.isProd) { return `${finalKey}: { ${concatStrings([ `type: ${toRuntimeTypeString(type)}`, `required: ${required}`, skipCheck && 'skipCheck: true', defaultString, ])} }` } else if ( type.some( el => el === 'Boolean' || ((!hasStaticDefaults || defaultString) && el === 'Function'), ) ) { // #4783 for boolean, should keep the type // #7111 for function, if default value exists or it's not static, should keep it // in production return `${finalKey}: { ${concatStrings([ `type: ${toRuntimeTypeString(type)}`, defaultString, ])} }` } else { // #8989 for custom element, should keep the type if (ctx.isCE) { if (defaultString) { return `${finalKey}: ${`{ ${defaultString}, type: ${toRuntimeTypeString( type, )} }`}` } else { return `${finalKey}: {type: ${toRuntimeTypeString(type)}}` } } // production: checks are useless return `${finalKey}: ${defaultString ? `{ ${defaultString} }` : `{}`}` } } /** * check defaults. If the default object is an object literal with only * static properties, we can directly generate more optimized default * declarations. Otherwise we will have to fallback to runtime merging. */ function hasStaticWithDefaults(ctx: TypeResolveContext) { return !!( ctx.propsRuntimeDefaults && ctx.propsRuntimeDefaults.type === 'ObjectExpression' && ctx.propsRuntimeDefaults.properties.every( node => node.type !== 'SpreadElement' && (!node.computed || node.key.type.endsWith('Literal')), ) ) } function genDestructuredDefaultValue( ctx: TypeResolveContext, key: string, inferredType?: string[], ): | { valueString: string needSkipFactory: boolean } | undefined { const destructured = ctx.propsDestructuredBindings[key] const defaultVal = destructured && destructured.default if (defaultVal) { const value = ctx.getString(defaultVal) const unwrapped = unwrapTSNode(defaultVal) if (inferredType && inferredType.length && !inferredType.includes('null')) { const valueType = inferValueType(unwrapped) if (valueType && !inferredType.includes(valueType)) { ctx.error( `Default value of prop "${key}" does not match declared type.`, unwrapped, ) } } // If the default value is a function or is an identifier referencing // external value, skip factory wrap. This is needed when using // destructure w/ runtime declaration since we cannot safely infer // whether the expected runtime prop type is `Function`. const needSkipFactory = !inferredType && (isFunctionType(unwrapped) || unwrapped.type === 'Identifier') const needFactoryWrap = !needSkipFactory && !isLiteralNode(unwrapped) && !inferredType?.includes('Function') return { valueString: needFactoryWrap ? `() => (${value})` : value, needSkipFactory, } } } // non-comprehensive, best-effort type infernece for a runtime value // this is used to catch default value / type declaration mismatches // when using props destructure. function inferValueType(node: Node): string | undefined { switch (node.type) { case 'StringLiteral': return 'String' case 'NumericLiteral': return 'Number' case 'BooleanLiteral': return 'Boolean' case 'ObjectExpression': return 'Object' case 'ArrayExpression': return 'Array' case 'FunctionExpression': case 'ArrowFunctionExpression': return 'Function' } } |