This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-02
Channels
- # admin-announcements (4)
- # aleph (10)
- # arachne (1)
- # beginners (66)
- # boot (19)
- # cider (6)
- # cljs-edn (2)
- # cljs-site (32)
- # cljsjs (4)
- # cljsrn (32)
- # clojure (116)
- # clojure-austin (6)
- # clojure-belgium (2)
- # clojure-dusseldorf (1)
- # clojure-russia (16)
- # clojure-uk (5)
- # clojurescript (178)
- # community-development (2)
- # cursive (28)
- # datascript (16)
- # datomic (16)
- # dirac (13)
- # editors (2)
- # emacs (1)
- # error-message-catalog (30)
- # events (3)
- # garden (2)
- # hoplon (27)
- # jobs (4)
- # ldnclj (4)
- # liberator (3)
- # off-topic (6)
- # om (49)
- # onyx (24)
- # parinfer (9)
- # re-frame (59)
- # reagent (46)
- # remote-jobs (1)
- # rethinkdb (4)
- # rum (2)
- # slack-help (11)
- # untangled (13)
@anatoly: If you follow the instructions on https://github.com/drapanjanas/re-natal#re-natal you’ll get a scaffolded project that you can start working on. The reason the documentation is quite limited is that most of it is covered in the React Web parts, so have a look at https://reagent-project.github.io/ and https://github.com/Day8/re-frame for an understanding of how things work. For a small sample app built with re-natal, look at: https://github.com/vikeri/re-navigate
i'm trying to rewrite a mobile (webview) app in rn via re-natal. it had a bunch (hundreds) of images (offline). is there a way to refer to images without the need to require() them? (because there are just so many of them)
@balint: Write a macros - it has a full access to hard disk, so go though all the images and then generate all the requires and store it in the array. Not sure how require for images on RN works, maybe it’s worth checking the internal implementation
@artemyarulin: sounds good, i shall look into that! thx for the idea
yeah, I guess somebody did such thing already (or was it me? Don’t remember ) in any case it’s quite straightforward
Is there something special with :closure-defines
in regard to re-natal
? Can’t get it to work...
I don't know if it's better to start learning Android first and then Clojurscript + React Native development stack
Start working and learn as you run into problems. See https://clojurians.slack.com/archives/cljsrn/p1462175660000112
so you are implicitly saying, don't worry starting first with Android specific tools, Just start with CLJS+RN right now!
Haha, yes if you are not doing too much native integration you barley have to touch Java/Obj-C.
It will be needed for integration tests and things like bluetooth though, but I guess that is not a day one problem.
I'll need to do that, but first I'll get into the easy part of the app just to learn the workflow