Liking cljdoc? Tell your friends :D

com.fulcrologic.fulcro.components


*app*clj/s

source

*blindly-render*clj/s

source

*depth*clj/s

source

*parent*clj/s

source

*shared*clj/s

source

(-legal-keys query)

PRIVATE. Find the legal keys in a query. NOTE: This is at compile time, so the get-query calls are still embedded (thus cannot use the AST)

PRIVATE. Find the legal keys in a query. NOTE: This is at compile time, so the get-query calls are still embedded (thus cannot
use the AST)
sourceraw docstring

add-hook-options!clj/s

(add-hook-options! render-fn component-options)

Make a given cls (a plain fn) act like a a Fulcro component with the given component options map. Registers the new component in the component-registry. Component options MUST contain :componentName as be a fully-qualified keyword to name the component in the registry.

component-options must include a unique :componentName (keyword) that will be used for registering the given function as the faux class in the component registry.

Make a given `cls` (a plain fn) act like a a Fulcro component with the given component options map. Registers the
new component in the component-registry. Component options MUST contain :componentName as be a fully-qualified
keyword to name the component in the registry.

component-options *must* include a unique `:componentName` (keyword) that will be used for registering the given
function as the faux class in the component registry.
sourceraw docstring

any->appclj/s

(any->app x)

Attempt to coerce x to an app. Legal inputs are a fulcro application, a mounted component, or an atom holding any of the above.

Attempt to coerce `x` to an app.  Legal inputs are a fulcro application, a mounted component,
or an atom holding any of the above.
sourceraw docstring

check-component-registry!clj/s

Walks the complete list of components in the component registry and looks for problems. Used during dev mode to detect common problems that can cause runtime misbehavior.

Walks the complete list of components in the component registry and looks for problems. Used during dev mode to
detect common problems that can cause runtime misbehavior.
sourceraw docstring

childrenclj/s

(children component)

Get the sequence of react children of the given component.

Get the sequence of react children of the given component.
sourceraw docstring

class->allclj/s

(class->all x class)

Get all of the on-screen component instances from the indexes that have the type of the component class. x can be anything any->app is ok with.

Get all of the on-screen component instances from the indexes that have the type of the component class.
`x` can be anything `any->app` is ok with.
sourceraw docstring

class->anyclj/s

(class->any x cls)

Get a (random) on-screen component instance from the indexes that has type of the given component class. x can be anything any->app is ok with.

Get a (random) on-screen component instance from the indexes that has type of the given component class.
`x` can be anything `any->app` is ok with.
sourceraw docstring

class->registry-keyclj/s

Returns the registry key for the given component class.

Returns the registry key for the given component class.
sourceraw docstring

cljs?clj

(cljs? env)

A CLJ macro helper. env is the macro's &env value. Returns true when expanding a macro while compiling CLJS.

A CLJ macro helper. `env` is the macro's `&env` value. Returns true when expanding a macro while compiling CLJS.
sourceraw docstring

component->state-mapclj/s

(component->state-map this)

Returns the current value of the state map via a component instance. Note that it is not safe to render arbitrary data from the state map since Fulcro will have no idea that it should refresh a component that does so; however, it is sometimes useful to look at the state map for information that doesn't change over time.

Returns the current value of the state map via a component instance. Note that it is not safe to render
arbitrary data from the state map since Fulcro will have no idea that it should refresh a component that
does so; however, it is sometimes useful to look at the state map for information that doesn't
change over time.
sourceraw docstring

component-class?clj/s

(component-class? x)

Returns true if the argument is a component class.

Returns true if the argument is a component class.
sourceraw docstring

component-instance?clj/s

(component-instance? x)

Returns true if the argument is a component. A component is defined as a mounted component. This function returns false for component classes, and also returns false for the output of a Fulcro component factory.

Returns true if the argument is a component. A component is defined as a *mounted component*.
This function returns false for component classes, and also returns false for the output of a Fulcro component factory.
sourceraw docstring

component-nameclj/s

Returns a string version of the given react component's name. Works on component instances and classes.

Returns a string version of the given react component's name. Works on component instances and classes.
sourceraw docstring

component-optionsclj/s

Returns the map of options that was specified (via defsc) for the component class.

Returns the map of options that was specified (via `defsc`) for the component class.
sourceraw docstring

component?clj/s

Returns true if the argument is a component instance.

DEPRECATED for terminology clarity. Use component-instance? instead.

Returns true if the argument is a component instance.

DEPRECATED for terminology clarity. Use `component-instance?` instead.
sourceraw docstring

compressible-transact!clj/s

(compressible-transact! app-ish tx)
(compressible-transact! app-ish ref tx)

Identical to transact! with :compressible? true option. This means that if more than one adjacent history transition edge is compressible, only the more recent of the sequence of them is kept. This is useful for things like form input fields, where storing every keystoke in history is undesirable. This also compress the transactions in Fulcro Inspect.

NOTE: history events that trigger remote interactions are not compressible, since they may be needed for automatic network error recovery handling.

Identical to `transact!` with `:compressible? true` option. This means that if more than one
adjacent history transition edge is compressible, only the more recent of the sequence of them is kept. This
is useful for things like form input fields, where storing every keystoke in history is undesirable. This
also compress the transactions in Fulcro Inspect.

NOTE: history events that trigger remote interactions are not compressible, since they may be needed for
automatic network error recovery handling.
sourceraw docstring

computedclj/s

[props computed-map]

