Aurelia - 等待承诺返回路由器预渲染步骤

时间:2016-12-05 17:48:21

标签: javascript promise aurelia es6-promise aurelia-router

TL; DR - 如何延迟执行ProcessResult()中的aurelia-router.js函数,因为我还在等待代码中的promise的结果?它导致正确的模块渲染,错误的地址/ href。

示例:如果你在基础模块上,然后点击管理员,管理模块将加载,但href仍然是www.mycompany.com/#/base-module而不是www.mycompany.com/#/admin,这个错误可以在控制台中看到:

  

错误[app-router]错误:预期路由器管道返回导航结果,但得到了[{}]

更长的版本:

我在路由器中有一个预呈现步骤,用于检查在呈现视图之前是否为特定模块启用了用户。

在我的PreRenderStep类中,我有一个run函数,它调用一个mediator来获取用户的权限,然后检查用户点击的模块是否在启用的模块列表中。对调解员的呼吁涉及一种承诺。

问题是prerender步骤中的run promise在run方法中的promise完成之前解析。因此,最终会呈现视图(因为用户已启用),但之前的href仍保留在地址栏中。

路由器:

 configureRouter(config, router) {
        config.title = "Tramonex";
        config.addPipelineStep('authorize', AuthorizeStep);
        config.addPreRenderStep(PreRenderStep);
        config.map([
            {
                route: ['', 'log-in-out'],
                name: 'home',
                moduleId: 'modules/authentication/log-in-out'
            },
            {
                route: 'passwordReset',
                moduleId: 'modules/authentication/password-reset',
            },
            {route: 'app', moduleId: 'app', auth: true},
            {
                route: 'base-module',
                name: 'base-module',
                moduleId: 'modules/base-module',
                href: 'base-module',
                nav: true,
                auth: true
            },
            {
                route: 'test1',
                name: 'test1',
                moduleId: 'modules/test1/test1',
                href: 'test1',
                nav: true,
                auth: true,
                settings: {moduleAuthRequired: true}

            },
            {
                route: 'test2',
                name: 'test2',
                moduleId: 'modules/test2/test2',
                href: 'test2',
                nav: true,
                auth: true,
                settings: {moduleAuthRequired: true}
            },
            {
                route: 'admin',
                name: 'admin',
                moduleId: 'modules/admin/admin',
                href: 'admin',
                nav: true,
                auth: true,
                settings: {moduleAuthRequired: true}
            },
        ]);

        this.router = router;
    }
}

PreRenderStep:

@inject(Mediator, AuthenticationService)
class PreRenderStep {

    constructor(mediator, authenticationService) {
        this.mediator = mediator;
        this.authenticationService = authenticationService;
    }

    run(navigationInstruction, next) {
       
        if (navigationInstruction.getAllInstructions().some(i => i.config.settings.moduleAuthRequired)) {

            this.redirect = false;
            this.mediator.getPermissionsForUser()
                .then(user => {
                    userPerms = user.modules;
                    var isEnabled = userPerms.includes(navigationInstruction.config.name);
                    if (!isEnabled) {
                        this.redirect = true;
                    }
                })
                .then(() => {
                    return this.redirect next.cancel(navigationInstruction.router.navigateToRoute('base-module')) : next();
                });
        }
        else {
            return next();
        }
    }
}

当用户点击需要验证的模块时,代码被命中,当我们等待来自mediator.getPermissionsForUser()的promise返回时,aurelia-router.js中的此代码被命中(带星星的线条:

function processResult(instruction, result, instructionCount, router) {
  if (!(result && 'completed' in result && 'output' in result)) {
    result = result || {};
    **result.output = new Error('Expected router pipeline to return a navigation result, but got [' + JSON.stringify(result) + '] instead.');**
  }

  var finalResult = null;
  if (isNavigationCommand(result.output)) {
    result.output.navigate(router);
  } else {
    finalResult = result;

    if (!result.completed) {
      if (result.output instanceof Error) {
        logger.error(result.output);
      }

      **restorePreviousLocation(router);**
    }
  }

1 个答案:

答案 0 :(得分:2)

您需要返回您在运行功能中创建的承诺。

return this.mediator.getPermissionsForUser()