Coder Social home page Coder Social logo

Route priorities about universal-router HOT 9 CLOSED

kriasoft avatar kriasoft commented on May 8, 2024
Route priorities

from universal-router.

Comments (9)

frenzzy avatar frenzzy commented on May 8, 2024 2

The ordering works the same way as in express. So :id param matches everything and next route will not be called. Playground: https://jsfiddle.net/frenzzy/ko22k9cg/

from universal-router.

frenzzy avatar frenzzy commented on May 8, 2024 2

Yes, because the action method of a route will have to return anything different from undefined to stop iterating and finish routing process.

const anyRoute = {
  path: '/'
  action() {
    if (condition) {
      return undefined // skip this route
    }
    return 'page'
  }
}

Playground: https://jsfiddle.net/frenzzy/ko22k9cg/1/

from universal-router.

koistya avatar koistya commented on May 8, 2024 1
const container = document.getElementById('root');

function render(component) {
  return Promise((resolve, reject) => {
    try {
      ReactDOM.render(component, container, () => resolve(true /* something not falsy */));
    } catch (err) { reject(err); }
  });
}

from universal-router.

frenzzy avatar frenzzy commented on May 8, 2024 1

Router waits until your promise will be finished and if promise returns undefined Router skips current route.

from universal-router.

pokorson avatar pokorson commented on May 8, 2024 1

@koistya that corrects the issue, thanks! Would be good to include this in documentation.

from universal-router.

frenzzy avatar frenzzy commented on May 8, 2024 1

By the way I think it is much better to start render strictly after the navigation process completely finished. This will help to avoid a lot of troubles like this and make the code easier to understand.

const routes = [
  { path: '/one', action() { return <div>One</div> } },
  { path: '/two', action() { return <div>Two</div> } },
  { path: '/*', action() { return <div>Not Found</div> } },
];

UniversalRouter
  .resolve(routes, { path: '/one' })
  .then(component =>
    ReactDOM.render(component, document.getElementById('root'))
  )

Playground:

from universal-router.

pokorson avatar pokorson commented on May 8, 2024

@frenzzy you're right routes are resolved top->bottom, and after further investigation my problem is different. It look like route matching is not stopped after first matched route. so with

const routes = [
  { path: '/welcome', name: 'welcome' },
  { path: '/sign_in', name: 'signIn' },
  { path: '/:id', name: 'idRoute' }
];

and path /welcome it matches both /welcome and /:id

from universal-router.

pokorson avatar pokorson commented on May 8, 2024

I followed example from docs

const routes = [
  { path: '/one', action: ({ render }) => render(<h1>Page One</h1>) },
  { path: '/two', action: ({ render }) => render(<h1>Page Two</h1>) }
];

function render(component) {
  return Promise(resolve => {
    ReactDOM.render(component, document.body, resolve);
  });
}

so all of my actions are returning Promise but still this error appears.

from universal-router.

frenzzy avatar frenzzy commented on May 8, 2024

Closing this as resolved. Please reopen if needed.

from universal-router.

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.