Add computed properties to props. This will replace any pre-existing computed properties. Computed props are necessary when a parent component wishes to pass callbacks or other data to children that have a query. This is not necessary for "stateless" components, though it will work properly for both.

Computed props are "remembered" so that a targeted update (which can only happen on a component with a query and ident) can use new props from the database without "losing" the computed props that were originally passed from the parent. If you pass things like callbacks through normal props, then targeted updates will seem to "lose track of" them.

[props computed-map]

Add computed properties to props. This will *replace* any pre-existing computed properties. Computed props are
necessary when a parent component wishes to pass callbacks or other data to children that *have a query*. This
is not necessary for "stateless" components, though it will work properly for both.

Computed props are "remembered" so that a targeted update (which can only happen on a component with a query
and ident) can use new props from the database without "losing" the computed props that were originally passed
from the parent. If you pass things like callbacks through normal props, then targeted updates will seem to "lose
track of" them.
sourceraw docstring

computed-factoryclj/s

(computed-factory class)
(computed-factory class options)

Similar to factory, but returns a function with the signature [props computed & children] instead of default [props & children]. This makes easier to send computed.

Similar to factory, but returns a function with the signature
[props computed & children] instead of default [props & children].
This makes easier to send computed.
sourceraw docstring

computed-initial-state?clj/s

(computed-initial-state? s)

Returns true if the given initial state was returned from a call to get-initial-state. This is used by internal algorithms when interpreting initial state shorthand in defsc.

Returns true if the given initial state was returned from a call to get-initial-state. This is used by internal
algorithms when interpreting initial state shorthand in `defsc`.
sourceraw docstring

configure-component!clj/s

(configure-component! cls fqkw options)

Configure the given cls (a function) to act as a react component within the Fulcro ecosystem.

cls - A js function (in clj, this is ignored) fqkw - A keyword that shares the exact fully-qualified name of the component class options - A component options map (no magic) containing things like :query and :ident.

NOTE: the options map expects proper function signatures for:

:query - (fn [this] ...) :ident - (fn [this props] ...) :initial-state - (fn [cls params] ...)

Returns (and registers) a new react class.

Configure the given `cls` (a function) to act as a react component within the Fulcro ecosystem.

cls - A js function (in clj, this is ignored)
fqkw - A keyword that shares the exact fully-qualified name of the component class
options - A component options map (no magic) containing things like `:query` and `:ident`.


NOTE: the `options` map expects proper function signatures for:

`:query` - (fn [this] ...)
`:ident` - (fn [this props] ...)
`:initial-state` - (fn [cls params] ...)

Returns (and registers) a new react class.
sourceraw docstring

configure-hooks-component!clj/s

(configure-hooks-component! f options)

Configure a function (f [this fulcro-props] ...) to work properly as a hook-based react component. This can be used in leiu of defsc to create a component, where options is the (non-magic) map of component options (i.e. :query is a (fn [this]), not a vector).

IMPORTANT: Your options must include :componentName, a fully-qualified keyword to use in the component registry.

Returns a new function that wraps yours (to properly extract Fulcro props) and installs the proper Fulcro component options on the low-level function so that it will act properly when used within React as a hook-based component.

