如何只有布局的一部分具有多个提供程序或状态

时间:2019-08-04 17:07:37

标签: javascript reactjs react-redux react-router react-modal

我遵循了React-Router Modal教程,具有一些看起来像2个DOM(一个用于当前位置的模态,一个用于先前位置的默认DOM)。

问题:我需要能够将所有组件传递到模态中一个新的道具isModal=true,但我不想将其传递给每个孩子和子孩子组件。

我的解决方案?:使用React-Redux仅针对Modal的页面传递isModal道具。 (更新:看起来Redux不可能,我有其他解决方案)

我从Redux-Provider知道我只能拥有一家商店,但是我可以处理多个Provider并为不同组件存储子项吗?

index.js

ReactDOM.render(
  <Provider store={store}>
    <BrowserRouter>
      <App />
    </BrowserRouter>
  </Provider>,
  document.getElementById('root')
);

App.js

render() {
  return [
    <Layout key="document-layout" {...this.props}>
      <Page {...{ ...this.props, location: isModal ? previousLocation : location}} />
    </Layout>,
    isModal
    ? <ModalLayout key="modal-layout">
        <Provider store={{...store, isModal:true}}>
          <Page {...this.props} />
        </Provider>
      </ModalLayout>
    : null
  ];
}

但是在Modal的页面上,状态为mapStateToProps。isModal从未定义过:/

1 个答案:

答案 0 :(得分:0)

所以,如果您想使用某种全局类型状态,那么我将在最新的反应中使用新的Context,像这样...

...
React.useContext(SomeContext)
...

了解更多here,以及如何使用它并根据需要实现redux风格的应用。

这是一本不错的书,但请停止.... !!!!!!!!

我也不会用它来做您想要的。 确实,您的网址是(应该)是全局状态,并且应该包含有时需要显示的所有内容,这意味着重构您的网址和页面的结构。 在此示例中,他们通过状态var传递了模型true,我尝试避免通过url链接调用传递状态,因为如果用户然后刷新该url上的页面,则状态会丢失,并且在此示例中这样做时会出现明显的错误。所以这就是我将URL用作国王的方法。

import React, { Component } from "react";
import { BrowserRouter as Router, Switch, Route, Link } from "react-router-dom";

class ModalSwitch extends Component {

  render() {
    return (
      <div>
        <Switch>
          <Route exact path="/" component={Home} />
          <Route path="/gallery/:type?/:id?" component={Gallery} />
          <Route path="/featured/img/:id" component={ImageView} />
        </Switch>
        <Route path="/gallery/img/:id" component={Modal} />
      </div>
    );
  }
}

const IMAGES = [
  { id: 0, title: "Dark Orchid", color: "DarkOrchid" },
  { id: 1, title: "Lime Green", color: "LimeGreen" },
  { id: 2, title: "Tomato", color: "Tomato" },
  { id: 3, title: "Seven Ate Nine", color: "#789" },
  { id: 4, title: "Crimson", color: "Crimson" }
];

function Thumbnail({ color }) {
  return (
    <div
      style={{
        width: 50,
        height: 50,
        background: color
      }}
    />
  );
}

function Image({ color }) {
  return (
    <div
      style={{
        width: "100%",
        height: 400,
        background: color
      }}
    />
  );
}

function Home() {
  return (
    <div>
      <Link to="/gallery">Visit the Gallery</Link>
      <h2>Featured Images</h2>
      <ul>
        <li>
          <Link to="/featured/img/2">Tomato</Link>
        </li>
        <li>
          <Link to="/featured/img/4">Crimson</Link>
        </li>
      </ul>
    </div>
  );
}

function Gallery() {
  return (
    <div>
      {IMAGES.map(i => (
        <Link
          key={i.id}
          to={{
            pathname: `/gallery/img/${i.id}`
          }}
        >
          <Thumbnail color={i.color} />
          <p>{i.title}</p>
        </Link>
      ))}
    </div>
  );
}

function ImageView({ match }) {
  let image = IMAGES[parseInt(match.params.id, 10)];

  if (!image) return <div>Image not found</div>;

  return (
    <div>
      <h1>{image.title}</h1>
      <Image color={image.color} />
    </div>
  );
}

function Modal({ match, history }) {
  let image = IMAGES[parseInt(match.params.id, 10)];

  if (!image) return null;

  let back = e => {
    e.stopPropagation();
    history.goBack();
  };

  return (
    <div
      onClick={back}
      style={{
        position: "absolute",
        top: 0,
        left: 0,
        bottom: 0,
        right: 0,
        background: "rgba(0, 0, 0, 0.15)"
      }}
    >
      <div
        className="modal"
        style={{
          position: "absolute",
          background: "#fff",
          top: 25,
          left: "10%",
          right: "10%",
          padding: 15,
          border: "2px solid #444"
        }}
      >
        <h1>{image.title}</h1>
        <Image color={image.color} />
        <button type="button" onClick={back}>
          Close
        </button>
      </div>
    </div>
  );
}

function ModalGallery() {
  return (
    <Router>
      <Route component={ModalSwitch} />
    </Router>
  );
}

export default ModalGallery;

这是简单得多的方法。这里的关键是在Route路径中使用变量。

当我们访问/gallery时,我们满足了Gallery路径,因为我们已经说过:type和:id对于此视图是可选的。

因此,当我们添加/gallery/img/0时,我们说这是一个模型,因为我们希望将其放置在图库上,因此我们同时展示了Gallery和Modal组件。

但是当我们转到/featured/img/0时,它将仅满足ImageView

<Switch>
   <Route exact path="/" component={Home} />
   <Route path="/gallery/:type?/:id?" component={Gallery} />
   <Route path="/featured/img/:id" component={ImageView} />
</Switch>
<Route path="/gallery/img/:id" component={Modal} />