MCPcopy Index your code
hub / github.com/danielr18/connected-next-router

github.com/danielr18/connected-next-router @5.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 5.0.0 ↗ · + Follow
60 symbols 192 edges 47 files 0 documented · 0% updated 15mo ago5.0.0 · 2023-11-04★ 1107 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Coverage Status

v5.0.0 requires Next.js 10 or newer, React Redux 7.1.0 or newer, and React 16.8.0 or newer. If you are using Next.js 9, check out v3 branch. If you are using Next.js 7-8, check out v0 branch.

Connected Next Router

A Redux binding for Next.js Router compatible with Next.js.

Main features

:sparkles: Keep Router state in sync with your Redux store.

:tada: Dispatch Router methods (push, replace, go, goBack, goForward, prefetch) using Redux actions.

:clock9: Support time traveling in Redux DevTools.

:gem: Ease migration to next.js framework from codebases using connected-react-router or react-router-redux (see migration guide).

Installation

Using npm:

$ npm install --save connected-next-router

Or yarn:

$ yarn add connected-next-router

Usage

Step 1

  • Add routerReducer to your root reducer.
  • Use createRouterMiddleware if you want to dispatch Router actions (ex. to change URL with push('/home')).
  • Use initialRouterState(url) to populate router state in the server side.
// store/configure-store.js
import { createStore, applyMiddleware, combineReducers } from 'redux'
import { createRouterMiddleware, initialRouterState, routerReducer } from 'connected-next-router'
import { HYDRATE, createWrapper } from 'next-redux-wrapper'
import Router from 'next/router'

const rootReducer = combineReducers({
  // Add other reducers
  router: routerReducer
});

const routerMiddleware = createRouterMiddleware();

// Using next-redux-wrapper's initStore
const reducer = (state, action) => {
  if (action.type === HYDRATE) {
    const nextState = {
      ...state, // use previous state
      ...action.payload, // apply delta from hydration
    }
    if (typeof window !== 'undefined' && state?.router) {
      // preserve router value on client side navigation
      nextState.router = state.router
    }
    return nextState
  } else {
    return rootReducer(state, action)
  }
}

export const initStore = (context) => {
  const routerMiddleware = createRouterMiddleware()
  const { asPath } = context.ctx || Router.router || {}
  let initialState
  if (asPath) {
    initialState = {
      router: initialRouterState(asPath)
    }
  }
  return createStore(reducer, initialState, applyMiddleware(routerMiddleware))
}

export const wrapper = createWrapper(initStore)

Step 2

  • Place ConnectedRouter as children of react-redux's Provider.
// pages/_app.js
import App from 'next/app'
import { ConnectedRouter } from 'connected-next-router'
import { wrapper } from '../store/configure-store'

class ExampleApp extends App {
  render() {
    const { Component, pageProps } = this.props
    return (
      <ConnectedRouter>
        <Component {...pageProps} />
      </ConnectedRouter>
    )
  }
}

// wrapper.withRedux wraps the App with react-redux's Provider
export default wrapper.withRedux(ExampleApp)

Examples

Acknowledgements

Acknowledge

License

MIT License

Extension points exported contracts — how you extend this code

State (Interface)
(no doc)
examples/typescript/typings.d.ts
State (Interface)
(no doc)
e2e/typings.d.ts

Core symbols most depended-on inside this repo

push
called by 12
src/actions.ts
locationFromUrl
called by 10
src/utils/locationFromUrl.ts
onLocationChanged
called by 7
src/actions.ts
createRouterMiddleware
called by 5
src/middleware.ts
replace
called by 4
src/actions.ts
prefetch
called by 3
src/actions.ts
goBack
called by 3
src/actions.ts
goForward
called by 3
src/actions.ts

Shape

Function 52
Class 4
Interface 2
Method 2

Languages

TypeScript100%

Modules by API surface

src/actions.ts7 symbols
src/ConnectedRouter.ts7 symbols
examples/typescript/store/configure-store.ts3 symbols
examples/typescript/pages/_app.tsx3 symbols
examples/basic/store/configure-store.js3 symbols
examples/basic/pages/_app.js3 symbols
e2e/store/configure-store.ts3 symbols
e2e/pages/ssg.tsx2 symbols
e2e/pages/index.tsx2 symbols
src/utils/rewriteUrlForExport.ts1 symbols
src/utils/locationFromUrl.ts1 symbols
src/utils/createInitialRouterState.ts1 symbols

For agents

$ claude mcp add connected-next-router \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page