作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有关于如何从 F#/Fable 为 react 组件库编写绑定(bind)的分步指南?
我能找到的唯一例子是 fable-react-toolbox它广泛使用了已弃用的 KeyValueList
属性。
我对使用 BlueprintJS library 特别感兴趣;我已经可以使用 ts2fable
生成接口(interface)对应的各种props
已定义但不知道下一步该做什么或在哪里寻求帮助!
任何指导将不胜感激!
迈克尔
最佳答案
如果您已经将 Prop 作为接口(interface),您可以使用 Fable React Helpers 为您创建组件。
假设您想从 react-bar 模块为 Foo 组件创建一个包装器(您已经将 props 提取到一个接口(interface)并将其称为 IFooProps),您编写的代码看起来像这样。
let Foo : ComponentClass<obj> = import "Foo" "react-bar"
let inline foo (props : IFooProps list) elems =
Fable.Helpers.React.from Foo (keyValueList CaseRules.LowerFirst props) elems
ComponentClass
类型可在
Fable.Import.React
中找到模块。
关于f# - 如何为 React 组件库编写 Fable 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45465887/
我是一名优秀的程序员,十分优秀!