react-code-dataset / next.js /packages /next /src /build /webpack /loaders /next-flight-action-entry-loader.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { webpack } from 'next/dist/compiled/webpack/webpack'
export type NextFlightActionEntryLoaderOptions = {
actions: string
}
export type FlightActionEntryLoaderActions = [
path: string,
actions: { id: string; exportedName: string }[],
][]
function nextFlightActionEntryLoader(
this: webpack.LoaderContext<NextFlightActionEntryLoaderOptions>
) {
const { actions }: NextFlightActionEntryLoaderOptions = this.getOptions()
const actionList = JSON.parse(actions) as FlightActionEntryLoaderActions
const individualActions = actionList
.map(([path, actionsFromModule]) => {
return actionsFromModule.map(({ id, exportedName }) => {
return [id, path, exportedName] as const
})
})
.flat()
return `
${individualActions
.map(([id, path, exportedName]) => {
// Re-export the same functions from the original module path as action IDs.
return `export { ${exportedName} as "${id}" } from ${JSON.stringify(path)}`
})
.join('\n')}
`
}
export default nextFlightActionEntryLoader