rsnext/packages/next-codemod/transforms/next-og-import.ts
Jiachi Liu 194e94ed6e
codemod: migrate ImageResponse imports (#57074)
Adding codemod for #56662 for easier migration of `ImageResponse` from `"next/server"` to `"next/og"`
2023-10-19 20:02:25 +00:00

51 lines
1.6 KiB
TypeScript

import type { API, FileInfo } from 'jscodeshift'
const importToChange = 'ImageResponse'
export default function transformer(file: FileInfo, api: API) {
const j = api.jscodeshift
// Find import declarations that match the pattern
file.source = j(file.source)
.find(j.ImportDeclaration, {
source: {
value: 'next/server',
},
})
.forEach((path) => {
const importSpecifiers = path.node.specifiers
const importNamesToChange = importSpecifiers.filter(
(specifier) => specifier.local.name === importToChange
)
const importsNamesRemained = importSpecifiers.filter(
(specifier) => specifier.local.name !== importToChange
)
// If the import includes the specified import name, create a new import for it from 'next/og'
if (importNamesToChange.length > 0) {
// Replace the original import with the remaining specifiers
// path.node.specifiers = remainingSpecifiers
const newImportStatement = j.importDeclaration(
importNamesToChange,
j.stringLiteral('next/og')
)
path.insertBefore(newImportStatement)
}
if (importsNamesRemained.length > 0) {
const remainingSpecifiers = importSpecifiers.filter(
(specifier) => specifier.local.name !== importToChange
)
const nextServerRemainImportsStatement = j.importDeclaration(
remainingSpecifiers,
j.stringLiteral('next/server')
)
path.insertBefore(nextServerRemainImportsStatement)
}
j(path).remove()
})
.toSource()
return file.source
}