A minimalistic ClojureScript interface to React.js http://reagent-project.github.io/
Go to file
Juho Teperi 2f2574fd67 Fix RAF bind on Node 2020-04-19 21:33:58 +03:00
.clj-kondo Add Kondo config and lint code 2020-02-05 22:48:54 +02:00
.github Update template words 2016-05-20 11:01:33 +10:00
demo Merge pull request #486 from reagent-project/bundle-test 2020-04-16 23:23:37 +03:00
doc Add react-transition-group example 2020-04-19 15:18:01 +03:00
examples React key with :> works now 2020-04-19 15:19:30 +03:00
lib Make it easier to use with webpack and node 2015-10-10 13:40:33 +02:00
logo Update README 2020-03-22 15:44:09 +02:00
outsite/public Use a README instead .keep for gh-pages 2015-02-09 15:02:16 +01:00
prerender/sitetools Improve test coverage 2020-03-22 16:25:32 +02:00
site/public Make h2 bigger 2015-12-21 08:14:11 +01:00
src Fix RAF bind on Node 2020-04-19 21:33:58 +03:00
test Implement #439, make RAtom print output readable 2020-04-17 00:37:47 +03:00
test-environments Add tests using Cljs bundle output with Karma 2020-04-16 22:45:51 +03:00
.gitignore Enable test coverage reports 2020-03-22 15:22:11 +02:00
CHANGELOG.md Fix #438, fix raf call in Firefox extenstion context 2020-04-19 14:51:12 +03:00
CONTRIBUTING.md Fix bad development doc link in CONTRIBUTING.md 2019-06-30 17:57:02 -04:00
LICENSE Rename LICENSE.md to LICENSE 2017-10-27 11:04:15 +03:00
README.md Update README.md 2020-03-24 11:42:15 +02:00
build-docs.sh Deploy site and docs from CircleCI 2018-04-16 19:52:47 +03:00
build-example-site.sh Try fixing docs/master build 2018-05-17 08:59:18 +03:00
circle.yml Add tests using Cljs bundle output with Karma 2020-04-16 22:45:51 +03:00
deps.edn Add tests using Cljs bundle output with Karma 2020-04-16 22:45:51 +03:00
package-lock.json Update package-lock 2020-04-16 22:46:32 +03:00
package.json Add tests using Cljs bundle output with Karma 2020-04-16 22:45:51 +03:00
prepare-tests.sh Use React 16 and simplify test setup 2018-04-03 10:33:01 +03:00
project.clj Release 0.10.0 2020-03-06 14:12:54 +02:00
run-tests.sh Add tests using Cljs bundle output with Karma 2020-04-16 22:45:51 +03:00
shadow-cljs.edn Add shadow-cljs dev setup 2019-11-19 21:57:21 +02:00

README.md

Reagent

CircleCI Clojars Project codecov cljdoc badge project chat

A simple ClojureScript interface to React.

Reagent provides a way to write efficient React components using (almost) nothing but plain ClojureScript functions.

Usage

To create a new Reagent project using Leiningen template simply run:

lein new reagent myproject

If you wish to only create the assets for ClojureScript without a Clojure backend then do the following instead:

lein new reagent-frontend myproject

This will setup a new Reagent project with some reasonable defaults, see here for more details.

To use Reagent in an existing project you add this to your dependencies in project.clj:

Clojars Project

This is all you need to do if you want the standard version of React. If you want to use your own build of React (or React from a CDN), you have to use :exclusions variant of the dependency, and also provide react and react-dom namespaces (by creating .cljs files with just ns form, or by adding your own :foreign-libs entries).

[reagent "0.x.x" :exclusions [cljsjs/react cljsjs/react-dom]]

Examples

Reagent uses Hiccup-like markup instead of React's sort-of html. It looks like this:

(defn some-component []
  [:div
   [:h3 "I am a component!"]
   [:p.someclass
    "I have " [:strong "bold"]
    [:span {:style {:color "red"}} " and red"]
    " text."]])

Reagent extends standard Hiccup in one way: it is possible to "squeeze" elements together by using a > character.

[:div
  [:p
    [:b "Nested Element"]]]

can be written as:

[:div>p>b "Nested Element"]

Since version 0.8: The :class attribute also supports collections of classes, and nil values are removed:

[:div {:class ["a-class" (when active? "active") "b-class"]}]

You can use one component inside another:

(defn calling-component []
  [:div "Parent component"
   [some-component]])

And pass properties from one component to another:

(defn child [name]
  [:p "Hi, I am " name])

(defn childcaller []
  [child "Foo Bar"])

You mount the component into the DOM like this:

(defn mountit []
  (rd/render [childcaller]
            (.-body js/document)))

assuming we have imported Reagent like this:

(ns example
  (:require [reagent.core :as r]
            [reagent.dom :as rd]))

State is handled using Reagent's version of atom, like this:

(defonce click-count (r/atom 0))

(defn state-ful-with-atom []
  [:div {:on-click #(swap! click-count inc)}
   "I have been clicked " @click-count " times."])

Any component that dereferences a reagent.core/atom will be automatically re-rendered.

If you want do some setting up when the component is first created, the component function can return a new function that will be called to do the actual rendering:

(defn timer-component []
  (let [seconds-elapsed (r/atom 0)]
    (fn []
      (js/setTimeout #(swap! seconds-elapsed inc) 1000)
      [:div
       "Seconds Elapsed: " @seconds-elapsed])))

This way you can avoid using React's lifecycle callbacks like getInitialState and componentWillMount most of the time.

But you can still use them if you want to, either using reagent.core/create-class or by attaching meta-data to a component function:

(defonce my-html (r/atom ""))

(defn plain-component []
  [:p "My html is " @my-html])

(def component-with-callback
  (with-meta plain-component
    {:component-did-mount
     (fn [this]
       (reset! my-html (.-innerHTML (reagent/dom-node this))))}))

See the examples directory for more examples.

Performance

React is pretty darn fast, and so is Reagent. It should even be faster than plain old javascript React a lot of the time, since ClojureScript allows us to skip a lot of unnecessary rendering (through judicious use of React's shouldComponentUpdate).

The ClojureScript overhead is kept down, thanks to lots of caching.

Code size is a little bigger than React.js, but still quite small. The todomvc example clocks in at roughly 79K gzipped, using advanced compilation.

About

The idea and some of the code for making components atom-like comes from pump. The reactive-atom idea (and some code) comes from reflex.

The license is MIT.