This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-26
Channels
- # aleph (4)
- # announcements (3)
- # babashka (31)
- # beginners (74)
- # bitcoin (7)
- # calva (11)
- # cider (17)
- # clj-kondo (5)
- # clojars (11)
- # clojure (81)
- # clojure-australia (3)
- # clojure-dev (73)
- # clojure-europe (136)
- # clojure-nl (5)
- # clojure-spec (10)
- # clojure-uk (41)
- # clojurescript (30)
- # core-async (1)
- # cursive (19)
- # data-oriented-programming (4)
- # datascript (5)
- # datomic (6)
- # docker (6)
- # emacs (1)
- # figwheel-main (1)
- # fulcro (6)
- # jobs (1)
- # jobs-discuss (17)
- # lsp (23)
- # malli (6)
- # off-topic (35)
- # pathom (2)
- # re-frame (56)
- # reitit (2)
- # rewrite-clj (3)
- # shadow-cljs (10)
- # spacemacs (6)
- # sql (11)
- # vim (16)
- # xtdb (3)
Did this experiment. It brings malli to babashka via a pod. Due to pod limitations it might not bring you all the features, but might still be useful somehow. Feedback welcome 😊
not sure if ask in #malli or #reitit channel, but nesting routes with path params are not merged correctly. I found this issue https://github.com/metosin/reitit/issues/462 there is any update on this?
No updates yet.
It is Reitit issue, Malli has malli.util/merge
function that would work here, but Reitit doesn't have option to control how the values are merged, and because it is currently done using external library (https://github.com/weavejester/meta-merge) it is not simple to change.
Might have to copy meta-merge logic to Reitit and extend with controls to use custom function in certain paths.
https://github.com/metosin/reitit/pull/474 adds tests and found the place where we could call malli merge
No updates yet.
It is Reitit issue, Malli has malli.util/merge
function that would work here, but Reitit doesn't have option to control how the values are merged, and because it is currently done using external library (https://github.com/weavejester/meta-merge) it is not simple to change.
Might have to copy meta-merge logic to Reitit and extend with controls to use custom function in certain paths.
https://github.com/metosin/reitit/pull/474 adds tests and found the place where we could call malli merge