[Cycle.js] Introducing run() and driver functions
Currently the code looks like :
// Logic (functional) function main() { return { DOM: Rx.Observable.timer(0, 1000) .map(i => `Seconds elapsed ${i}`), Log: Rx.Observable.timer(0, 2000).map(i => 2*i), }; } // Effects (imperative) function DOMEffect(text$) { text$.subscribe(text => { const container = document.querySelector('#app'); container.textContent = text; }); } function consoleLogEffect(msg$) { msg$.subscribe(msg => console.log(msg)); } const sinks = main(); DOMEffect(sinks.DOM); consoleLogEffect(sinks.Log);
We still have this part of code which didn't wrap into a function, we can wrap into a run() function, this can provide a main enterence for the code:
function run(mainFn){ const sinks = mainFn(); DOMEffect(sinks.DOM); consoleLogEffect(sinks.Log); } run(main);
Let's say we want to remove consoleLogEffect, current way we need to comment out from the main() function.
The problems are that in the first place we are hard coding these effects inside run. Instead, we should be able to specify that these are the effects that I want to run my main function, so we need to give our effects to run as well.
That will be an object. Effects functions will be an object, and the keys will match those keys that we saw from the sync here. The DOM function is DOM Effect, and the log function is consoleLogEffect.
const effects = { DOM: DOMEffect, Log: consoleLogEffect } function run(mainFn, effects){ const sinks = mainFn(); Object.keys(effects) .forEach( (effectKey)=>{ effects[effectKey](sinks[effectKey]); }) } run(main, effects);
The last thing author introduce the 'driver' as the name instead of 'effect' ...
// Logic (functional) function main() { return { DOM: Rx.Observable.timer(0, 1000) .map(i => `Seconds elapsed ${i}`), Log: Rx.Observable.timer(0, 2000).map(i => 2*i), }; } // Effects (imperative) function DOMDriver(text$) { text$.subscribe(text => { const container = document.querySelector('#app'); container.textContent = text; }); } function consoleLogDriver(msg$) { msg$.subscribe(msg => console.log(msg)); } function run(mainFn, drivers) { const sinks = mainFn(); Object.keys(drivers).forEach(key => { drivers[key](sinks[key]); }); } const drivers = { DOM: DOMDriver, Log: consoleLogDriver, } run(main, drivers);
【推荐】国内首个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工具