This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-09-08
Channels
- # announcements (32)
- # aws (2)
- # babashka (21)
- # beginners (143)
- # cider (3)
- # cljsrn (13)
- # clojure (65)
- # clojure-dev (7)
- # clojure-europe (20)
- # clojure-losangeles (8)
- # clojure-nl (13)
- # clojure-norway (39)
- # clojure-uk (9)
- # clojurescript (39)
- # code-reviews (10)
- # conjure (2)
- # cursive (3)
- # datascript (6)
- # datomic (40)
- # events (5)
- # exercism (23)
- # fulcro (9)
- # funcool (2)
- # girouette (2)
- # graphql (4)
- # helix (8)
- # improve-getting-started (4)
- # integrant (7)
- # introduce-yourself (5)
- # jobs (3)
- # luminus (32)
- # malli (3)
- # off-topic (10)
- # pathom (9)
- # pedestal (4)
- # polylith (25)
- # practicalli (1)
- # re-frame (4)
- # sci (3)
- # shadow-cljs (5)
- # tools-deps (25)
- # vim (31)
- # xtdb (32)
Hey @tony.kay. The 3.5.4 jar is without the new clj-kondo config and I noticed, that the pom.xml doesn't include the src/clj-kondo
folder.
When trying to generate a new pom.xml:
clj -X:deps mvn-pom
Skipping paths: src/clj-kondo
Maybe you know how to fix this?Imported config to .clj-kondo/com.fulcrologic/fulcro. To activate, add "com.fulcrologic/fulcro" to :config-paths in .clj-kondo/config.edn.
🎉
It works.
Happy to see somebody other than me is using the clj-kondo integration :star-struck:
I have a load!
that may or may not find some data on the server. What is the best way to perform subsequent actions depending on the result? If a result is returned, I want some rendering to happen to reflect it (`set-active`); if no data is found, I want to create it and then render (`create-and-set-active`).
I'm using :post-mutation
but I'm not sure it's ideal because then I end up creating things like tempids inside the mutation rather than in the UI, and it generally seems to lead to a poor separation of concerns.