This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-22
Channels
- # announcements (8)
- # babashka (4)
- # beginners (164)
- # calva (17)
- # cider (30)
- # cljdoc (4)
- # cljs-dev (6)
- # clojure (103)
- # clojure-europe (63)
- # clojure-nl (1)
- # clojure-norway (1)
- # clojure-portugal (1)
- # clojure-uk (3)
- # clojured (10)
- # clojuredesign-podcast (2)
- # clojurescript (16)
- # conjure (2)
- # core-async (9)
- # cursive (26)
- # datalevin (4)
- # datomic (155)
- # gratitude (1)
- # holy-lambda (8)
- # honeysql (9)
- # hoplon (6)
- # off-topic (55)
- # polylith (14)
- # portal (21)
- # reagent (5)
- # reitit (16)
- # releases (3)
- # shadow-cljs (87)
- # spacemacs (3)
- # tools-deps (25)
- # xtdb (9)
hey all, what's the state of React Native dev? sry if you get this a lot, searching the backlog now but just joined. Just looking to make like a lil demo app but something that could grow into a legit maintainable project. also not sure how recently http://cljsrn.org has been updated
you might be interested in krell https://github.com/vouch-opensource/krell
ah I see that's on that website
ah, just saw the #cljsrn channel
Hi, I'm struggling with an Exception I get, which I don't really understand. I'm doing a mapcat recursively on a tree structure. For some reason I get an ISeqable Error as soon as I try to unpack the LazySeq. Is the cljs-version behaving differently from the clj-version?
router.cljc?rel=1650612138476:204 Uncaught Error: 5c45eb67-277e-4c48-8a1b-85870a3db2ae is not ISeqable
at Object.cljs$core$seq [as seq] (core.cljs:1253:20)
at Object.cljs$core$ISeqable$_seq$arity$1 (core.cljs:3504:14)
at Object.cljs$core$seq [as seq] (core.cljs:1236:13)
at core.cljs:3805:31
at Object.sval (core.cljs:3441:18)
at Object.cljs$core$ISeqable$_seq$arity$1 (core.cljs:3498:12)
at Object.cljs$core$seq [as seq] (core.cljs:1236:13)
at Object.cljs$core$pr_sequential_writer [as pr_sequential_writer] (core.cljs:10175:20)
at Object.cljs$core$IPrintWithWriter$_pr_writer$arity$3 (core.cljs:10460:35)
at Object.cljs$core$_pr_writer [as _pr_writer] (core.cljs:778:16)
I could share some code, if necessary.
Seems like you have a data structure that's not mapcat
'able, like [[1 2] 3]
- you'll get a similar error because 3
is not ISeqable.
Inspect your data with e.g. https://github.com/djblue/portal or just play with it in the REPL.
Thanks, I will try that.
My google-fu is failing me. Is there a hiccup port for cljs (running on node)? I don't mean react. Just plain html.
Pretty sure https://github.com/davidsantiago/hickory supports that.
I don't see that there but I also noticed I wasn't very precise: cljs on node, not in a browser