Giter Club home page Giter Club logo

Comments (7)

lluistfc avatar lluistfc commented on May 25, 2024 5

If you are using react-router v4 you can use the high order component withRouter as an alternative to enhance your component and have access to match params

from connected-react-router.

rickerd avatar rickerd commented on May 25, 2024 1

It works! I've wrapped the most upper component with "withRouter()".
Thanks a lot for all the help and thoughts.

from connected-react-router.

sergeysova avatar sergeysova commented on May 25, 2024

@supasate

from connected-react-router.

rickerd avatar rickerd commented on May 25, 2024

@lluistfc thanks alot!
I've tried to make it work but i keep failing. I use some other things that maybe breaks the setup.

import {applyMiddleware, compose, createStore} from "redux";
import {connectRouter, routerMiddleware} from "connected-react-router";
import thunk from "redux-thunk";
import rootReducer from "./reducers";
import {createBrowserHistory} from "history";

export const history = createBrowserHistory();

export const store = createStore(
    connectRouter(history)(rootReducer),
    compose(
        applyMiddleware(
            thunk,
            routerMiddleware(history)
        )
    )
);

Can you help? I use react-redux, redux-thunk and connected-router.

from connected-react-router.

lluistfc avatar lluistfc commented on May 25, 2024

The only difference i see between yours an my code is that you use routerMiddleware from connected-react-router and i'm using it from react-router-redux (v4.0.7).

I was taking a look at both middlewares from connected-react-router and react-router redux and the only difference is the store parameter in:
https://github.com/supasate/connected-react-router/blob/master/src/middleware.js#L8
Can you give it a try and see if that works for you?

from connected-react-router.

rickerd avatar rickerd commented on May 25, 2024

React-router-redux is using the unsafe methods that are in >=16.3 given as a warning.
Everything works except for navigating and accessing the match match object.

from connected-react-router.

lluistfc avatar lluistfc commented on May 25, 2024

Could I see some example? Right now i'm very busy and if I have time I could take a look at it maybe tonight or wednesday, but the idea is doing something like:
withRouter(connect(mapStateToProps)(Component)) and you can access location, match and history from your component props.
I haven't tried without a connected component. If this is your case I don't know if it will work but in the documentation there is an example with and without a connected component.

from connected-react-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.