Git Product home page Git Product logo

Comments (6)

gpbl avatar gpbl commented on June 24, 2024

Hi, thanks for reporting!
The case you are referring to should never happen. Could you reproduce it?

Server-side, there's no NAVIGATE_START to be handled since the app has not been rendered yet: as both the promises have been fulfilled (i.e. the navigateAction did finish as well), the route will be rendered always when NAVIGATE_SUCCESS has been dispatched:

Promise.all([
      context.executeAction(loadIntlMessages, { locale: req.locale }), // lets ignore this 
      context.executeAction(navigateAction, { url: req.url })
    ]).then(() => renderApp(req, res, context, next))
      .catch(() => renderApp(req, res, context, next));

When executing navigateAction:

  1. NAVIGATE_START is dispatched
  2. (optionally, route actions will be called)
  3. NAVIGATE_SUCCESS is dispatched
  4. Render the app to static markup (in renderApp)
  5. If an error occurs while rendering, then pass it to the next middleware

The trick here is that renderApp does catch a rendering error thanks to a try/catch clause.

The catch function is there because if actions would return an error, we still want to render the app.

What do you think?

from isomorphic500.

robink avatar robink commented on June 24, 2024

Well... If meta.loadingTitle translation is missing, then you can reproduce it.
https://github.com/gpbl/isomorphic500/blob/master/src/stores/HtmlHeadStore.js#L70

I guess this one is the only one that should not be missing....

from isomorphic500.

gpbl avatar gpbl commented on June 24, 2024

Oh yes I see it now. The case of the HtmlHeadStore is weird. Not sure how to deal with it. Let me think :)

from isomorphic500.

gpbl avatar gpbl commented on June 24, 2024

So since the errors fired from route actions should always have a status code, we could write this:

Promise.all([
      context.executeAction(loadIntlMessages, { locale: req.locale }),
      context.executeAction(navigateAction, { url: req.url })
    ]).then(() => renderApp(req, res, context, next))
      .catch((err) => {
        if (!err.statusCode || !err.status) {
          next(err);
        }
        else {
          renderApp(req, res, context, next);
        }
      });

from isomorphic500.

robink avatar robink commented on June 24, 2024

It seems perfectly handled this way :) nice!

from isomorphic500.

gpbl avatar gpbl commented on June 24, 2024

🎉

from isomorphic500.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.