re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
p-himik 2020-09-29T05:43:35.011800Z

Not found. Missing index.html.

p-himik 2020-09-29T05:55:10.012100Z

fork/form has some internal state that caches {:values {"name" "should never appear"}}. That's it, it has nothing to do with re-frame.

p-himik 2020-09-29T05:56:50.012300Z

If you'd only try to create a proper MRE, you would've found it yourself because the issue would disappear as soon as you'd remove fork/form.

Grant Isom 2020-09-29T17:26:05.012800Z

Anyone have any good resources for deploying a reframe app with docker?

p-himik 2020-09-29T17:28:41.012900Z

re-frame in this regard is no different from reagent, and I've already answered in #reagent

1
Jason 2020-09-29T18:51:00.013300Z

Thank you for taking the time to help. I understand your critique and will modify my coding style in the future

1🙂
2020-09-29T22:25:31.014400Z

we use inject-cofx when we want a random uuid. i'd like n - will this work? will this accomplish purity?

(rf/reg-cofx
 ::make-uuid
 (fn [coeffects _]
   (assoc coeffects :make-uuid random-uuid)))

2020-09-29T22:26:11.015100Z

in a testing context i could inject any random-uuid - such as a deterministic fn