Fix Server Actions defined in both layers in one entry (#49248)

This fixes an existing bug where there're Server Actions defined in both the "server" and "client" layers (client imported Actions). They have the same worker name as they exist in one route entry, but they're built into different modules and compiled differently (server and client layers). Because of that, each route entry can have 2 "action module entries".

This PR adds the logic to differentiate that via a "layer" field so they don't conflict.
This commit is contained in:
Shu Ding 2023-05-04 23:25:21 +02:00 committed by GitHub
parent 7fa4946b42
commit bf49f62cda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 98 additions and 27 deletions

View file

@ -48,6 +48,10 @@ export type ActionManifest = {
workers: { workers: {
[name: string]: string | number [name: string]: string | number
} }
// Record which layer the action is in (sc_server or sc_action), in the specific entry.
layer: {
[name: string]: string
}
} }
} }
} }
@ -56,8 +60,21 @@ const pluginState = getProxiedPluginState({
// A map to track "action" -> "list of bundles". // A map to track "action" -> "list of bundles".
serverActions: {} as ActionManifest['node'], serverActions: {} as ActionManifest['node'],
edgeServerActions: {} as ActionManifest['edge'], edgeServerActions: {} as ActionManifest['edge'],
actionModServerId: {} as Record<string, string | number>,
actionModEdgeServerId: {} as Record<string, string | number>, actionModServerId: {} as Record<
string,
{
server?: string | number
client?: string | number
}
>,
actionModEdgeServerId: {} as Record<
string,
{
server?: string | number
client?: string | number
}
>,
// Manifest of CSS entry files for server/edge server. // Manifest of CSS entry files for server/edge server.
serverCSSManifest: {} as ClientCSSReferenceManifest, serverCSSManifest: {} as ClientCSSReferenceManifest,
@ -170,6 +187,7 @@ export class ClientReferenceEntryPlugin {
const addActionEntryList: Array<ReturnType<typeof this.injectActionEntry>> = const addActionEntryList: Array<ReturnType<typeof this.injectActionEntry>> =
[] []
const actionMapsPerEntry: Record<string, Map<string, string[]>> = {}
// For each SC server compilation entry, we need to create its corresponding // For each SC server compilation entry, we need to create its corresponding
// client component entry. // client component entry.
@ -247,19 +265,31 @@ export class ClientReferenceEntryPlugin {
) )
) )
} else { } else {
addActionEntryList.push( if (!actionMapsPerEntry[name]) {
this.injectActionEntry({ actionMapsPerEntry[name] = new Map()
compiler, }
compilation, actionMapsPerEntry[name] = new Map([
actions: actionEntryImports, ...actionMapsPerEntry[name],
entryName: name, ...actionEntryImports,
bundlePath: name, ])
})
)
} }
} }
}) })
for (const [name, actionEntryImports] of Object.entries(
actionMapsPerEntry
)) {
addActionEntryList.push(
this.injectActionEntry({
compiler,
compilation,
actions: actionEntryImports,
entryName: name,
bundlePath: name,
})
)
}
// To collect all CSS imports and action imports for a specific entry // To collect all CSS imports and action imports for a specific entry
// including the ones that are in the client graph, we need to store a // including the ones that are in the client graph, we need to store a
// map for client boundary dependencies. // map for client boundary dependencies.
@ -293,6 +323,7 @@ export class ClientReferenceEntryPlugin {
// client layer. // client layer.
compilation.hooks.finishModules.tapPromise(PLUGIN_NAME, () => { compilation.hooks.finishModules.tapPromise(PLUGIN_NAME, () => {
const addedClientActionEntryList: Promise<any>[] = [] const addedClientActionEntryList: Promise<any>[] = []
const actionMapsPerClientEntry: Record<string, Map<string, string[]>> = {}
forEachEntryModule(compilation, ({ name, entryModule }) => { forEachEntryModule(compilation, ({ name, entryModule }) => {
const actionEntryImports = new Map<string, string[]>() const actionEntryImports = new Map<string, string[]>()
@ -324,18 +355,31 @@ export class ClientReferenceEntryPlugin {
} }
if (actionEntryImports.size > 0) { if (actionEntryImports.size > 0) {
addedClientActionEntryList.push( if (!actionMapsPerClientEntry[name]) {
this.injectActionEntry({ actionMapsPerClientEntry[name] = new Map()
compiler, }
compilation, actionMapsPerClientEntry[name] = new Map([
actions: actionEntryImports, ...actionMapsPerClientEntry[name],
entryName: name, ...actionEntryImports,
bundlePath: name, ])
fromClient: true,
})
)
} }
}) })
for (const [name, actionEntryImports] of Object.entries(
actionMapsPerClientEntry
)) {
addedClientActionEntryList.push(
this.injectActionEntry({
compiler,
compilation,
actions: actionEntryImports,
entryName: name,
bundlePath: name,
fromClient: true,
})
)
}
return Promise.all(addedClientActionEntryList) return Promise.all(addedClientActionEntryList)
}) })
@ -719,6 +763,7 @@ export class ClientReferenceEntryPlugin {
const actionsArray = Array.from(actions.entries()) const actionsArray = Array.from(actions.entries())
const actionLoader = `next-flight-action-entry-loader?${stringify({ const actionLoader = `next-flight-action-entry-loader?${stringify({
actions: JSON.stringify(actionsArray), actions: JSON.stringify(actionsArray),
__client_imported__: fromClient,
})}!` })}!`
const currentCompilerServerActions = this.isEdgeServer const currentCompilerServerActions = this.isEdgeServer
@ -730,9 +775,13 @@ export class ClientReferenceEntryPlugin {
if (typeof currentCompilerServerActions[id] === 'undefined') { if (typeof currentCompilerServerActions[id] === 'undefined') {
currentCompilerServerActions[id] = { currentCompilerServerActions[id] = {
workers: {}, workers: {},
layer: {},
} }
} }
currentCompilerServerActions[id].workers[bundlePath] = '' currentCompilerServerActions[id].workers[bundlePath] = ''
currentCompilerServerActions[id].layer[bundlePath] = fromClient
? WEBPACK_LAYERS.action
: WEBPACK_LAYERS.server
} }
} }
@ -793,11 +842,16 @@ export class ClientReferenceEntryPlugin {
mod.request && mod.request &&
/next-flight-action-entry-loader/.test(mod.request) /next-flight-action-entry-loader/.test(mod.request)
) { ) {
if (this.isEdgeServer) { const fromClient = /&__client_imported__=true/.test(mod.request)
pluginState.actionModEdgeServerId[chunkGroup.name] = modId
} else { const mapping = this.isEdgeServer
pluginState.actionModServerId[chunkGroup.name] = modId ? pluginState.actionModEdgeServerId
: pluginState.actionModServerId
if (!mapping[chunkGroup.name]) {
mapping[chunkGroup.name] = {}
} }
mapping[chunkGroup.name][fromClient ? 'client' : 'server'] = modId
} }
}) })
@ -805,7 +859,11 @@ export class ClientReferenceEntryPlugin {
for (let id in pluginState.serverActions) { for (let id in pluginState.serverActions) {
const action = pluginState.serverActions[id] const action = pluginState.serverActions[id]
for (let name in action.workers) { for (let name in action.workers) {
action.workers[name] = pluginState.actionModServerId[name] const modId =
pluginState.actionModServerId[name][
action.layer[name] === WEBPACK_LAYERS.action ? 'client' : 'server'
]
action.workers[name] = modId!
} }
serverActions[id] = action serverActions[id] = action
} }
@ -814,7 +872,11 @@ export class ClientReferenceEntryPlugin {
for (let id in pluginState.edgeServerActions) { for (let id in pluginState.edgeServerActions) {
const action = pluginState.edgeServerActions[id] const action = pluginState.edgeServerActions[id]
for (let name in action.workers) { for (let name in action.workers) {
action.workers[name] = pluginState.actionModEdgeServerId[name] const modId =
pluginState.actionModEdgeServerId[name][
action.layer[name] === WEBPACK_LAYERS.action ? 'client' : 'server'
]
action.workers[name] = modId!
} }
edgeServerActions[id] = action edgeServerActions[id] = action
} }

View file

@ -0,0 +1,9 @@
async function noopAction() {
'use server'
}
console.log(noopAction())
export default function Layout({ children }) {
return children
}