我有一些带有抽象react组件的外部 UI,我想从试剂中重用它们,有什么方法可以仅通过从 clojurescript 传递数据来直接呈现预定义的react组件。我是 clojurescript 初学者。
使用来自试剂的预定义react成分?
IT技术
reactjs
clojurescript
om
reagent
2021-05-07 10:56:08
1个回答
我们试试吧!我们可以从在 js 文件中编写组件开始。
var CommentBox = React.createClass({displayName: 'CommentBox',
render: function() {
return (
React.createElement('div', {className: "commentBox"},
this.props.comment
)
);
}
});
然后我们可以直接从 Reagent 中调用它:
(defonce app-state
(atom {:text "Hello world!"
:plain {:comment "and I can take props from the atom"}}))
(defn comment-box []
js/CommentBox)
(defn hello-world []
[:div
[:h1 (:text @app-state)]
[comment-box #js {:comment "I'm a plain React component"}]
[comment-box (clj->js (:plain @app-state))]])
(reagent/render-component [hello-world]
(. js/document (getElementById "app")))
请注意,我们CommentBox
通过使用#js
原子并将原子转换为纯 js将 props作为纯 js 对象传递给两者clj->js
。如果我遗漏了某些内容,您可以在gist 中找到其余内容。
其它你可能感兴趣的问题