为什么Radium不能与Reagent(Clojurescript)一起使用?

时间:2015-09-02 14:19:03

标签: clojurescript reagent

我试图FormidableLabs/radium · GitHubreagent-project/reagent · GitHub一起工作,但我走到了尽头。

我能够通过这样的“黑客攻击”试剂函数create-class来部分地工作(它与原始版本几乎相同,我只是添加了js/Radium包装器。)

(ns myproject.components.radium
  (:require [reagent.core :as r]
            [reagent.impl.component :as c]
            [reagent.impl.util :as util]
            [reagent.interop :refer-macros [.' .!]]))

(defn create-class
  [body]
  (assert (map? body))
  (let [
        spec (c/cljsify body)
        res (js/Radium (.' js/React createClass spec))
        ;res (.' js/React createClass spec)
        f (fn [& args]
            (r/as-element (apply vector res args)))]
    (util/cache-react-class f res)
    (util/cache-react-class res res)
    f))

然后我为这样的组件制作了功能

(defn radium []
  (create-class
    {:reagent-render
     (fn []
       [:button {:style
                 [{:backgroundColor             "red"
                   :width                       500
                   :height                      100
                   "@media (min-width: 200px)" {:backgroundColor "blue"}
                   ":hover"                     {:backgroundColor "green"}}
                  {:height 200}]}
        "Heres something"])}))

我在其他一些试剂渲染功能中使用它,如:[radium/radium]

  • 因此,合并样式的矢量效果很好(那是镭特征)。
  • 媒体查询也有效,但只有在第一次渲染时,我才会在更改屏幕尺寸时动态做出反应。
  • :hover :focus :active根本不起作用

我正在挖掘Radium代码以找出问题所在。 好的迹象是,Radium正确地将onMouseEnter onMouseLeave道具分配给组件,并将组件的:hover状态设置为true。

这被正确解雇:https://github.com/FormidableLabs/radium/blob/master/modules/resolve-styles.js#L412

问题是render函数,根据新状态重新渲染组件(由Radium更改)根本不会被触发。 这个render函数: https://github.com/FormidableLabs/radium/blob/master/modules/enhancer.js#L22 而当我运行JS Radium示例(没有Clojurescript和Reagent)时,此render函数会在每个onMouseEnter onMouseLeave上触发。完全没有试剂。

当组件状态发生变化时,Reagent会以某种方式阻止重新渲染吗?

1 个答案:

答案 0 :(得分:5)

我已经翻译了与试剂一起使用的基本按钮Radium示例:

(def Radium js/Radium)

(def styles {:base {:color "#fff"
                    ":hover" {:background "#0A8DFF"}}
             :primary {:background "#0074D9"}
             :warning {:background "#FF4136"}})

(defn button
  [data]
  (let [kind (keyword (:kind data))]
    [:button
     {:style (clj->js [(:base styles)
                       (kind styles)])}
     (:children data)]))

(def btn (Radium. (reagent/reactify-component button)))

(def rbtn (reagent/adapt-react-class btn))

(defn hello-world
  []
  [:div
   [rbtn {:kind :primary} "Hello Primary"]
   [rbtn {:kind :warning} "Hello Warning"]])

关键是我将button试剂成分转换为React成分(使用reactify-component),然后将其传递给Radium,然后将其转换回我在试剂中消耗的成分(使用{ {1}})。

在我的示例中,adapt-react-class有效。

希望这有帮助。

我已将工作版本放在GitHub上。