diff --git a/packages/fes-plugin-access/src/index.js b/packages/fes-plugin-access/src/index.js index cf23763c..c7f8f77e 100644 --- a/packages/fes-plugin-access/src/index.js +++ b/packages/fes-plugin-access/src/index.js @@ -53,7 +53,7 @@ export default (api) => { } ]); - api.addRuntimePluginKey(() => 'noAccessHandler'); + api.addRuntimePluginKey(() => 'access'); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`); }; diff --git a/packages/fes-plugin-access/src/template/runtime.tpl b/packages/fes-plugin-access/src/template/runtime.tpl index cdb1f0d8..d99fa95a 100644 --- a/packages/fes-plugin-access/src/template/runtime.tpl +++ b/packages/fes-plugin-access/src/template/runtime.tpl @@ -13,13 +13,13 @@ export function onRouterCreated({ router }) { if (canRoute) { next(); } else { - const noAccessHandler = plugin.applyPlugins({ - key: "noAccessHandler", + const runtimeConfig = plugin.applyPlugins({ + key: "access", type: ApplyPluginsType.modify, initialValue: null, }); - if (noAccessHandler && typeof noAccessHandler === "function") { - noAccessHandler(router, to, from); + if (runtimeConfig.noAccessHandler && typeof runtimeConfig.noAccessHandler === "function") { + runtimeConfig.noAccessHandler(router, to, from); } next(false); }