This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-04-12
Channels
- # bangalore-clj (4)
- # beginners (77)
- # boot (71)
- # cider (10)
- # clara (1)
- # cljs-dev (52)
- # cljsjs (28)
- # cljsrn (1)
- # clojure (390)
- # clojure-dev (5)
- # clojure-india (1)
- # clojure-italy (5)
- # clojure-nl (24)
- # clojure-poland (4)
- # clojure-russia (123)
- # clojure-spec (71)
- # clojure-taiwan (2)
- # clojure-uk (8)
- # clojurescript (236)
- # core-matrix (6)
- # cursive (19)
- # datomic (16)
- # defnpodcast (2)
- # editors (1)
- # emacs (36)
- # garden (2)
- # hoplon (5)
- # jobs (1)
- # jobs-discuss (10)
- # juxt (47)
- # luminus (4)
- # lumo (6)
- # off-topic (207)
- # om (1)
- # onyx (20)
- # pedestal (40)
- # perun (2)
- # re-frame (8)
- # reagent (48)
- # ring (2)
- # ring-swagger (2)
- # specter (13)
- # unrepl (89)
- # vim (6)
@qqq Plus dirac (some here use dirac more than others)
super late to the party but you could have a nested map per-panel. you could then use functional lenses to make working on deeply nested maps easier (lenses is just a fancy term for getters and setters in FP 😛)
@akiroz If you consider a beginner asking questions a party, by all means welcome to the afterparty. Time to furiously google functional lenses then. I just discovered you can dispatch an event within another event makes my navigation way easier (load user data then set panel to userpanel 😄)
how can I pass multiple methods without the params being concatenated? if dispatch[event param1 param2] in the event [{db :db} param1 param2] only var1 gets a value and that is the concactenated value of param1 with param2 (both are strings) . param2 is empty in the event. Also passing the param as a map does not work, then again I could be doing something wrong when trying to make a map with the two parameters.