home.social

#reagent — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #reagent, aggregated by home.social.

fetched live
  1. I am starting a live Clojure coding session on Twitch. twitch.tv/greencoder

    Topic of the day: Implementing a mini version of Reagent using Signaali.

    #Clojurescript #Reagent #Signaali

  2. I'm soliciting clever names for this "new tab page" project so I can post it on GitHub.

    written with #clojurescript #reagent #shadowcljs #polybooljs

  3. It turns out that using var-quoting with reagent (React) components isn't such a good idea.

    Var-quoting makes the component function not `identical?` to itself, which causes unnecessary remounts.

    (defn foo-component [,,,])

    (identical? foo-component foo-component) #=> true

    (identical? #'foo-component #'foo-component) #=> false (<-- react will remount)

    #clojure #clojurescript #reagent #react

  4. I've always used #reagent with #reframe, but lately been thinking.. is that necessary? Reagent does have quite a nice set of tools for state management, cursor, track, rswap etc (github.com/reagent-project/rea).

    Does anyone have any experience in building a non-trivial app with reagent but without reframe?

    #clojurescript

  5. I've always used #reagent with #reframe, but lately been thinking.. is that necessary? Reagent does have quite a nice set of tools for state management, cursor, track, rswap etc (github.com/reagent-project/rea).

    Does anyone have any experience in building a non-trivial app with reagent but without reframe?

    #clojurescript