将react-router-dom的链接传递到外部库


10

我正在从我的外部(node_modules)模式库中渲染组件。在主应用程序中,我将Link实例从实例传递react-router-dom到外部库的组件中,如下所示:

import { Link } from 'react-router-dom';
import { Heading } from 'my-external-library';

const articleWithLinkProps = {
    url: `/article/${article.slug}`,
    routerLink: Link,
  };

<Heading withLinkProps={articleWithLinkProps} />

在我的库中,它呈现Link为:

const RouterLink = withLinkProps.routerLink;

<RouterLink
  to={withLinkProps.url}
>
  {props.children}
</RouterLink>

RouterLink似乎正确渲染,甚至在单击时浏览到的URL。


我的问题是,RouterLink似乎已与我的App react-router-dom实例分离。当我单击时Heading,它会“艰难”地导航,回发页面,而不是像Link往常那样无缝地路由到那里。

我不确定目前要尝试什么以使其无缝导航。任何帮助或建议,将不胜感激,在此先感谢您。

编辑:显示我的路由器的设置方式。

import React from 'react';
import { hydrate, unmountComponentAtNode } from 'react-dom';
import { AppContainer } from 'react-hot-loader';
import { Provider } from 'react-redux';
import { createBrowserHistory } from 'history';
import { ConnectedRouter } from 'react-router-redux';
import RedBox from 'redbox-react';
import { Route } from 'react-router-dom';
import { Frontload } from 'react-frontload';
import App from './containers/App';

import configureStore from './redux/store';
import withTracker from './withTracker';

// Get initial state from server-side rendering
const initialState = window.__INITIAL_STATE__;
const history = createBrowserHistory();
const store = configureStore(history, initialState);
const mountNode = document.getElementById('react-view');
const noServerRender = window.__noServerRender__;

if (process.env.NODE_ENV !== 'production') {
  console.log(`[react-frontload] server rendering configured ${noServerRender ? 'off' : 'on'}`);
}

const renderApp = () =>
  hydrate(
    <AppContainer errorReporter={({ error }) => <RedBox error={error} />}>
      <Provider store={store}>
        <Frontload noServerRender={window.__noServerRender__}>
          <ConnectedRouter onUpdate={() => window.scrollTo(0, 0)} history={history}>
            <Route
              component={withTracker(() => (
                <App noServerRender={noServerRender} />
              ))}
            />
          </ConnectedRouter>
        </Frontload>
      </Provider>
    </AppContainer>,
    mountNode,
  );

// Enable hot reload by react-hot-loader
if (module.hot) {
  const reRenderApp = () => {
    try {
      renderApp();
    } catch (error) {
      hydrate(<RedBox error={error} />, mountNode);
    }
  };

  module.hot.accept('./containers/App', () => {
    setImmediate(() => {
      // Preventing the hot reloading error from react-router
      unmountComponentAtNode(mountNode);
      reRenderApp();
    });
  });
}

renderApp();

为什么不将您的<Link>组件作为参数或道具传递给外部lib?这样可以提供更大的灵活性,以及​​其处理导航的简洁方法。
Ma'moun othman

您能说明如何设置路由器吗?是浏览器,内存还是静态路由器?
zero298,

@ zero298-更新的问题
danjones_mcr

@mamounothman-这是当前的工作方式,但似乎会影响它导航到回发的方式。
danjones_mcr

您正在使用不建议使用的库react-router-reduxgithub.com/reactjs/react-router-redux),除非您有特殊的约束要强制使用react-reduxreact-router库的过时版本,否则应考虑迁移到新版本,因为它可能会解决您的问题)。要么你做了升级,还是应该提供的确切版本reactreact-router-reduxreact-reduxreact-router-dom你的项目目前正在使用,所以我们有机会找到一个补丁解决方案。
GonArrivi

Answers:


2

我已经重新构造了您的用例,codesandbox.io“过渡”效果很好。因此,检查我的实施可能会对您有所帮助。但是,我用文件导入替换了库导入,所以我不知道这是否是为什么不重新加载整个页面就无法运行的决定性因素。

顺便说一句,“无缝”到底是什么意思?单击页面上的链接后,元素是否停留在每个页面上?就像我在沙箱中实现它一样,沙盘中的静态图片位于每个页面的顶部。


检查沙盒

这是example.js文件

// This sandbox is realted to this post https://stackoverflow.com/q/59630138/965548

import React from "react";
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
import { Heading } from "./my-external-library.js";

export default function App() {
  return (
    <div>
      <img
        alt="flower from shutterstock"
        src="https://image.shutterstock.com/image-photo/pink-flowers-blossom-on-blue-600w-1439541782.jpg"
      />
      <Router>
        <Route exact={true} path="/" render={Welcome} />
        <Route path="/article/coolArticle" component={CoolArticleComponent} />
      </Router>
    </div>
  );
}

const Welcome = () => {
  const articleWithLinkProps = {
    url: `/article/coolArticle`,
    routerLink: Link
  };

  return (
    <div>
      <h1>This is a super fancy homepage ;)</h1>
      <Heading withLinkProps={articleWithLinkProps} />
    </div>
  );
};

const CoolArticleComponent = () => (
  <div>
    <p>This is a handcrafted article component.</p>
    <Link to="/">Back</Link>
  </div>
);

这是my-external-library.js文件:

import React from "react";

export const Heading = ({ withLinkProps }) => {
  const RouterLink = withLinkProps.routerLink;
  return <RouterLink to={withLinkProps.url}>Superlink</RouterLink>;
};

您好,非常感谢您的回答!似乎仅当通过node_modules传递时,才会发生此问题。
danjones_mcr
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.