2019-04-26 10:30:02 +00:00
|
|
|
# React Features
|
|
|
|
|
|
|
|
Most React features should be usable from Reagent, even if Reagent doesn't
|
|
|
|
provide functions to use them directly.
|
|
|
|
|
2019-05-23 18:00:24 +00:00
|
|
|
## [Fragments](https://reactjs.org/docs/fragments.html)
|
|
|
|
|
|
|
|
JSX:
|
|
|
|
```js
|
2019-05-23 18:01:05 +00:00
|
|
|
function example() {
|
2019-05-23 18:00:24 +00:00
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<ChildA />
|
|
|
|
<ChildB />
|
|
|
|
<ChildC />
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Reagent:
|
|
|
|
```cljs
|
|
|
|
(defn example []
|
|
|
|
[:<>
|
|
|
|
[child-a]
|
|
|
|
[child-b]
|
|
|
|
[child-c]])
|
|
|
|
```
|
|
|
|
|
2019-05-23 18:00:35 +00:00
|
|
|
Reagent syntax follows [React Fragment short syntax](https://reactjs.org/docs/fragments.html#short-syntax).
|
2019-05-23 18:00:24 +00:00
|
|
|
|
2019-05-23 18:05:31 +00:00
|
|
|
## [Context](https://reactjs.org/docs/context.html)
|
2019-04-26 10:30:02 +00:00
|
|
|
|
|
|
|
```cljs
|
|
|
|
(defonce my-context (react/createContext "default"))
|
|
|
|
|
|
|
|
(def Provider (.-Provider my-context))
|
|
|
|
(def Consumer (.-Consumer my-context))
|
|
|
|
|
|
|
|
(r/render [:> Provider {:value "bar"}
|
|
|
|
[:> Consumer {}
|
|
|
|
(fn [v]
|
|
|
|
(r/as-element [:div "Context: " v]))]]
|
|
|
|
container)
|
|
|
|
```
|
|
|
|
|
|
|
|
Tests contain example of using old React lifecycle Context API (`context-wrapper` function):
|
|
|
|
[tests](https://github.com/reagent-project/reagent/blob/master/test/reagenttest/testreagent.cljs#L1141-L1165)
|
|
|
|
|
2019-05-23 18:05:31 +00:00
|
|
|
## [Error boundaries](https://reactjs.org/docs/error-boundaries.html)
|
2019-04-26 10:30:02 +00:00
|
|
|
|
|
|
|
You can use `ComponentDidCatch` lifecycle method with `create-class`:
|
|
|
|
|
|
|
|
```cljs
|
|
|
|
(defn error-boundary [comp]
|
|
|
|
(r/create-class
|
|
|
|
{:component-did-catch (fn [this e info]
|
|
|
|
(reset! error e))
|
|
|
|
:reagent-render (fn [comp]
|
|
|
|
(if @error
|
|
|
|
[:div
|
|
|
|
"Something went wrong."
|
|
|
|
[:button {:on-click #(reset! error nil)} "Try again"]]
|
|
|
|
comp))}))
|
|
|
|
```
|
|
|
|
|
2019-05-23 18:05:31 +00:00
|
|
|
## [Hooks](https://reactjs.org/docs/hooks-intro.html)
|
2019-04-26 10:30:02 +00:00
|
|
|
|
|
|
|
Hooks can't be used inside class components, and Reagent implementation creates
|
|
|
|
a class component from every function (i.e. Reagent component).
|
|
|
|
|
|
|
|
However, you can use React components using Hooks inside Reagent, or use
|
|
|
|
[hx](https://github.com/Lokeh/hx) components inside Reagent. Also, it is
|
|
|
|
possible to create React components from Reagent quite easily, because React
|
|
|
|
function component is just a function that happens to return React elements,
|
|
|
|
and `r/as-element` does just that:
|
|
|
|
|
|
|
|
```cljs
|
|
|
|
;; This is React function component. Can't use Ratoms here!
|
|
|
|
(defn example []
|
|
|
|
(let [[count set-count] (react/useState 0)]
|
|
|
|
(r/as-element
|
|
|
|
[:div
|
|
|
|
[:p "You clicked " count " times"]
|
|
|
|
[:button
|
|
|
|
{:on-click #(set-count inc)}
|
|
|
|
"Click"]])))
|
|
|
|
|
|
|
|
;; Reagent component
|
|
|
|
(defn reagent-component []
|
|
|
|
[:div
|
|
|
|
;; Note :> to use a function as React component
|
|
|
|
[:> example]])
|
|
|
|
```
|
|
|
|
|
|
|
|
If you need to pass RAtom state into these components, dereference them in
|
|
|
|
the Reagent components and pass the value (and if needed, function to update them)
|
|
|
|
as properties into the React function component.
|
|
|
|
|
2019-05-23 18:05:31 +00:00
|
|
|
## [Portals](https://reactjs.org/docs/portals.html)
|
2019-04-26 10:30:02 +00:00
|
|
|
|
|
|
|
```cljs
|
|
|
|
(defn reagent-component []
|
|
|
|
(r/create-class
|
|
|
|
{:render (fn [this]
|
|
|
|
(let [el (.. js/document (getElementById "portal-el"))]
|
|
|
|
(react-dom/createPortal (r/as-element [:div "foo"]) el)))}))
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
TODO: Can this be done without create-class and `:render`.
|
|
|
|
TODO: This might have problems handling Ratoms, test.
|
|
|
|
|
2019-05-23 18:05:31 +00:00
|
|
|
## [Hydrate](https://reactjs.org/docs/react-dom.html#hydrate)
|
2019-04-26 10:30:02 +00:00
|
|
|
|
|
|
|
```cljs
|
|
|
|
(react-dom/hydrate (r/as-element [main-component]) container)
|
|
|
|
```
|