GithubHelp home page GithubHelp logo

react-router problem about react-pages HOT 7 CLOSED

lamyat2005 avatar lamyat2005 commented on July 23, 2024
react-router problem

from react-pages.

Comments (7)

catamphetamine avatar catamphetamine commented on July 23, 2024

The older versions didn't allow <Router/> too.
Perhaps some ancient ones did, but that would be more than a year before now.
No need to specify any <Router/> element, just pass the root <Route/> to it.
If any questions arise post them in this thread.
I'm closing it for now.

from react-pages.

lamyat2005 avatar lamyat2005 commented on July 23, 2024

Just wondering will my login Component RequiredRole using this.context.router.replace(nextPath) work?

I have a login component RequiredRole added to my <Route> like this

import RequireRole from './RequireRole/RequireRole';
import {ROLE_USER, ROLE_PUBLIC} from '../constants/RecordAttrs';

<Route
      component={RequireRole}`
      requiredRole={[ROLE_PUBLIC, ROLE_USER]}
      <Route path="/" component={LandingPage} />
</Route>

and in my RequiredRole component is like this

function pathForUserNotPermitted(currentRole, requiredRoles, redirectMap) {
  const notPermitted = requiredRoles.indexOf(currentRole) === -1;
  return notPermitted ? redirectMap[currentRole] : undefined;
}

class RequireRole extends Component {
  static propTypes = {
    'route': PropTypes.object.isRequired,
    'children': PropTypes.any,
    'location': PropTypes.object.isRequired,
    'dispatch': PropTypes.func.isRequired,
    'auth': PropTypes.object,
    'routing': PropTypes.object.isRequired,
  };

  static contextTypes = {
    'router': PropTypes.object.isRequired,
  };

  componentWillMount() {
    // For first time getting to component, componentWillMount will be triggered.
    const nextPath = pathForUserNotPermitted(
      this.props.auth.role,
      this.props.route.requiredRole,
      this.props.route.redirectMap
    );

    // permission checking
    if (nextPath) {
      this.context.router.replace(nextPath);
    }
  }
...

Thanks.

from react-pages.

catamphetamine avatar catamphetamine commented on July 23, 2024

Format the source code appropriately

from react-pages.

lamyat2005 avatar lamyat2005 commented on July 23, 2024

Just formatted, thanks.

from react-pages.

catamphetamine avatar catamphetamine commented on July 23, 2024

It should work.
Try it.
It would be much quicker if you just tested if it works instead of creating an issue and waiting for a reply.
I didn't test such scenarios but router should be present in context.

from react-pages.

catamphetamine avatar catamphetamine commented on July 23, 2024

If you're interested which Authentication and Authorization scheme I'm using here's a description:
https://github.com/catamphetamine/react-website#http-authentication
('Authentication and authorization using access tokens" expandable section)

There are some technical details which are rather complex but for now it's how it works where I work.

from react-pages.

lamyat2005 avatar lamyat2005 commented on July 23, 2024

Thanks for suggestions, I'll have a look.

from react-pages.

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.