(def MyComponent (configure-hooks-component! (fn [this props] (let [[v set-v!] (use-state this 0) (dom/div ...))) {:query ... :ident (fn [_ props] ...) :componentName ::MyComponent}))

(def ui-my-component (comp/factory MyComponent {:keyfn :id})

This can be used to easily generate dynamic components at runtime (as can configure-component!).

Configure a function `(f [this fulcro-props] ...)` to work properly as a hook-based react component. This can be
used in leiu of `defsc` to create a component, where `options` is the (non-magic) map of component options
(i.e. :query is a `(fn [this])`, not a vector).

IMPORTANT: Your options must include `:componentName`, a fully-qualified keyword to use in the component registry.

Returns a new function that wraps yours (to properly extract Fulcro props) and installs the proper Fulcro component
options on the low-level function so that it will act properly when used within React as a hook-based component.

(def MyComponent
  (configure-hooks-component!
    (fn [this props]
      (let [[v set-v!] (use-state this 0)
        (dom/div ...)))
    {:query ... :ident (fn [_ props] ...) :componentName ::MyComponent}))

(def ui-my-component (comp/factory MyComponent {:keyfn :id})

This can be used to easily generate dynamic components at runtime (as can `configure-component!`).
sourceraw docstring

current-configclj

(current-config)
source

defscclj/smacro

(defsc & args)

Define a stateful component. This macro emits a React UI class with a query, optional ident (if :ident is specified in options), optional initial state, optional css, lifecycle methods, and a render method. It can also cause the class to implement additional protocols that you specify. Destructuring is supported in the argument list.

The template (data-only) versions do not have any arguments in scope The lambda versions have arguments in scope that make sense for those lambdas, as listed below:

(defsc Component [this {:keys [db/id x] :as props} {:keys [onSelect] :as computed} extended-args]
  {
   ;; stateful component options
   ;; query template is literal. Use the lambda if you have ident-joins or unions.
   :query [:db/id :x] ; OR (fn [] [:db/id :x]) ; this in scope
   ;; ident template is table name and ID property name
   :ident [:table/by-id :id] ; OR (fn [] [:table/by-id id]) ; this and props in scope
   ;; initial-state template is magic..see dev guide. Lambda version is normal.
   :initial-state {:x :param/x} ; OR (fn [params] {:x (:x params)}) ; nothing is in scope
   ;; pre-merge, use a lamba to modify new merged data with component needs
   :pre-merge (fn [{:keys [data-tree current-normalized state-map query]}] (merge {:ui/default-value :start} data-tree))

   ; React Lifecycle Methods (for the default, class-based components)
   :initLocalState            (fn [this props] ...) ; CAN BE used to call things as you might in a constructor. Return value is initial state.
   :shouldComponentUpdate     (fn [this next-props next-state] ...)

   :componentDidUpdate        (fn [this prev-props prev-state snapshot] ...) ; snapshot is optional, and is 16+. Is context for 15
   :componentDidMount         (fn [this] ...)
   :componentWillUnmount      (fn [this] ...)

   ;; DEPRECATED IN REACT 16 (to be removed in 17):
   :componentWillReceiveProps        (fn [this next-props] ...)
   :componentWillUpdate              (fn [this next-props next-state] ...)
   :componentWillMount               (fn [this] ...)

   ;; Replacements for deprecated methods in React 16.3+
   :UNSAFE_componentWillReceiveProps (fn [this next-props] ...)
   :UNSAFE_componentWillUpdate       (fn [this next-props next-state] ...)
   :UNSAFE_componentWillMount        (fn [this] ...)

   ;; ADDED for React 16:
   :componentDidCatch         (fn [this error info] ...)
   :getSnapshotBeforeUpdate   (fn [this prevProps prevState] ...)

   ;; static.
   :getDerivedStateFromProps  (fn [props state] ...)

   ;; ADDED for React 16.6:
   ;; NOTE: The state returned from this function can either be:
   ;; a raw js map, where Fulcro's state is in a sub-key: `#js {"fulcro$state" {:fulcro :state}}`.
   ;; or a clj map. In either case this function will *overwrite* Fulcro's component-local state, which is
   ;; slighly different behavior than raw React (we have no `this`, so we cannot read Fulcro's state to merge it).
   :getDerivedStateFromError  (fn [error] ...)

   NOTE: shouldComponentUpdate should generally not be overridden other than to force it false so
   that other libraries can control the sub-dom. If you do want to implement it, then old props can
   be obtained from (prim/props this), and old state via (gobj/get (. this -state) "fulcro$state").
   
   ; React Hooks support
   ;; if true, creates a function-based instead of a class-based component, see the Developer's Guide for details
   :use-hooks? true

   ; BODY forms. May be omitted IFF there is an options map, in order to generate a component that is used only for queries/normalization.
   (dom/div #js {:onClick onSelect} x))

NOTE: The options map is "open". That is: you can add whatever extra stuff you want to in order to co-locate data for component-related concerns. This is exactly what component-local css, the dynamic router, and form-state do. The data that you add is available from comp/component-options on the component class and instances (i.e. this).

See the Developer's Guide at book.fulcrologic.com for more details.

Define a stateful component. This macro emits a React UI class with a query,
optional ident (if :ident is specified in options), optional initial state, optional css, lifecycle methods,
and a render method. It can also cause the class to implement additional protocols that you specify. Destructuring is
supported in the argument list.

The template (data-only) versions do not have any arguments in scope
The lambda versions have arguments in scope that make sense for those lambdas, as listed below:

```
(defsc Component [this {:keys [db/id x] :as props} {:keys [onSelect] :as computed} extended-args]
  {
   ;; stateful component options
   ;; query template is literal. Use the lambda if you have ident-joins or unions.
   :query [:db/id :x] ; OR (fn [] [:db/id :x]) ; this in scope
   ;; ident template is table name and ID property name
   :ident [:table/by-id :id] ; OR (fn [] [:table/by-id id]) ; this and props in scope
   ;; initial-state template is magic..see dev guide. Lambda version is normal.
   :initial-state {:x :param/x} ; OR (fn [params] {:x (:x params)}) ; nothing is in scope
   ;; pre-merge, use a lamba to modify new merged data with component needs
   :pre-merge (fn [{:keys [data-tree current-normalized state-map query]}] (merge {:ui/default-value :start} data-tree))

   ; React Lifecycle Methods (for the default, class-based components)
   :initLocalState            (fn [this props] ...) ; CAN BE used to call things as you might in a constructor. Return value is initial state.
   :shouldComponentUpdate     (fn [this next-props next-state] ...)

   :componentDidUpdate        (fn [this prev-props prev-state snapshot] ...) ; snapshot is optional, and is 16+. Is context for 15
   :componentDidMount         (fn [this] ...)
   :componentWillUnmount      (fn [this] ...)

   ;; DEPRECATED IN REACT 16 (to be removed in 17):
   :componentWillReceiveProps        (fn [this next-props] ...)
   :componentWillUpdate              (fn [this next-props next-state] ...)
   :componentWillMount               (fn [this] ...)

   ;; Replacements for deprecated methods in React 16.3+
   :UNSAFE_componentWillReceiveProps (fn [this next-props] ...)
   :UNSAFE_componentWillUpdate       (fn [this next-props next-state] ...)
   :UNSAFE_componentWillMount        (fn [this] ...)

   ;; ADDED for React 16:
   :componentDidCatch         (fn [this error info] ...)
   :getSnapshotBeforeUpdate   (fn [this prevProps prevState] ...)

   ;; static.
   :getDerivedStateFromProps  (fn [props state] ...)

   ;; ADDED for React 16.6:
   ;; NOTE: The state returned from this function can either be:
   ;; a raw js map, where Fulcro's state is in a sub-key: `#js {"fulcro$state" {:fulcro :state}}`.
   ;; or a clj map. In either case this function will *overwrite* Fulcro's component-local state, which is
   ;; slighly different behavior than raw React (we have no `this`, so we cannot read Fulcro's state to merge it).
   :getDerivedStateFromError  (fn [error] ...)

   NOTE: shouldComponentUpdate should generally not be overridden other than to force it false so
   that other libraries can control the sub-dom. If you do want to implement it, then old props can
   be obtained from (prim/props this), and old state via (gobj/get (. this -state) "fulcro$state").
   
   ; React Hooks support
   ;; if true, creates a function-based instead of a class-based component, see the Developer's Guide for details
   :use-hooks? true

   ; BODY forms. May be omitted IFF there is an options map, in order to generate a component that is used only for queries/normalization.
   (dom/div #js {:onClick onSelect} x))
```

NOTE: The options map is "open". That is: you can add whatever extra stuff you want to in order
to co-locate data for component-related concerns. This is exactly what component-local css, the
dynamic router, and form-state do.  The data that you add is available from `comp/component-options`
on the component class and instances (i.e. `this`).

See the Developer's Guide at book.fulcrologic.com for more details.
sourceraw docstring

defsc*clj

(defsc* env args)
source

denormalize-queryclj/s

source

depthclj/s

(depth this)
source

external-configclj/s

source

factoryclj/s

(factory class)
(factory class {:keys [keyfn qualifier] :as opts})

Create a factory constructor from a component class created with defsc.

Create a factory constructor from a component class created with
defsc.
sourceraw docstring

force-childrenclj/s

(force-children x)

Utility function that will force a lazy sequence of children (recursively) into realized vectors (React cannot deal with lazy seqs in production mode)

Utility function that will force a lazy sequence of children (recursively) into realized
vectors (React cannot deal with lazy seqs in production mode)
sourceraw docstring

fragmentclj/s

(fragment & args)

Wraps children in a React.Fragment. Props are optional, like normal DOM elements.

Wraps children in a React.Fragment. Props are optional, like normal DOM elements.
sourceraw docstring

get-classclj/s

Returns the react type (component class) of the given React element (instance). Is identity if used on a class.

Returns the react type (component class) of the given React element (instance). Is identity if used on a class.
sourceraw docstring

get-computedclj/s

Return the computed properties on a component or its props. Note that it requires that the normal properties are not nil.

Return the computed properties on a component or its props. Note that it requires that the normal properties are not nil.
sourceraw docstring

get-extra-propsclj/s

(get-extra-props this)

Get any data (as a map) that props extensions have associated with the given Fulcro component. Extra props will be empty unless you've installed props-middleware (on your app) that sets them.

Get any data (as a map) that props extensions have associated with the given Fulcro component. Extra props will
be empty unless you've installed props-middleware (on your app) that sets them.
sourceraw docstring

get-identclj/s

[x] [class props]

Get the ident for a mounted component OR using a component class.

That arity-2 will return the ident using the supplied props map.

The single-arity version should only be used with a mounted component (e.g. this from render), and will derive the props that were sent to it most recently.

[x] [class props]

Get the ident for a mounted component OR using a component class.

That arity-2 will return the ident using the supplied props map.

The single-arity version should only be used with a mounted component (e.g. `this` from `render`), and will derive the
props that were sent to it most recently.
sourceraw docstring

get-indexesclj/s

(get-indexes x)

Get all of the indexes from a component instance or app. See also ident->any, class->any, etc.

Get all of the indexes from a component instance or app. See also `ident->any`, `class->any`, etc.
sourceraw docstring

get-initial-stateclj/s

[cls] [cls params]

Get the declared :initial-state value for a component.

[cls] [cls params]

Get the declared :initial-state value for a component.
sourceraw docstring

get-parentclj/s

(get-parent this)
(get-parent this n)

Returns the nth parent of this (a React element). The optional n can be 0 (the immediate parent) or any positive integer. If this walks past root then this function returns nil.

Returns the nth parent of `this` (a React element). The optional `n` can be 0 (the immediate parent) or any positive
integer. If this walks past root then this function returns nil.
sourceraw docstring

get-queryclj/s

(get-query class-or-factory)
(get-query class-or-factory state-map)

Get the query for the given class or factory. If called without a state map, then you'll get the declared static query of the class. If a state map is supplied, then the dynamically set queries in that state will result in the current dynamically-set query according to that state.

Get the query for the given class or factory. If called without a state map, then you'll get the declared static
query of the class. If a state map is supplied, then the dynamically set queries in that state will result in
the current dynamically-set query according to that state.
sourceraw docstring

get-query-by-idclj/s

source

get-raw-react-propclj/s

(get-raw-react-prop c k)

GET a RAW react prop. Used internally. Safe in CLJC, but equivalent to (gobj/getValueByKeys this "props" (name k).

GET a RAW react prop. Used internally. Safe in CLJC, but equivalent to `(gobj/getValueByKeys this "props" (name k)`.
sourceraw docstring

get-stateclj/s

(get-state component)
(get-state component k-or-ks)

Get a component's local state. May provide a single key or a sequential collection of keys for indexed access into the component's local state. NOTE: This is Fulcro's wrapped component local state. The low-level React state is as described in the React docs (e.g. (.-state this)).

Get a component's local state. May provide a single key or a sequential
collection of keys for indexed access into the component's local state. NOTE: This is Fulcro's wrapped component
local state. The low-level React state is as described in the React docs (e.g. `(.-state this)`).
sourceraw docstring

has-feature?clj/s

(has-feature? component option-key)
source

has-ident?clj/s

(has-ident? component)
source

has-initial-app-state?clj/s

(has-initial-app-state? component)
source

has-pre-merge?clj/s

(has-pre-merge? component)
source

has-query?clj/s

(has-query? component)
source

identclj/s

(ident this props)
source

ident->anyclj/s

(ident->any x ident)

Return some (random) on-screen components that uses the given ident. x is anything any->app accepts.

Return some (random) on-screen components that uses the given ident. `x` is anything any->app accepts.
sourceraw docstring

ident->componentsclj/s

(ident->components x ident)

Return all on-screen component instances that are rendering the data for a given ident. x is anything any->app accepts.

Return all on-screen component instances that are rendering the data for a given ident. `x` is anything any->app accepts.
sourceraw docstring

initial-stateclj/s

(initial-state clz params)
source

is-factory?clj/s

(is-factory? class-or-factory)

Returns true if the given argument is a component factory.

Returns true if the given argument is a component factory.
sourceraw docstring

isogetclj/s

Like get, but for js objects, and in CLJC. In clj, it is just get. In cljs it is gobj/get.

Like get, but for js objects, and in CLJC. In clj, it is just `get`. In cljs it is
`gobj/get`.
sourceraw docstring

isoget-inclj/s

Like get-in, but for js objects, and in CLJC. In clj, it is just get-in. In cljs it is gobj/getValueByKeys.

Like get-in, but for js objects, and in CLJC. In clj, it is just get-in. In cljs it is
gobj/getValueByKeys.
sourceraw docstring

Part of internal implementation of dynamic queries.

Part of internal implementation of dynamic queries.
sourceraw docstring

Part of dyn query implementation. Find all of the elements (only at the top level) of the given query and replace them with their query ID.

Part of dyn query implementation. Find all of the elements (only at the top level) of the given query and replace them
with their query ID.
sourceraw docstring

make-state-mapclj/s

(make-state-map initial-state children-by-query-key params)

Build a component's initial state using the defsc initial-state-data from options, the children from options, and the params from the invocation of get-initial-state.

Build a component's initial state using the defsc initial-state-data from
options, the children from options, and the params from the invocation of get-initial-state.
sourceraw docstring

mounted?clj/s

(mounted? this)

Returns true if the given component instance is mounted on the DOM.

Returns true if the given component instance is mounted on the DOM.
sourceraw docstring

newer-propsclj/s

[props-a props-b]

Returns whichever of the given Fulcro props were most recently generated according to denormalization-time. This is part of props 'tunnelling', an optimization to get updated props to instances without going through the root.

[props-a props-b]

Returns whichever of the given Fulcro props were most recently generated according to `denormalization-time`. This
is part of props 'tunnelling', an optimization to get updated props to instances without going through the root.
sourceraw docstring

normalize-queryclj/s

Given a state map and a query, returns a state map with the query normalized into the database. Query fragments that already appear in the state will not be added. Part of dynamic query implementation.

Given a state map and a query, returns a state map with the query normalized into the database. Query fragments
that already appear in the state will not be added.  Part of dynamic query implementation.
sourceraw docstring

normalize-query-elementsclj/s

Part of internal implementation of dynamic queries.

Determines if there are query elements in the query that need to be normalized. If so, it does so.

Returns the new state map containing potentially-updated normalized queries.

Part of internal implementation of dynamic queries.

Determines if there are query elements in the `query` that need to be normalized. If so, it does so.

Returns the new state map containing potentially-updated normalized queries.
sourceraw docstring

pre-mergeclj/s

(pre-merge this data)
source

prop->classesclj/s

(prop->classes x prop)

Get all component classes that query for the given prop. x can be anything any->app is ok with.

Returns all classes that query for that prop (or ident)

Get all component classes that query for the given prop.
`x` can be anything `any->app` is ok with.

Returns all classes that query for that prop (or ident)
sourceraw docstring

propsclj/s

Return a component's props.

Return a component's props.
sourceraw docstring

ptransact!clj/s

(ptransact! component-or-app tx)
(ptransact! component-or-app ref tx)

DEPRECATED: Generally use result-action in mutations to chain sequences instead. This call is equivalent to transact! with an :optimistic? false option.

Like transact!, but ensures each call completes (in a full-stack, pessimistic manner) before the next call starts in any way. Note that two calls of this function have no guaranteed relationship to each other. They could end up intermingled at runtime. The only guarantee is that for a single call to ptransact!, the calls in the given tx will run pessimistically (one at a time) in the order given. Follow-on reads in the given transaction will be repeated after each remote interaction.

component-or-app a mounted component or the app tx the tx to run ref the ident (ref context) in which to run the transaction (including all deferrals)

DEPRECATED: Generally use `result-action` in mutations to chain sequences instead. This call is equivalent
to `transact!` with an `:optimistic? false` option.

Like `transact!`, but ensures each call completes (in a full-stack, pessimistic manner) before the next call starts
in any way. Note that two calls of this function have no guaranteed relationship to each other. They could end up
intermingled at runtime. The only guarantee is that for *a single call* to `ptransact!`, the calls in the given tx will run
pessimistically (one at a time) in the order given. Follow-on reads in the given transaction will be repeated after each remote
interaction.

`component-or-app` a mounted component or the app
`tx` the tx to run
`ref` the ident (ref context) in which to run the transaction (including all deferrals)
sourceraw docstring

queryclj/s

(query this)
source

query-idclj/s

Returns a string ID for the query of the given class with qualifier.

Returns a string ID for the query of the given class with qualifier.
sourceraw docstring

raw->newest-propsclj/s

(raw->newest-props raw-props raw-state)

Using raw react props/state returns the newest Fulcro props. This is part of "props tunneling", where component local state is leveraged as a communication mechanism of updated props directly to a component that has an ident. This function will return the correct version of props based on timestamps.

Using raw react props/state returns the newest Fulcro props. This is part of "props tunneling", where component
local state is leveraged as a communication mechanism of updated props directly to a component that has an ident.
This function will return the correct version of props based on timestamps.
sourceraw docstring

react-typeclj/s

(react-type x)

Returns the component type, regardless of whether the component has been mounted

Returns the component type, regardless of whether the component has been
mounted
sourceraw docstring

refresh-component!clj/s

(refresh-component! component)

Request that the given subtree starting a component be refreshed from the app database without re-rendering any parent. This is a synchronous call that will tunnel the props to the given component via an internal call to React setState.

Request that the given subtree starting a component be refreshed from the app database without re-rendering any parent. This
is a synchronous call that will tunnel the props to the given component via an internal call to React setState.
sourceraw docstring

refresh-dynamic-queries!clj/s

(refresh-dynamic-queries! app-ish)
(refresh-dynamic-queries! app-ish cls force?)

Refresh the current dynamic queries in app state to reflect any updates to the static queries of the components.

This can be used at development time to update queries that have changed but that hot code reload does not reflect (because there is a current saved query in state). This is not always what you want, since a component may have a custom query whose prop-level elements are set to a particular thing on purpose.

An component that has :preserve-dynamic-query? true in its component options will be ignored by this function.

Refresh the current dynamic queries in app state to reflect any updates to the static queries of the components.

This can be used at development time to update queries that have changed but that hot code reload does not
reflect (because there is a current saved query in state). This is *not* always what you want, since a component
may have a custom query whose prop-level elements are set to a particular thing on purpose.

An component that has `:preserve-dynamic-query? true` in its component options will be ignored by
this function.
sourceraw docstring

register-component!clj/s

[k component-class]

Add a component to Fulcro's component registry. This is used by defsc to ensure that all Fulcro classes that have been compiled (transitively required) will be accessible for lookup by fully-qualified symbol/keyword. Not meant for public use, unless you're creating your own component macro that doesn't directly leverage defsc.

[k component-class]

Add a component to Fulcro's component registry.  This is used by defsc to ensure that all Fulcro classes
that have been compiled (transitively required) will be accessible for lookup by fully-qualified symbol/keyword.
Not meant for public use, unless you're creating your own component macro that doesn't directly leverage defsc.
sourceraw docstring

registry-key->classclj/s

Look up the given component in Fulcro's global component registry. Will only be able to find components that have been (transitively) required by your application.

classname can be a fully-qualified keyword or symbol.

Look up the given component in Fulcro's global component registry. Will only be able to find components that have
been (transitively) required by your application.

`classname` can be a fully-qualified keyword or symbol.
sourceraw docstring

set-query!clj/s

(set-query! x class-or-factory {:keys [query params] :as opts})

Public API for setting a dynamic query on a component. This function alters the query and rebuilds internal indexes.

  • x : is anything that any->app accepts.
  • class-or-factory : A component class or factory for that class (if using query qualifiers)
  • opts : A map with query and optionally params (substitutions on queries)
Public API for setting a dynamic query on a component. This function alters the query and rebuilds internal indexes.

* `x` : is anything that any->app accepts.
* `class-or-factory` : A component class or factory for that class (if using query qualifiers)
* `opts` : A map with `query` and optionally `params` (substitutions on queries)
sourceraw docstring

set-query*clj/s

(set-query* state-map class-or-factory {:keys [query] :as args})

Put a query in app state.

NOTE: Indexes must be rebuilt after setting a query, so this function should primarily be used to build up an initial app state.

Put a query in app state.

NOTE: Indexes must be rebuilt after setting a query, so this function should primarily be used to build
up an initial app state.
sourceraw docstring

set-state!clj/s

(set-state! component new-state)
(set-state! component new-state callback)

Set React component-local state. The new-state is actually merged with the existing state (as per React docs), but is wrapped so that cljs maps are used (instead of js objs). callback is an optional callback that will be called as per the React docs on setState.

Set React component-local state.  The `new-state` is actually merged with the existing state (as per React docs),
but is wrapped so that cljs maps are used (instead of js objs).  `callback` is an optional callback that will be
called as per the React docs on setState.
sourceraw docstring

sharedclj/s

(shared)
(shared comp-or-app)
(shared comp-or-app k-or-ks)

Return the global shared properties of the root. See :shared and :shared-fn app options. NOTE: Shared props only update on root render and by explicit calls to app/update-shared!.

This function attempts to rely on the dynamic var shared (first), but will make a best-effort of finding shared props when run within a component's render or lifecycle. Passing your app will ensure this returns the current shared props.

Return the global shared properties of the root. See :shared and
:shared-fn app options. NOTE: Shared props only update on root render and by explicit calls to
`app/update-shared!`.

This function attempts to rely on the dynamic var *shared* (first), but will make a best-effort of
finding shared props when run within a component's render or lifecycle. Passing your app will
ensure this returns the current shared props.
sourceraw docstring

transact!clj/s

(transact! app-or-comp tx)
(transact! app-or-component tx options)

Submit a transaction for processing.

The underlying transaction system is pluggable, but the default supported options are:

  • :optimistic? - boolean. Should the transaction be processed optimistically?
  • :ref - ident. The ident of the component used to submit this transaction. This is set automatically if you use a component to call this function.
  • :component - React element. Set automatically if you call this function using a component.
  • :refresh - Vector containing idents (of components) and keywords (of props). Things that have changed and should be re-rendered on screen. Only necessary when the underlying rendering algorithm won't auto-detect, such as when UI is derived from the state of other components or outside of the directly queried props. Interpretation depends on the renderer selected: The ident-optimized render treats these as "extras".
  • :only-refresh - Vector of idents/keywords. If the underlying rendering configured algorithm supports it: The components using these are the only things that will be refreshed in the UI. This can be used to avoid the overhead of looking for stale data when you know exactly what you want to refresh on screen as an extra optimization. Idents are not checked against queries.
  • :abort-id - An ID (you make up) that makes it possible (if the plugins you're using support it) to cancel the network portion of the transaction (assuming it has not already completed).
  • :compressible? - boolean. Check compressible-transact! docs.
  • :synchronous? - boolean. When turned on the transaction will run immediately on the calling thread. If run against a component then the props will be immediately tunneled back to the calling component, allowing for React (raw) input event handlers to behave as described in standard React Forms docs (uses setState behind the scenes). Any remote operations will still be queued as normal. Calling transact!! is a shorthand for this option. WARNING: ONLY the given component will be refreshed in the UI. If you have dependent data elsewhere in the UI you must either use transact! or schedule your own global render using app/schedule-render!. :after-render?- Wait until the next render completes before allowing this transaction to run. This can be used when callingtransact!from *within* another mutation to ensure that the effects of the current mutation finish before this transaction takes control of the CPU. This option defaults tofalse, butdefmutationcauses it to be set to true for any transactions run within mutation action sections. You can affect the default for this value in a dynamic scope by bindingrc/after-render` to true

NOTE: This function calls the application's tx! function (which is configurable). Fulcro 2 'follow-on reads' are supported by the default version and are added to the :refresh entries. Your choice of rendering algorithm will influence their necessity.

Returns the transaction ID of the submitted transaction.

Submit a transaction for processing.

The underlying transaction system is pluggable, but the *default* supported options are:

- `:optimistic?` - boolean. Should the transaction be processed optimistically?
- `:ref` - ident. The ident of the component used to submit this transaction. This is set automatically if you use a component to call this function.
- `:component` - React element. Set automatically if you call this function using a component.
- `:refresh` - Vector containing idents (of components) and keywords (of props). Things that have changed and should be re-rendered
  on screen. Only necessary when the underlying rendering algorithm won't auto-detect, such as when UI is derived from the
  state of other components or outside of the directly queried props. Interpretation depends on the renderer selected:
  The ident-optimized render treats these as "extras".
- `:only-refresh` - Vector of idents/keywords.  If the underlying rendering configured algorithm supports it: The
  components using these are the *only* things that will be refreshed in the UI.
  This can be used to avoid the overhead of looking for stale data when you know exactly what
  you want to refresh on screen as an extra optimization. Idents are *not* checked against queries.
- `:abort-id` - An ID (you make up) that makes it possible (if the plugins you're using support it) to cancel
  the network portion of the transaction (assuming it has not already completed).
- `:compressible?` - boolean. Check compressible-transact! docs.
- `:synchronous?` - boolean. When turned on the transaction will run immediately on the calling thread. If run against
a component then the props will be immediately tunneled back to the calling component, allowing for React (raw) input
event handlers to behave as described in standard React Forms docs (uses setState behind the scenes). Any remote operations
will still be queued as normal. Calling `transact!!` is a shorthand for this option. WARNING: ONLY the given component will
be refreshed in the UI. If you have dependent data elsewhere in the UI you must either use `transact!` or schedule
your own global render using `app/schedule-render!`.
` `:after-render?` - Wait until the next render completes before allowing this transaction to run. This can be used
when calling `transact!` from *within* another mutation to ensure that the effects of the current mutation finish
before this transaction takes control of the CPU. This option defaults to `false`, but `defmutation` causes it to
be set to true for any transactions run within mutation action sections. You can affect the default for this value
in a dynamic scope by binding `rc/*after-render*` to true

NOTE: This function calls the application's `tx!` function (which is configurable). Fulcro 2 'follow-on reads' are
supported by the default version and are added to the `:refresh` entries. Your choice of rendering algorithm will
influence their necessity.

Returns the transaction ID of the submitted transaction.
sourceraw docstring

transact!!clj/s

(transact!! component tx)
(transact!! component tx options)

Shorthand for exactly (transact! component tx (merge options {:synchronous? true})).

Runs a synchronous transaction, which is an optimized mode where the optimistic behaviors of the mutations in the transaction run on the calling thread, and new props are immediately made available to the calling component via "props tunneling" (a behind-the-scenes mechanism using js/setState).

This mode is meant to be used in form input event handlers, since React is designed to only work properly with raw DOM inputs via component-local state. This prevents things like the cursor jumping to the end of inputs unexpectedly.

WARNING: Using an app instead of a component in synchronous transactions makes no sense. You must pass a component that has an ident.

If you're using this, you can also set the compiler option:

:compiler-options {:external-config {:fulcro     {:wrap-inputs? false}}}

to turn off Fulcro DOM's generation of wrapped inputs (which try to solve this problem in a less-effective way).

WARNING: Synchronous rendering does not refresh the full UI, only the component.

Shorthand for exactly `(transact! component tx (merge options {:synchronous? true}))`.

Runs a synchronous transaction, which is an optimized mode where the optimistic behaviors of the mutations in the
transaction run on the calling thread, and new props are immediately made available to the calling component via
"props tunneling" (a behind-the-scenes mechanism using js/setState).

This mode is meant to be used in form input event handlers, since React is designed to only work properly with
raw DOM inputs via component-local state. This prevents things like the cursor jumping to the end of inputs
unexpectedly.

WARNING: Using an `app` instead of a component in synchronous transactions makes no sense. You must pass a component
that has an ident.

If you're using this, you can also set the compiler option:

```
:compiler-options {:external-config {:fulcro     {:wrap-inputs? false}}}
```

to turn off Fulcro DOM's generation of wrapped inputs (which try to solve this problem in a less-effective way).

WARNING: Synchronous rendering does *not* refresh the full UI, only the component.
sourceraw docstring

tunnel-props!clj/s

(tunnel-props! component new-props)

CLJS-only. When the component is mounted this will tunnel new-props to that component through React setState. If you're in an event handler, this means the tunnelling will be synchronous, and can be useful when updating props that could affect DOM inputs. This is typically used internally (see transact!!, and should generally not be used in applications unless it is a very advanced scenario and you've studied how this works. NOTE: You should tick! the application clock and bind denormalize-time when generating new-props so they are properly time-stamped by db->tree, or manually add time to new-props using fdn/with-time directly.

CLJS-only.  When the `component` is mounted this will tunnel `new-props` to that component through React `setState`. If you're in
an event handler, this means the tunnelling will be synchronous, and can be useful when updating props that could affect DOM
inputs. This is typically used internally (see `transact!!`, and should generally not be used in applications unless it is a very advanced
scenario and you've studied how this works. NOTE: You should `tick!` the application clock and bind *denormalize-time*
when generating `new-props` so they are properly time-stamped by `db->tree`, or manually add time to `new-props`
using `fdn/with-time` directly.
sourceraw docstring

update-state!clj/s

(update-state! component f)
(update-state! component f & args)

Update a component's local state. Similar to Clojure(Script)'s swap!

This function affects a managed cljs map maintained in React state. If you want to affect the low-level js state itself use React's own .setState directly on the component.

Update a component's local state. Similar to Clojure(Script)'s swap!

This function affects a managed cljs map maintained in React state.  If you want to affect the low-level
js state itself use React's own `.setState` directly on the component.
sourceraw docstring

use-fulcroclj/s

(use-fulcro js-props faux-class)

Allows you to use a plain function as a Fulcro-managed React hooks component.

  • js-props - The React js props from the parent.
  • faux-class - A Fulcro faux class, which is a fn that has had add-options! called on it.

Returns a cljs vector containing this and fulcro props. You should not use the returned this directly, as it is a placeholder.

Prefer defsc or configure-hooks-component! over using this directly.

Allows you to use a plain function as a Fulcro-managed React hooks component.

* `js-props` - The React js props from the parent.
* `faux-class` - A Fulcro faux class, which is a fn that has had `add-options!` called on it.

Returns a cljs vector containing `this` and fulcro `props`. You should *not* use the returned `this` directly,
as it is a placeholder.

Prefer `defsc` or `configure-hooks-component! over using this directly.`
sourceraw docstring

with-parent-contextclj/smacro

(with-parent-context outer-parent & body)

Wraps the given body with the correct internal bindings of the parent so that Fulcro internals will work when that body is embedded in unusual ways (e.g. as the body in a child-as-a-function React pattern).

(defsc X [this props]
  ...
  ;; WRONG:
  (some-react-thing {:child (fn [] (ui-fulcro-thing ...))})
  ;; CORRECT:
  (some-react-thing {:child (fn [] (with-parent-context this (ui-fulcro-thing ...)))})
Wraps the given body with the correct internal bindings of the parent so that Fulcro internals
will work when that body is embedded in unusual ways (e.g. as the body in a child-as-a-function
React pattern).

```
(defsc X [this props]
  ...
  ;; WRONG:
  (some-react-thing {:child (fn [] (ui-fulcro-thing ...))})
  ;; CORRECT:
  (some-react-thing {:child (fn [] (with-parent-context this (ui-fulcro-thing ...)))})
```
sourceraw docstring

wrap-update-extra-propsclj/s

(wrap-update-extra-props f)
(wrap-update-extra-props handler f)

Wrap the props middleware such that f is called to get extra props that should be placed in the extra-props arg of the component.

handler - (optional) The next item in the props middleware chain. f - A (fn [cls extra-props] new-extra-props)

f will be passed the class being rendered and the current map of extra props. It should augment those and return a new version.

Wrap the props middleware such that `f` is called to get extra props that should be placed
in the extra-props arg of the component.

`handler` - (optional) The next item in the props middleware chain.
`f` - A (fn [cls extra-props] new-extra-props)

`f` will be passed the class being rendered and the current map of extra props. It should augment
those and return a new version.
sourceraw docstring

wrapped-renderclj/s

(wrapped-render this real-render)

Run real-render, possibly through :render-middleware configured on your app.

Run `real-render`, possibly through :render-middleware configured on your app.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close