我的网站包含以下react-router
和react-router-relay
设置:
<Router history={browserHistory} render={applyRouterMiddleware(useRelay)}>
<Route path="/:classroom_id" component={mainView} queries={ClassroomQueries}>
<IndexRoute component={Start} queries={ClassroomQueries} />
<Route path="tasks" component={TaskRoot} queries={ClassroomQueries}>
<IndexRoute component={TaskList} queries={ClassroomQueries} />
<Route path="task/:task_id" component={TaskView} queries={ClassroomTaskQueries} />
<Route path="task/:task_id/edit" component={TaskEdit} queries={ClassroomTaskQueries} />
</Route>
</Route>
</Router>
该网站是一个虚拟教室,教师可以在其中为学生创建任务。这些任务也可以编辑。
当用户在TaskEdit
中编辑任务并点击保存时,会应用更改并将用户重定向到TaskList
。现在我想给用户一个&#34; 您的更改已保存!&#34;编辑任务后发出消息。
我已为此目的创建了bootstrap alert组件(<Alert>
)。
为了便于说明,假设我有以下mainView
组件(请查看上面的路由器):
render() {
<div>
<Menu />
<Row>
<Col md={3}>
<Sidebar />
</Col>
<Col md={9}>
{this.props.children} <-- Start, TaskRoot, etc go here
</Col>
</Row>
<Alert someProps={...} /> <-- Popup component
</div>
}
通常,我会在活动组件之外创建此警报组件,并传递某种将警报显示为活动组件的prop的函数。与显示here的内容类似。
但是,这仅适用于特定组件。但是因为<Alert>
位于我的页面的根级别(连同菜单栏,侧边栏以及其他所有页面上都是静态的),由于{this.props.children}
,我无法将其作为道具传递。< / p>
请允许我说明我想要再次实现的流程:
<TaskEdit>
。<TaskList>
。<Alert>
触发,并显示一条消息。我已经看到其他解决方案建议您可以克隆React元素的所有子元素并应用打开alert
所需的道具,但由于react-router
的性质,这并不是&#真的好像有效。
我怎样才能完成上述目标?组件是否可以全局访问?请注意,我不想在每个组件中重新创建<Alert>
。只有一个整个DOM的组件。
答案 0 :(得分:3)
简单回答:
将您的Alert组件放在顶层视图中,然后使用一些pubsub或事件总线lib来更新它。
在Alert组件onComponentDidMount函数中,您将侦听特定事件和数据并相应地更新其状态(可见性和消息)
在任务保存功能中,您将事件发布到事件总线。
更多提前答案:
使用React flux library https://facebook.github.io/flux/docs/overview.html
答案 1 :(得分:2)
一个简单的解决方案是使用context
feature:
const MainView = React.createClass({
childContextTypes: {
triggerAlert: PropTypes.func.isRequired,
},
getChildContext() {
return {
triggerAlert: alert => this.setState({ alert }),
};
},
getInitialState() {
return {
alert: null,
};
},
render() {
return (
<div>
{this.props.children}
<Alert alert={this.state.alert} />
</div>
};
},
});
const AnyChild = React.createClass({
contextTypes: {
triggerAlert: PropTypes.func.isRequired,
},
handleClick() {
this.context.triggerAlert('Warning: you clicked!');
},
render() {
return <button onClick={this.handleClick} />
},
});
然而,这与必要的API有关。这也意味着产生警报的所有子组件必须重新实现一些样板。
您还可以将与警报呈现相关的所有内容移动到他们自己的组件中,将您的实现隐藏在更简单的API下:
const AlertRenderer = React.createClass({
childContextTypes: {
addAlert: PropTypes.func.isRequired,
},
getChildContext() {
return {
addAlert: this.addAlert,
};
},
getInitialState() {
return {
alerts: [],
};
},
addAlert(alert) {
this.setState(({ alerts }) =>
({ alerts: alerts.concat([alert]) })
);
const remove = () => {
this.setState(({ alerts }) =>
({ alerts: alerts.splice(alerts.indexOf(alert), 1) })
);
};
const update = () => {
this.setState(({ alerts }) =>
({ alerts: alerts.splice(alerts.indexOf(alert), 1, alert) })
);
};
return { remove, update };
},
render() {
return (
<div>
{this.props.children}
{this.state.alerts.map(alert =>
<this.props.component
key={alert} // Or whatever uniquely describes an alert
alert={alert}
/>
)}
</div>
);
},
});
const Alert = React.createClass({
contextTypes: {
addAlert: PropTypes.func.isRequired,
},
propTypes: {
alert: PropTypes.any.isRequired,
},
componentWillMount() {
const { update, remove } = this.context.addAlert(this.props.alert);
this.updateAlert = update;
this.removeAlert = remove;
},
componentWillUnmount() {
this.removeAlert();
},
componentWillReceiveProps(nextProps) {
this.updateAlert(nextProps.alert);
},
render() {
return null;
},
});
您的应用程序代码将变为:
const AnyChild = React.createClass({
getInitialState() {
return {
alert: null,
};
},
handleClick() {
this.setState({
alert: 'Warning: you clicked the wrong button!',
});
},
render() {
return (
<div>
<button onClick={this.handleClick}>
</button>
{this.state.alert &&
<Alert alert={this.state.alert} />
}
</div>
);
},
});
const MainView = React.createClass({
render() {
return (
<AlertRenderer component={MyAlertComponent}>
{this.props.children}
</AlertRenderer>
);
},
});
此特定方法的一个问题是,每当更新警报时,AlertRenderer都会重新呈现其子项的所有。这会导致无限递归,因为AlertSub的componentWillReceiveProps生命周期再次触发。请注意,仅当您的组件具有可变道具且未实现shouldComponentUpdate
时才会出现此问题。
解决此问题的一种简单方法是创建一个条件子渲染器,只有在检测到其子项已更改时才会更新。
下面的示例代码为单个孩子创建了这样的条件渲染器。为了有条件地渲染多个子节点,您需要将其包装到另一个DOM组件中。
const ShouldSingleChildUpdate = React.createClass({
shouldComponentUpdate(nextProps) {
return nextProps.children !== this.props.children;
},
render() {
return this.props.children;
},
});
const AlertRenderer = React.createClass({
/* ... */
render() {
return (
<div>
<ShouldSingleChildUpdate>
{this.props.children}
</ShouldSingleChildUpdate>
{this.state.alerts.map(alert =>
<this.props.component
key={alert} // Or whatever uniquely describes an alert
alert={alert}
/>
)}
</div>
);
},
});
请注意,这种方法适用于任何类型的模态,其中可以随时在屏幕上显示多个模态。在您的情况下,由于您在屏幕上应该只有一个Alert
组件,您可以通过仅在状态中存储单个警报来简化AlertRenderer
代码。