From 97c7739d02532834a3390fb56d62f2cf248cfdb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E7=BA=AF?= Date: Tue, 22 Dec 2020 18:14:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20plugin-access=E7=9A=84=E8=BF=90?= =?UTF-8?q?=E8=A1=8C=E6=97=B6=E9=85=8D=E7=BD=AE=E6=94=B9=E4=B8=BAaccess?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-access/src/index.js | 2 +- packages/fes-plugin-access/src/template/runtime.tpl | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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); }