This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-28
Channels
- # admin-announcements (1)
- # aleph (3)
- # bangalore-clj (4)
- # beginners (167)
- # boot (14)
- # cider (4)
- # cljs-dev (24)
- # cljsjs (21)
- # cljsrn (33)
- # clojure (214)
- # clojure-greece (2)
- # clojure-italy (2)
- # clojure-korea (16)
- # clojure-russia (29)
- # clojure-spec (31)
- # clojure-uk (86)
- # clojurescript (144)
- # core-matrix (2)
- # cursive (37)
- # datascript (5)
- # datomic (104)
- # devcards (2)
- # events (2)
- # jobs (2)
- # luminus (8)
- # midje (1)
- # nyc (4)
- # off-topic (1)
- # om (39)
- # om-next (1)
- # onyx (47)
- # perun (1)
- # planck (6)
- # proton (2)
- # re-frame (25)
- # reagent (40)
- # spacemacs (9)
- # vim (71)
- # yada (3)
i found this core async storage wrapper, but was wondering if there are any examples of using it with re-frame: https://github.com/glittershark/core-async-storage
@tiensonqin hey btw i remember you said you had sourcemaps working in react-native + clojurescript on exponent right? @elsehow was interested in getting it working
nikki core-async-storage did the job i needed doing. seems like the lib you’d want for interacting with that API in cljs.
looks like you *really* like Clojure 🙂
... and I'm trying to find people who do so as well, and who like to help shape the future of health care. > The future cannot be predicted, but futures can be invented. (Dennis Gabor, not Alan Kay 🙂 )
cljs,RN,remote work,startup - what could be better, I need to think about 🙂
nice... don't hesitate to contact me whenever you feel like it.
I guess you wouldn’t mind if I share your job ad with couple of my friends
I don't mind at all... we actually may need more people - all depends on the profiles.
@jorda0mega It is unfortunately: https://github.com/mjmeintjes/boot-react-native/issues/25 I still get the name of the function that is throwing the error straight from the js so I do it that way...
@kurt-yagram We’re also an mHealth startup that is all in on cljs+rn and clojure on the backend. Great stuff!
@nikki @elsehow Sorry for the late response, I'm following re-natal's way to enable sourcemaps on exponent-cljs-template, related code here: https://github.com/tiensonqin/exponent-cljs-template/blob/master/resources/leiningen/new/exponent/env/dev/user.clj#L21-L26
@jorda0mega yeah it's broken currently, what are you having trouble debugging?
one of my functions is returning an invalid component so it would be nice to step through each iteration to see where it fails
it's supposed to return a list of objects but i just get the exception object is not of type ISeq
ah yes
debugging rendering functions is always a bit messy
one (not very satisfying) strategy is to comment out components one by one
in hard case that always works for me
otherwise, the fact that you see an Object might be an indication that it's to do with javascript interop
I've been working with BRN for almost a year and honestly lack of source-maps hasn't been anything I missed
but I do realize it's an important feature, especially when getting started
kk. i'll try commenting out sections and outputting the objects to the chrome console to see what's up. thanks for the quick response