File size: 35,665 Bytes
1e92f2d |
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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 |
import type {
API,
Collection,
ASTPath,
ObjectPattern,
Identifier,
} from 'jscodeshift'
import {
determineClientDirective,
generateUniqueIdentifier,
getFunctionPathFromExportPath,
insertReactUseImport,
isFunctionType,
TARGET_NAMED_EXPORTS,
TARGET_PROP_NAMES,
turnFunctionReturnTypeToAsync,
wrapParentheseIfNeeded,
type FunctionScope,
insertCommentOnce,
TARGET_ROUTE_EXPORTS,
getVariableDeclaratorId,
NEXTJS_ENTRY_FILES,
NEXT_CODEMOD_ERROR_PREFIX,
findFunctionBody,
containsReactHooksCallExpressions,
isParentUseCallExpression,
isParentPromiseAllCallExpression,
findClosetParentFunctionScope,
} from './utils'
import { createParserFromPath } from '../../../lib/parser'
const PAGE_PROPS = 'props'
// Find all the member access of the prop, and await them
// e.g. If there's argument `props`, find all the member access of props.<name>.
// If the member access can be awaited, await them.
function awaitMemberAccessOfProp(
propIdName: string,
path: ASTPath<FunctionScope>,
j: API['jscodeshift']
) {
// search the member access of the prop
const functionBody = findFunctionBody(path)
const memberAccess = j(functionBody).find(j.MemberExpression, {
object: {
type: 'Identifier',
name: propIdName,
},
})
let hasAwaited = false
// await each member access
memberAccess.forEach((memberAccessPath) => {
const member = memberAccessPath.value
const memberProperty = member.property
const isAccessingMatchedProperty =
j.Identifier.check(memberProperty) &&
TARGET_PROP_NAMES.has(memberProperty.name)
if (!isAccessingMatchedProperty) {
return
}
if (isParentPromiseAllCallExpression(memberAccessPath, j)) {
return
}
// check if it's already awaited
if (memberAccessPath.parentPath?.value.type === 'AwaitExpression') {
return
}
const parentScopeOfMemberAccess = findClosetParentFunctionScope(
memberAccessPath,
j
)
// When the parent scope is sync, and it's also not the function itself, which means it's not able to convert to async.
if (
parentScopeOfMemberAccess &&
!parentScopeOfMemberAccess.value?.async &&
parentScopeOfMemberAccess.node !== path.node
) {
// If it's not able to convert, add a comment to the prop access to warn the user
// e.g. the parent scope is sync, await keyword can't be applied
const comment = ` ${NEXT_CODEMOD_ERROR_PREFIX} '${propIdName}.${memberProperty.name}' is accessed without awaiting.`
insertCommentOnce(member, j, comment)
return
}
const awaitedExpr = j.awaitExpression(member)
const awaitMemberAccess = wrapParentheseIfNeeded(true, j, awaitedExpr)
memberAccessPath.replace(awaitMemberAccess)
hasAwaited = true
})
const hasReactHooksUsage = containsReactHooksCallExpressions(
path.get('body'),
j
)
// If there's any awaited member access, we need to make the function async
if (hasAwaited) {
if (path.value.async === false && !hasReactHooksUsage) {
path.value.async = true
turnFunctionReturnTypeToAsync(path.value, j)
}
}
return hasAwaited
}
function applyUseAndRenameAccessedProp(
propIdName: string,
path: ASTPath<FunctionScope>,
j: API['jscodeshift']
) {
// search the member access of the prop, and rename the member access to the member value
// e.g.
// props.params => params
// props.params.foo => params.foo
// props.searchParams.search => searchParams.search
let modified = false
const functionBody = findFunctionBody(path)
const memberAccess = j(functionBody).find(j.MemberExpression, {
object: {
type: 'Identifier',
name: propIdName,
},
})
const accessedNames: string[] = []
// rename each member access
memberAccess.forEach((memberAccessPath) => {
// If the member access expression is first argument of `use()`, we skip
if (isParentUseCallExpression(memberAccessPath, j)) {
return
}
const member = memberAccessPath.value
const memberProperty = member.property
if (j.Identifier.check(memberProperty)) {
accessedNames.push(memberProperty.name)
} else if (j.MemberExpression.check(memberProperty)) {
let currentMember = memberProperty
if (j.Identifier.check(currentMember.object)) {
accessedNames.push(currentMember.object.name)
}
}
memberAccessPath.replace(memberProperty)
})
// If there's any renamed member access, need to call `use()` onto member access
// e.g. ['params'] => insert `const params = use(props.params)`
if (accessedNames.length > 0) {
const accessedPropId = j.identifier(propIdName)
const accessedProp = j.memberExpression(
accessedPropId,
j.identifier(accessedNames[0])
)
const useCall = j.callExpression(j.identifier('use'), [accessedProp])
const useDeclaration = j.variableDeclaration('const', [
j.variableDeclarator(j.identifier(accessedNames[0]), useCall),
])
if (functionBody) {
functionBody.unshift(useDeclaration)
}
modified = true
}
return modified
}
function commentOnMatchedReExports(
root: Collection<any>,
j: API['jscodeshift']
): boolean {
let modified = false
root.find(j.ExportNamedDeclaration).forEach((path) => {
if (j.ExportSpecifier.check(path.value.specifiers[0])) {
const specifiers = path.value.specifiers
for (const specifier of specifiers) {
if (
j.ExportSpecifier.check(specifier) &&
// Find matched named exports and default export
(TARGET_NAMED_EXPORTS.has(specifier.exported.name) ||
specifier.exported.name === 'default')
) {
if (j.Literal.check(path.value.source)) {
const localName = specifier.local.name
const commentInserted = insertCommentOnce(
specifier,
j,
` ${NEXT_CODEMOD_ERROR_PREFIX} \`${localName}\` export is re-exported. Check if this component uses \`params\` or \`searchParams\``
)
modified ||= commentInserted
} else if (path.value.source === null) {
const localIdentifier = specifier.local
const localName = localIdentifier.name
// search if local identifier is from imports
const importDeclaration = root
.find(j.ImportDeclaration)
.filter((importPath) => {
return importPath.value.specifiers.some(
(importSpecifier) => importSpecifier.local.name === localName
)
})
if (importDeclaration.size() > 0) {
const commentInserted = insertCommentOnce(
specifier,
j,
` ${NEXT_CODEMOD_ERROR_PREFIX} \`${localName}\` export is re-exported. Check if this component uses \`params\` or \`searchParams\``
)
modified ||= commentInserted
}
}
}
}
}
})
return modified
}
function modifyTypes(
paramTypeAnnotation: any,
propsIdentifier: Identifier,
root: Collection<any>,
j: API['jscodeshift']
): boolean {
let modified = false
if (paramTypeAnnotation && paramTypeAnnotation.typeAnnotation) {
const typeAnnotation = paramTypeAnnotation.typeAnnotation
if (typeAnnotation.type === 'TSTypeLiteral') {
const typeLiteral = typeAnnotation
// Find the type property for `params`
typeLiteral.members.forEach((member) => {
if (
member.type === 'TSPropertySignature' &&
member.key.type === 'Identifier' &&
TARGET_PROP_NAMES.has(member.key.name)
) {
// if it's already a Promise, don't wrap it again, return
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
member.typeAnnotation.typeAnnotation.type === 'TSTypeReference' &&
member.typeAnnotation.typeAnnotation.typeName.type ===
'Identifier' &&
member.typeAnnotation.typeAnnotation.typeName.name === 'Promise'
) {
return
}
// Wrap the `params` type in Promise<>
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
j.TSType.check(member.typeAnnotation.typeAnnotation)
) {
member.typeAnnotation.typeAnnotation = j.tsTypeReference(
j.identifier('Promise'),
j.tsTypeParameterInstantiation([
member.typeAnnotation.typeAnnotation,
])
)
modified = true
}
}
})
} else if (typeAnnotation.type === 'TSTypeReference') {
// If typeAnnotation is a type or interface, change the properties to Promise<type of property>
// e.g. interface PageProps { params: { slug: string } } => interface PageProps { params: Promise<{ slug: string }> }
const typeReference = typeAnnotation
if (typeReference.typeName.type === 'Identifier') {
// Find the actual type of the type reference
const foundTypes = findAllTypes(root, j, typeReference.typeName.name)
// Deal with interfaces
if (foundTypes.interfaces.length > 0) {
const interfaceDeclaration = foundTypes.interfaces[0]
if (
interfaceDeclaration.type === 'TSInterfaceDeclaration' &&
interfaceDeclaration.body?.type === 'TSInterfaceBody'
) {
const typeBody = interfaceDeclaration.body.body
// if it's already a Promise, don't wrap it again, return
// traverse the typeReference's properties, if any is in propNames, wrap it in Promise<> if needed
typeBody.forEach((member) => {
if (
member.type === 'TSPropertySignature' &&
member.key.type === 'Identifier' &&
TARGET_PROP_NAMES.has(member.key.name)
) {
// if it's already a Promise, don't wrap it again, return
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
member.typeAnnotation?.typeAnnotation?.typeName?.name ===
'Promise'
) {
return
}
// Wrap the prop type in Promise<>
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
// check if member name is in propNames
TARGET_PROP_NAMES.has(member.key.name)
) {
member.typeAnnotation.typeAnnotation = j.tsTypeReference(
j.identifier('Promise'),
j.tsTypeParameterInstantiation([
member.typeAnnotation.typeAnnotation,
])
)
modified = true
}
}
})
}
}
// Deal with type aliases
if (foundTypes.typeAliases.length > 0) {
const typeAliasDeclaration = foundTypes.typeAliases[0]
if (j.TSTypeAliasDeclaration.check(typeAliasDeclaration)) {
const typeAlias = typeAliasDeclaration.typeAnnotation
if (
j.TSTypeLiteral.check(typeAlias) &&
typeAlias.members.length > 0
) {
const typeLiteral = typeAlias
typeLiteral.members.forEach((member) => {
if (
j.TSPropertySignature.check(member) &&
j.Identifier.check(member.key) &&
TARGET_PROP_NAMES.has(member.key.name)
) {
// if it's already a Promise, don't wrap it again, return
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
member.typeAnnotation.typeAnnotation.type ===
'TSTypeReference' &&
member.typeAnnotation.typeAnnotation.typeName.type ===
'Identifier' &&
member.typeAnnotation.typeAnnotation.typeName.name ===
'Promise'
) {
return
}
// Wrap the prop type in Promise<>
if (
member.typeAnnotation &&
j.TSTypeLiteral.check(member.typeAnnotation.typeAnnotation)
) {
member.typeAnnotation.typeAnnotation = j.tsTypeReference(
j.identifier('Promise'),
j.tsTypeParameterInstantiation([
member.typeAnnotation.typeAnnotation,
])
)
modified = true
}
}
})
}
}
}
if (foundTypes.imports.length > 0) {
// console.log('typeReference.typeName.name', typeReference.typeName.name, foundTypes)
// If it's React PropsWithChildren
if (typeReference.typeName.name === 'PropsWithChildren') {
const propType = typeReference.typeParameters?.params[0]
if (
propType &&
j.TSTypeLiteral.check(propType) &&
propType.members.length > 0
) {
const typeLiteral = propType
typeLiteral.members.forEach((member) => {
if (
j.TSPropertySignature.check(member) &&
j.Identifier.check(member.key) &&
TARGET_PROP_NAMES.has(member.key.name)
) {
// if it's already a Promise, don't wrap it again, return
if (
member.typeAnnotation &&
member.typeAnnotation.typeAnnotation &&
member.typeAnnotation.typeAnnotation.type ===
'TSTypeReference' &&
member.typeAnnotation.typeAnnotation.typeName.type ===
'Identifier' &&
member.typeAnnotation.typeAnnotation.typeName.name ===
'Promise'
) {
return
}
// Wrap the prop type in Promise<>
if (
member.typeAnnotation &&
j.TSTypeLiteral.check(member.typeAnnotation.typeAnnotation)
) {
member.typeAnnotation.typeAnnotation = j.tsTypeReference(
j.identifier('Promise'),
j.tsTypeParameterInstantiation([
member.typeAnnotation.typeAnnotation,
])
)
modified = true
}
}
})
}
}
}
}
}
propsIdentifier.typeAnnotation = paramTypeAnnotation
modified = true
}
return modified
}
export function transformDynamicProps(
source: string,
_api: API,
filePath: string
) {
const isEntryFile = NEXTJS_ENTRY_FILES.test(filePath)
if (!isEntryFile) {
return null
}
let modified = false
let modifiedPropArgument = false
const j = createParserFromPath(filePath)
const root = j(source)
// Check if 'use' from 'react' needs to be imported
let needsReactUseImport = false
// Based on the prop names
// e.g. destruct `params` { slug } = params
// e.g. destruct `searchParams `{ search } = searchParams
let insertedDestructPropNames = new Set<string>()
function processAsyncPropOfEntryFile(isClientComponent: boolean) {
// find `params` and `searchParams` in file, and transform the access to them
function renameAsyncPropIfExisted(
path: ASTPath<FunctionScope>,
isDefaultExport: boolean
) {
const decl = path.value
const params = decl.params
let functionName = decl.id?.name
// If it's const <id> = function () {}, locate the <id> to get function name
if (!decl.id) {
functionName = getVariableDeclaratorId(path, j)?.name
}
// target properties mapping, only contains `params` and `searchParams`
const propertiesMap = new Map<string, any>()
let allProperties: ObjectPattern['properties'] = []
const isRoute = !isDefaultExport && TARGET_ROUTE_EXPORTS.has(functionName)
// generateMetadata API has 2 params
if (functionName === 'generateMetadata') {
if (params.length > 2 || params.length === 0) return
} else if (isRoute) {
if (params.length !== 2) return
} else {
// Page/Layout default export have 1 param
if (params.length !== 1) return
}
const propsIdentifier = generateUniqueIdentifier(PAGE_PROPS, path, j)
const propsArgumentIndex = isRoute ? 1 : 0
const currentParam = params[propsArgumentIndex]
if (!currentParam) return
// Argument destructuring case
if (currentParam.type === 'ObjectPattern') {
// Validate if the properties are not `params` and `searchParams`,
// if they are, quit the transformation
let foundTargetProp = false
for (const prop of currentParam.properties) {
if ('key' in prop && prop.key.type === 'Identifier') {
const propName = prop.key.name
if (TARGET_PROP_NAMES.has(propName)) {
foundTargetProp = true
}
}
}
// If there's no `params` or `searchParams` matched, return
if (!foundTargetProp) return
allProperties = currentParam.properties
currentParam.properties.forEach((prop) => {
if (
// Could be `Property` or `ObjectProperty`
(j.Property.check(prop) || j.ObjectProperty.check(prop)) &&
j.Identifier.check(prop.key) &&
TARGET_PROP_NAMES.has(prop.key.name)
) {
const value = 'value' in prop ? prop.value : null
propertiesMap.set(prop.key.name, value)
}
})
modifiedPropArgument = true
} else if (currentParam.type === 'Identifier') {
// case of accessing the props.params.<name>:
// Page(props) {}
// generateMetadata(props, parent?) {}
const argName = currentParam.name
if (isClientComponent) {
const modifiedProp = applyUseAndRenameAccessedProp(argName, path, j)
if (modifiedProp) {
needsReactUseImport = true
modified = true
}
} else {
// If it's (props.params).<name>, await the member access
// const pathOfCurrentParam = path.get('params', propsArgumentIndex)
// const paramScope = findClosetParentFunctionScope(pathOfCurrentParam, j)
const awaited = awaitMemberAccessOfProp(argName, path, j)
modified ||= awaited
}
modified ||= modifyTypes(
currentParam.typeAnnotation,
propsIdentifier,
root,
j
)
// cases of passing down `props` into any function
// Page(props) { callback(props) }
// search for all the argument of CallExpression, where currentParam is one of the arguments
const callExpressions = j(path).find(j.CallExpression, {
arguments: (args) => {
return args.some((arg) => {
return (
j.Identifier.check(arg) &&
arg.name === argName &&
arg.type === 'Identifier'
)
})
},
})
// Add a comment to warn users that properties of `props` need to be awaited when accessed
callExpressions.forEach((callExpression) => {
// find the argument `currentParam`
const args = callExpression.value.arguments
const propPassedAsArg = args.find(
(arg) => j.Identifier.check(arg) && arg.name === argName
)
const comment = ` ${NEXT_CODEMOD_ERROR_PREFIX} '${argName}' is passed as an argument. Any asynchronous properties of 'props' must be awaited when accessed. `
const inserted = insertCommentOnce(propPassedAsArg, j, comment)
modified ||= inserted
})
if (modified) {
modifyTypes(currentParam.typeAnnotation, propsIdentifier, root, j)
}
}
if (modifiedPropArgument) {
const isModified = resolveAsyncProp(
path,
propertiesMap,
propsIdentifier.name,
allProperties,
isDefaultExport
)
if (isModified) {
// Make TS happy
if (j.ObjectPattern.check(currentParam)) {
modifyTypes(currentParam.typeAnnotation, propsIdentifier, root, j)
}
// Override the first param to `props`
params[propsArgumentIndex] = propsIdentifier
modified = true
}
} else {
// When the prop argument is not destructured, we need to add comments to the spread properties
if (j.Identifier.check(currentParam)) {
const commented = commentSpreadProps(path, currentParam.name, j)
const modifiedTypes = modifyTypes(
currentParam.typeAnnotation,
propsIdentifier,
root,
j
)
modified ||= commented || modifiedTypes
}
}
}
// Helper function to insert `const params = await asyncParams;` at the beginning of the function body
function resolveAsyncProp(
path: ASTPath<FunctionScope>,
propertiesMap: Map<string, Identifier | ObjectPattern | undefined>,
propsIdentifierName: string,
allProperties: ObjectPattern['properties'],
isDefaultExport: boolean
): boolean {
// Rename props to `prop` argument for the function
const insertedRenamedPropFunctionNames = new Set<string>()
const node = path.value
// If it's sync default export, and it's also server component, make the function async
if (isDefaultExport && !isClientComponent) {
const hasReactHooksUsage = containsReactHooksCallExpressions(
path.get('body'),
j
)
if (node.async === false && !hasReactHooksUsage) {
node.async = true
turnFunctionReturnTypeToAsync(node, j)
}
}
// If it's arrow function and function body is not block statement, check if the properties are used there
if (
j.ArrowFunctionExpression.check(path.node) &&
!j.BlockStatement.check(path.node.body)
) {
const objectExpression = path.node.body
let hasUsedProps = false
j(objectExpression)
.find(j.Identifier)
.forEach((identifierPath) => {
const idName = identifierPath.value.name
if (propertiesMap.has(idName)) {
hasUsedProps = true
return
}
})
// Turn the function body to block statement, return the object expression
if (hasUsedProps) {
path.node.body = j.blockStatement([
j.returnStatement(objectExpression),
])
}
}
const isAsyncFunc = !!node.async
const functionName = path.value.id?.name || 'default'
const functionBody = findFunctionBody(path)
const functionBodyPath = path.get('body')
const hasReactHooksUsage = containsReactHooksCallExpressions(
functionBodyPath,
j
)
const hasOtherProperties = allProperties.length > propertiesMap.size
function createDestructuringDeclaration(
properties: ObjectPattern['properties'],
destructPropsIdentifierName: string
) {
const propsToKeep = []
let restProperty = null
// Iterate over the destructured properties
properties.forEach((property) => {
if (j.ObjectProperty.check(property)) {
// Handle normal and computed properties
const keyName = j.Identifier.check(property.key)
? property.key.name
: j.Literal.check(property.key)
? property.key.value
: null // for computed properties
if (typeof keyName === 'string') {
propsToKeep.push(property)
}
} else if (j.RestElement.check(property)) {
restProperty = property
}
})
if (propsToKeep.length === 0 && !restProperty) {
return null
}
if (restProperty) {
propsToKeep.push(restProperty)
}
return j.variableDeclaration('const', [
j.variableDeclarator(
j.objectPattern(propsToKeep),
j.identifier(destructPropsIdentifierName)
),
])
}
if (hasOtherProperties) {
/**
* If there are other properties, we need to keep the original param with destructuring
* e.g.
* input:
* Page({ params: { slug }, otherProp }) {
* const { slug } = await props.params;
* }
*
* output:
* Page(props) {
* const { otherProp } = props; // inserted
* // ...rest of the function body
* }
*/
const restProperties = allProperties.filter((prop) => {
const isTargetProps =
'key' in prop &&
prop.key.type === 'Identifier' &&
TARGET_PROP_NAMES.has(prop.key.name)
return !isTargetProps
})
const destructionOtherPropertiesDeclaration =
createDestructuringDeclaration(restProperties, propsIdentifierName)
if (functionBody && destructionOtherPropertiesDeclaration) {
functionBody.unshift(destructionOtherPropertiesDeclaration)
}
}
let modifiedPropertyCount = 0
for (const [matchedPropName, paramsProperty] of propertiesMap) {
if (!TARGET_PROP_NAMES.has(matchedPropName)) {
continue
}
// In client component, if the param is already wrapped with `use()`, skip the transformation
if (isClientComponent) {
let shouldSkip = false
const propPaths = j(path).find(j.Identifier, {
name: matchedPropName,
})
for (const propPath of propPaths.paths()) {
if (isParentUseCallExpression(propPath, j)) {
// Skip transformation
shouldSkip = true
break
}
}
if (shouldSkip) {
continue
}
}
const paramsPropertyName = j.Identifier.check(paramsProperty)
? paramsProperty.name
: null
const paramPropertyName = paramsPropertyName || matchedPropName
// If propName is an identifier and not used in lower scope,
// also skip the transformation.
const hasUsedInBody =
j(functionBodyPath)
.find(j.Identifier, {
name: paramPropertyName,
})
.size() > 0
if (!hasUsedInBody && j.Identifier.check(paramsProperty)) continue
// Search the usage of propName in the function body,
// if they're all awaited or wrapped with use(), skip the transformation
const propUsages = j(functionBodyPath).find(j.Identifier, {
name: paramPropertyName,
})
// if there's usage of the propName, then do the check
if (propUsages.size()) {
let hasMissingAwaited = false
propUsages.forEach((propUsage) => {
// If the parent is not AwaitExpression, it's not awaited
const isAwaited =
propUsage.parentPath?.value.type === 'AwaitExpression'
const isAwaitedByUse = isParentUseCallExpression(propUsage, j)
if (!isAwaited && !isAwaitedByUse) {
hasMissingAwaited = true
return
}
})
// If all the usages of parm are awaited, skip the transformation
if (!hasMissingAwaited) {
continue
}
}
modifiedPropertyCount++
const propNameIdentifier = j.identifier(matchedPropName)
const propsIdentifier = j.identifier(propsIdentifierName)
const accessedPropIdExpr = j.memberExpression(
propsIdentifier,
propNameIdentifier
)
// Check param property value, if it's destructed, we need to destruct it as well
// e.g.
// input: Page({ params: { slug } })
// output: const { slug } = await props.params; rather than const props = await props.params;
const uid = functionName + ':' + paramPropertyName
if (paramsProperty?.type === 'ObjectPattern') {
const objectPattern = paramsProperty
const objectPatternProperties = objectPattern.properties
// destruct the object pattern, e.g. { slug } => const { slug } = params;
const destructedObjectPattern = j.variableDeclaration('const', [
j.variableDeclarator(
j.objectPattern(
objectPatternProperties.map((prop) => {
if (
prop.type === 'Property' &&
prop.key.type === 'Identifier'
) {
return j.objectProperty(
j.identifier(prop.key.name),
j.identifier(prop.key.name)
)
}
return prop
})
),
propNameIdentifier
),
])
if (!insertedDestructPropNames.has(uid) && functionBody) {
functionBody.unshift(destructedObjectPattern)
insertedDestructPropNames.add(uid)
}
}
if (isAsyncFunc) {
// If it's async function, add await to the async props.<propName>
const paramAssignment = j.variableDeclaration('const', [
j.variableDeclarator(
j.identifier(paramPropertyName),
j.awaitExpression(accessedPropIdExpr)
),
])
if (!insertedRenamedPropFunctionNames.has(uid) && functionBody) {
functionBody.unshift(paramAssignment)
insertedRenamedPropFunctionNames.add(uid)
}
} else {
if (
!isClientComponent &&
isFunctionType(node.type) &&
!hasReactHooksUsage
) {
// If it's export function, populate the function to async
node.async = true
turnFunctionReturnTypeToAsync(node, j)
// Insert `const <propName> = await props.<propName>;` at the beginning of the function body
const paramAssignment = j.variableDeclaration('const', [
j.variableDeclarator(
j.identifier(paramPropertyName),
j.awaitExpression(accessedPropIdExpr)
),
])
if (!insertedRenamedPropFunctionNames.has(uid) && functionBody) {
functionBody.unshift(paramAssignment)
insertedRenamedPropFunctionNames.add(uid)
}
} else {
const paramAssignment = j.variableDeclaration('const', [
j.variableDeclarator(
j.identifier(paramPropertyName),
j.callExpression(j.identifier('use'), [accessedPropIdExpr])
),
])
if (!insertedRenamedPropFunctionNames.has(uid) && functionBody) {
needsReactUseImport = true
functionBody.unshift(paramAssignment)
insertedRenamedPropFunctionNames.add(uid)
}
}
}
}
return modifiedPropertyCount > 0
}
const defaultExportsDeclarations = root.find(j.ExportDefaultDeclaration)
defaultExportsDeclarations.forEach((path) => {
const functionPath = getFunctionPathFromExportPath(
path,
j,
root,
() => true
)
if (functionPath) {
renameAsyncPropIfExisted(functionPath, true)
}
})
// Matching Next.js functional named export of route entry:
// - export function <named>(...) { ... }
// - export const <named> = ...
const namedExportDeclarations = root.find(j.ExportNamedDeclaration)
namedExportDeclarations.forEach((path) => {
const functionPath = getFunctionPathFromExportPath(
path,
j,
root,
(idName) => TARGET_NAMED_EXPORTS.has(idName)
)
if (functionPath) {
renameAsyncPropIfExisted(functionPath, false)
}
})
}
const isClientComponent = determineClientDirective(root, j)
// Apply to `params` and `searchParams`
processAsyncPropOfEntryFile(isClientComponent)
// Add import { use } from 'react' if needed and not already imported
if (needsReactUseImport) {
insertReactUseImport(root, j)
}
const commented = commentOnMatchedReExports(root, j)
modified ||= commented
return modified ? root.toSource() : null
}
function findAllTypes(
root: Collection<any>,
j: API['jscodeshift'],
typeName: string
) {
const types = {
interfaces: [],
typeAliases: [],
imports: [],
references: [],
}
// Step 1: Find all interface declarations with the specified name
root
.find(j.TSInterfaceDeclaration, {
id: {
type: 'Identifier',
name: typeName,
},
})
.forEach((path) => {
types.interfaces.push(path.node)
})
// Step 2: Find all type alias declarations with the specified name
root
.find(j.TSTypeAliasDeclaration, {
id: {
type: 'Identifier',
name: typeName,
},
})
.forEach((path) => {
types.typeAliases.push(path.node)
})
// Step 3: Find all imported types with the specified name
root
.find(j.ImportSpecifier, {
imported: {
type: 'Identifier',
name: typeName,
},
})
.forEach((path) => {
types.imports.push(path.node)
})
// Step 4: Find all references to the specified type
root
.find(j.TSTypeReference, {
typeName: {
type: 'Identifier',
name: typeName,
},
})
.forEach((path) => {
types.references.push(path.node)
})
return types
}
function commentSpreadProps(
path: ASTPath<FunctionScope>,
propsIdentifierName: string,
j: API['jscodeshift']
): boolean {
let modified = false
const functionBody = findFunctionBody(path)
const functionBodyCollection = j(functionBody)
// Find all the usage of spreading properties of `props`
const jsxSpreadProperties = functionBodyCollection.find(
j.JSXSpreadAttribute,
{ argument: { name: propsIdentifierName } }
)
const objSpreadProperties = functionBodyCollection.find(j.SpreadElement, {
argument: { name: propsIdentifierName },
})
const comment = ` ${NEXT_CODEMOD_ERROR_PREFIX} '${propsIdentifierName}' is used with spread syntax (...). Any asynchronous properties of '${propsIdentifierName}' must be awaited when accessed. `
// Add comment before it
jsxSpreadProperties.forEach((spread) => {
const inserted = insertCommentOnce(spread.value, j, comment)
if (inserted) modified = true
})
objSpreadProperties.forEach((spread) => {
const inserted = insertCommentOnce(spread.value, j, comment)
if (inserted) modified = true
})
return modified
}
|