This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-13
Channels
- # adventofcode (84)
- # aleph (1)
- # announcements (2)
- # aws (27)
- # beginners (52)
- # braveandtrue (2)
- # calva (440)
- # cider (7)
- # clara (2)
- # cljdoc (26)
- # cljs-dev (70)
- # clojure (131)
- # clojure-berlin (4)
- # clojure-brasil (1)
- # clojure-europe (2)
- # clojure-greece (4)
- # clojure-hamburg (1)
- # clojure-italy (4)
- # clojure-losangeles (6)
- # clojure-nl (14)
- # clojure-spec (7)
- # clojure-uk (25)
- # clojurescript (26)
- # component (2)
- # cursive (13)
- # datomic (60)
- # dirac (59)
- # docker (1)
- # figwheel (1)
- # figwheel-main (2)
- # fulcro (12)
- # graphql (5)
- # juxt (33)
- # leiningen (19)
- # nrepl (1)
- # off-topic (37)
- # protorepl (2)
- # re-frame (18)
- # reagent (46)
- # remote-jobs (1)
- # ring-swagger (1)
- # shadow-cljs (88)
- # sql (10)
- # tools-deps (64)
- # vim (24)
can someone assist me regarding how to propely setup re-frame 10x debugger with shadow-cljs?
@mateus.pimentel.w see https://github.com/jacekschae/shadow-re-frame it has everything setup
It's most likely that dispatch is being called twice...perhaps an old event handler that hasn't been removed?
In my case every time the code is hot reloaded with figwheel, all handlers get registered again... maybe this is what could happen to you? .. try to hard refresh your browser..
I would like to have an extension that autocompletes events and subscription names, jumps to their respective definitions and maybe search for usages (xrefs),
@lucio, i think it is something related to the navigation code, i experimented with another event and it was triggered only once, but thanks for the suggestion
can i programmatically close 10x from the js console? (or from js executed via selenium for browser tests...)
@hoopes disabling it before tests isn't an option? :thinking_face: ( just curious tho )
yeah, i could do it in the shadow-cljs.edn
file, but i want to browser test and develop on the same app đŸ™‚ having it start as closed would also be an option, i suppose
@mateus.pimentel.w if you paste your code we might be able to help :).. are you sure you are not using a subscription in the same place you are dispatching?