clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
p-himik 2020-10-17T04:05:48.042900Z

This looks like a normal solution to me. Alternatively, you can store children refs at the level of the parent component right along observer in another atom (no need for ratom in this case) and just iterate over them and call .observe @observer on each in the parent's ref.

Hankstenberg 2020-10-17T07:58:49.044500Z

Did anybody manage to get a working REPL with a Cursive setup in shadow-cljs? I'm following the shadow-cljs guide and set up a remote REPL listening to shadow-watch and everything seems to work, except for the :requires. For example I require "

[shadow.expo :as expo]
When I then try to send the file to the REPL it says: Syntax error (FileNotFoundException) compiling at (src/app/app.cljs:1:1). Could not locate shadow/expo__init.class, shadow/expo.clj or shadow/expo.cljc on classpath. So apparently, the sources from node_modules are not available in the context of the REPL.

thheller 2020-10-17T08:55:11.046300Z

you are in the Clojure REPL. you need to switch it to the CLJS REPL first. see https://shadow-cljs.github.io/docs/UsersGuide.html#_cursive

Helins 2020-10-17T09:00:00.048900Z

There probably isn't any magical solution, but maybe someone has a creative solution. It seems that sharing data with web workers is a growing concern in CLJS. Offloading CPU intensive computations, wanting to draw a canvas from a worker while needing to keep data on the main thread... It is not a CLJS-specific problem (it's a JS one), but it is hard to let go when one is used to sharing complex immutable data across threads in CLJ. How do you cope?

suren 2020-10-17T09:04:38.049Z

It worked. Thanks buddy

1πŸ‘
thheller 2020-10-17T09:24:28.051Z

@adam678 FWIW in the shadow-cljs web UI I'm experimenting with workers. In that case all "data" or "state" is living in the worker and the UI just sends small EQL-ish queries for the data it needs. since that data is rather small and pretty declarative in nature the overhead is actually much smaller than I had anticipated

thheller 2020-10-17T09:24:34.051300Z

it is working ok but not really something I'd recommend. having all the data in the worker makes all access async which is kinda annoying at times.

thheller 2020-10-17T09:25:52.052500Z

shipping small snippets of data back and forth between the worker is fine. transferring big data is not so if you do anything in the worker try to have the worker load the data itself

thheller 2020-10-17T09:26:16.053300Z

and not the main thread sending it over there since that may block the main thread too long

thheller 2020-10-17T09:27:13.054300Z

big in this case can be as little as 1mb, which may already impact animations you might have on the page

Helins 2020-10-17T09:28:20.054500Z

@thheller Yes, I envisioned this kind of async access but then the problem was kind of just shifting away. Suddenly, the worker was responsible of doing "everything"

thheller 2020-10-17T09:29:53.055500Z

indeed

thheller 2020-10-17T09:31:37.056300Z

there really is no good solution as soon as the worker requires a lot of data to work

Helins 2020-10-17T09:33:01.057200Z

My current use case is specific I must admit, I am doing audio which is time sensitive (so I am not fond about adding extra latencies, the browser is already a challenging env) + visualization on top. OTOH, the browser is evolving towards that kind of workloads, so if CLJS would provide a bit of a solution, we would be once again at the forefront

thheller 2020-10-17T09:34:21.057900Z

not sure what CLJS could provide over what JS already has. if anything we are always going to pay the extra datastructure cost since JS can just send objects

Helins 2020-10-17T09:36:43.058400Z

Yeah I am really not sure, but maybe some macro magic over shared array buffers or something...

p-himik 2020-10-17T09:37:33.059Z

Just in case - there are also Transferable objects that can help with large data sizes since they're not copied but rather, well, transferred.

thheller 2020-10-17T09:39:43.059400Z

that doesn't really help anything when working with CLJS data

thheller 2020-10-17T09:40:16.059900Z

also the object is handed over to the worker so the main can't use it anymore after

thheller 2020-10-17T09:41:25.060700Z

but you can certainly build something that works with native uint8arrays or so and just transfer those. that will be fast and not much overhead.

thheller 2020-10-17T09:41:42.061100Z

never really worked with anything audio so no clue what the data looks like

thheller 2020-10-17T09:42:17.061800Z

but stuff like the audio worklets are already not a great fit for CLJS

p-himik 2020-10-17T09:42:30.062500Z

Yep, lots of interop.

thheller 2020-10-17T09:42:33.062600Z

kind hard to create small snippets of JS that don't also pull in cljs.core

Helins 2020-10-17T09:42:51.062700Z

I work a lot with array buffers which are indeed Transferable but I didn't come up with a good solution

Helins 2020-10-17T09:43:58.063300Z

As soon as the data is truly needed at more than one place, it gets tough...

thheller 2020-10-17T09:47:01.063800Z

yeah I can imagine audio being tough in a single threaded world that also has to do a bunch of other stuff

Helins 2020-10-17T09:53:08.064400Z

Feels like programming in DOS. Welcome to the web in 2020

Hankstenberg 2020-10-17T11:58:53.064500Z

Hi Thomas, thanks for the reply. Yes, I am using cljs in the REPL. As a matter of fact, when I switch to clj, this error does not appear (but I cannot eval anything from the active NS either)

thheller 2020-10-17T12:30:14.064700Z

why not?

thheller 2020-10-17T12:30:32.064900Z

did you read https://shadow-cljs.github.io/docs/UsersGuide.html#repl-troubleshooting?

Rico Meinl 2020-10-17T14:58:05.066500Z

Did anyone ever try to import a node js package and it didn't work as expected? I'm Using shadow cljs to compile and I'm wondering whether there are some compiler options I might be missing for it to work

Rico Meinl 2020-10-17T14:58:48.067900Z

Talking about the "roam-client" package. It works for me when I run it in Javascript but as soon as I'm putting it into clojurescript it stops working

jmckitrick 2020-10-17T15:51:05.068Z

Yeah, I was really excited about it, too. Was hoping to be mentored and help with the feature.

Saikyun 2020-10-17T18:10:55.068200Z

nope, I haven't set it to true as far as I can see... when the issue does arise, how do I figure out what to do about it?

Jack Arrington 2020-10-17T18:41:04.068400Z

There is also a #shadow-cljs channel if you don't get an answer here πŸ™‚

Jack Arrington 2020-10-17T18:46:08.070200Z

Since docstrings are just metadata in Clojure, which is available at runtime, does that mean a large docstring will actually increase the size of my production JS bundle? Or will the compiler elide it?

Jack Arrington 2020-10-17T18:47:15.071Z

Doesn't strictly matter for what I'm using CLJS for, just curious

lilactown 2020-10-17T21:17:40.072900Z

I don’t believe metadata on defed things are actually emitted as code by default. They exist only at compile time until you call something like meta

1πŸ‘
joshkh 2020-10-17T21:58:28.078300Z

what can i do to ensure that a .nrepl-port file is generated? for reference i'm starting a barebones shadow-cljs project, but i'm not getting an nrepl port file when running npx shadow-cljs server