-
-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example of a re-com form with re-frame's dispatch #30
Comments
The code looks about right. Side issue: if you are going to be using |
Good to know about I put together a few helper functions for wiring up form elements. The textbox model needs a dereference but the radio button doesn't.. I'll investigate more. (defn wired-textbox [{:keys [label key]}]
(let [model (subscribe [::input key])]
(fn []
[rc/v-box
:children
[[rc/label :label label]
[rc/input-text
:model (or @model "")
:on-change #(dispatch [::input-changed key %])]]])))
(defn wired-radiogroup [{:keys [label key options]}]
(let [model (subscribe [::input key])]
(fn []
[rc/v-box
:children
[[rc/label :label label]
[rc/v-box
:gap "10px"
:children
[(doall (for [[c label] options]
^{:key c}
[rc/radio-button
:label label
:value c
:model model
:label-style (if (= c @model) {:font-weight "bold"})
:on-change #(dispatch [::input-changed key c])]))]]]])))
[wired-textbox {:label "Address" :key :address}]
[wired-radiogroup {:label "Color"
:key :color
:options [[:blue "Blue"] [:red "Red"]]}] Btw, re-com is the best component library I've used so far. Thanks for releasing it! Hope to see more adoption and continued updates. |
Could you provide an example of hooking up a re-com element to re-frame's app-db?
My attempt required some unexpected hacks:
In particular, without the
(or @address "")
, I get an error on the initial page load:Validation failed for argument ':model' in component 'input-text': Expected 'string | atom'. Got 'nil'
The text was updated successfully, but these errors were encountered: