[Recompose] Stream Props to React Children with RxJS
You can decouple the parent stream Component from the mapped React Component by using props.children
instead. This process involves mapping the stream to React’s cloneElement
with the children
then passing the props
in manually.
We have the code below:
import React from "react" import { render } from "react-dom" import { Observable } from "rxjs" import config from "recompose/rxjsObservableConfig" import { setObservableConfig, componentFromStream, createEventHandler } from "recompose" setObservableConfig(config) const Counter = ({ value, onInc, onDec }) => ( <div> <button onClick={onInc}>+</button> <h2>{value}</h2> <button onClick={onDec}>-</button> </div> ) const CounterStream = componentFromStream( props$ => { const { stream: onInc$, handler: onInc } = createEventHandler(); const { stream: onDec$, handler: onDec } = createEventHandler(); return props$ .switchMap( propos => Observable.merge( onInc$.mapTo(1), onDec$.mapTo(-1) ) .startWith(propos.value) .scan((acc, curr) => acc + curr) .map((value) => ({ value, onInc, onDec }))) .map( Counter ) } ); const App = () => ( <div> <CounterStream value={3} /> </div> ) render(<App />, document.getElementById("root"))
Now inside we use:
<CounterStream value={4} />
We want pass child into it:
const App = () => (
<div>
<CounterStream value={3}>
<Counter />
</CounterStream>
</div>
)
So now, instead we map to Counter map in the JXS, we want to clone the child elemenet and pass down new props:
const CounterStream = componentFromStream( props$ => { const { stream: onInc$, handler: onInc } = createEventHandler(); const { stream: onDec$, handler: onDec } = createEventHandler(); return props$ .switchMap( props => Observable.merge( onInc$.mapTo(1), onDec$.mapTo(-1) ) .startWith(props.value) .scan((acc, curr) => acc + curr) .map((value) => ({ ...props, value, onInc, onDec })) ).map(props => cloneElement(props.children, props) ) } );
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2016-12-22 [RxJS] Split an RxJS observable conditionally with windowToggle
2016-12-22 [Angular Directive] Write a Structural Directive in Angular 2
2016-12-22 [Compose] 18. Maintaining structure whilst asyncing
2016-12-22 [Angular Directive] Combine HostBinding with Services in Angular 2 Directives
2016-12-22 [Angular Directive] Build a Directive that Tracks User Events in a Service in Angular 2
2015-12-22 [Polymer] Introduction
2015-12-22 [Redux] Implementing combineReducers() from Scratch