A set of the keywords that should not appear on network requests.
A set of the keywords that should not appear on network requests.
(elide-ast-nodes {:keys [key union-key children] :as ast} elision-predicate)
Like df/elide-ast-nodes but also applies elision-predicate logic to mutation params.
Like df/elide-ast-nodes but also applies elision-predicate logic to mutation params.
(elide-params params pred)
Given a params map, elides any k-v pairs where (pred k)
is false.
Given a params map, elides any k-v pairs where `(pred k)` is false.
(elision-predicate blacklist)
Returns an elision predicate that will return true if the keyword k is in the blacklist or has the namespace
ui
.
Returns an elision predicate that will return true if the keyword k is in the blacklist or has the namespace `ui`.
(fulcro-rad-app options)
Create a new fulcro RAD application with reasonable defaults.
options
is the same as for app/fulcro-app
. You should use caution when overridding the :optimized-render!
or :global-eql-transform
options.
Create a new fulcro RAD application with reasonable defaults. `options` is the same as for `app/fulcro-app`. You should use caution when overridding the :optimized-render! or `:global-eql-transform` options.
(global-eql-transform pred)
Returns an EQL transform that removes (pred k)
keywords from network requests.
Returns an EQL transform that removes `(pred k)` keywords from network requests.
(install-ui-controls! app controls)
Install the given control set as the RAD UI controls used for rendering forms. This should be called before mounting
your app. The controls
is just a map from data type to a sub-map that contains a :default key, with optional
alternate renderings for that data type that can be selected with ::form/field-style {attr-key style-key}
.
Install the given control set as the RAD UI controls used for rendering forms. This should be called before mounting your app. The `controls` is just a map from data type to a sub-map that contains a :default key, with optional alternate renderings for that data type that can be selected with `::form/field-style {attr-key style-key}`.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close