At the time of creating this feature we already had a way to create tooltips/popovers. And by tooltips/popovers I mean any visual component that appears on top of the base layer of the webapp in order to give more info or allow extra controls to a user.
But many designs had popovers that had some things in common:
In other words what we need is a popup.
So we decided to implement a special tooltip container that would host any popup.
To spawn a popup simply run
(rf/dispatch [::tooltip/register {:id "generic-popup"
:component :div}])
You should see a popup with an empty div inside.
You can further config this popup by modifying those config keys:
:component
- in real case you probably want to pass a symbol of a UI component. Like this:
(defn greet []
[:div "Hello everyone!"])
(rf/dispatch [::tooltip/register {:id "generic-popup"
:component greet}])
:argv
- if you want to pass arguments to your component, then populate this vector.
(defn greet [mname]
[:div (str "Hello " mname)])
(rf/dispatch [::tooltip/register {:id "generic-popup"
:component greet
:argv ["Magnet team"]}])
(rf/dispatch [::tooltip/register {:id "generic-popup"
:component :div
:argv [{:style {:background :tomato}}
"Hello!"]}])
:lightbox?
- Set to false if you don't want the semitransparent scrim outside of the popup
(defaults to true
):modal?
- Set to true
if you want any click outside of the popup to be ignored. (defaults to false
)
To close a popup simply run
(rf/dispatch [::tooltip/destroy-by-id "generic-popup"])
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close