SlideShare a Scribd company logo
ENJOYABLEFRONT-END DEVELOPMENT
WITH
REAGENT
@TH1AGOFM
@TH1AGOFM
@TH1AGOFM
A tale of excitement in Clojure
@TH1AGOFM
~2010
1.2
1 (defn factorial
2 ([n]
3 (factorial n 1))
4 ([n acc]
5 (if (= n 0) acc
6 (recur (dec n) (* acc n)))))
got inspired by the beauty of a factorial
implementation.
( )
@TH1AGOFM
Hped
@TH1AGOFM
got hyped by node.js and completely
forgot about clojure for a while
@TH1AGOFM
2013
(datomic: an awesome database)
Hped
@TH1AGOFM
hyped by elixir
@TH1AGOFM
2014
CLJS
FINALLY!
hyped by david nolen's talk about cljs
and Om, but felt it was too hard, so
tried reagent and enjoyed it!
@TH1AGOFM
KILLER APP FOR
CLOJURE
WHAT I WAS LOOKING FOR?
@TH1AGOFM
ENJOYMENT.
WHAT I’VE GOT INSTEAD:
Reagent(or Om) have to mature way
more to be a killer app, for this we
need a nice community around it.

But it’s very enjoyable to work with.
@TH1AGOFM
@TH1AGOFM
“You believe that, by early 2015, ReactJS had won
the JavaScript framework wars and you are curious
about the bigger implications. Is the combination of
reactive programming, functional programming and
immutable data going to completely change
everything? And, if so, what would that look like in
a language that embraces those paradigms?”
— Re-frame (Reagent framework for writing SPAs)
So, in this bold statement by re-frame
you can guess react.js is a great thing.
@TH1AGOFM
WHY REACT?
PROBLEM:
DOM WASN’T CREATED TO CREATE UI’S THAT ARE TOO DYNAMIC.
MOVING 1000 DIVS AROUND TAKES A LOT OF TIME.
SOLUTION:
INSTEAD OF MOVING ALL THOSE 1000 DIVS, ONE BY ONE, WE CAN COMPUTE THE NEW
STATE AND REPLACE IT ALL WITH THIS NEW STATE WITH THE SMALLEST AMOUNT OF
PERMUTATIONS.
1 BIG INSERT VS. 1000 SMALL INSERTS.
Here I show a project called memcached-
manager in angular.js(very old version) that I
do create trying to render 1000 divs/
memcached keys and completely freezing
the browser for a couple of seconds.

This is the problem that React tries to solve.
@TH1AGOFM
WHY REACT?
REACT SOLVES THIS PROBLEM BY
USING SOMETHING CALLED VIRTUAL
DOM.
@TH1AGOFM
THE ANATOMY OF A REACT
COMPONENT
1 React.createClass({
2 getInitialState: function() {
3 return {secondsElapsed: 0};
4 },
5 tick: function() {
6 this.setState({secondsElapsed: this.state.
7 secondsElapsed + 1});
8 },
9 componentDidMount: function() {
10 this.interval = setInterval(this.tick, 1000)
11 ;
12 },
13 componentWillUnmount: function() {
14 clearInterval(this.interval);
15 },
16 render: function() {
17 return (
18 <div>Seconds Elapsed: {this.state.
19 secondsElapsed}<
20 /div>
21 );
22 }
23 });
24
25 React.render(<Timer />, mountNode);
DECLARATIVE,
BUT TONS OF BOILERPLATE.
@TH1AGOFM
REACT ONLY TAKES CARE ABOUT THE V
OF THE MVC. IT’S JUST A LIBRARY.
@TH1AGOFM
SO, IT MAKES SENSE TO USE IT WITH
SOMETHING ELSE…
@TH1AGOFM
clojure(script) has a lot of power to
create powerful dsl’s
react has a declarative way to do
frontend development, is very fast but
have too much boilerplate.
REAGENT
reagent explores this nice spot with
both
@TH1AGOFM
IF YOU KNOW CLOJURE, YOU KNOW
REAGENT. (AND CLOJURESCRIPT)
@TH1AGOFM
IF YOU DON’T, IT’S A GOOD
PLAYGROUND TO BEGIN.
Here I show a demo of a project I wrote
specially for this talk, the demo link is in
the last slides, you can see for yourself.
FIGWHEEL, THE CLJS BROWSER REPL.
figwheel does:

cljs -> js

gives you a browser REPL
Here there’s a video where you see that
you can interact with the frontend you
build through this REPL
@TH1AGOFM
THE 2048 GAME WAS MADE USING THE
REAGENT-TEMPLATE.
(VERY EASY TO SET UP!)
@TH1AGOFM
247 (defn application-layout [rest]
248 [:div {:class "container"}
249 (heading-component)
250 [:p {:class "game-intro"} "Join the numbers
251 and get to the "
252 [:strong "2048 tile!"]]
253 [:div {:class "game-container"}
254 (when @game-over
255 [:div {:class "game-message game-over"}
256 [:p "Game over!" ]
257 [:div {:class "lower"}
258 [:a {:class "retry-button" :href "/"}
259 "Try again"]]])
260 rest]
261 (game-explanation-component)
262 [:hr]
263 (footer-component)])
272 (tile-component)]))







COMPONENTS
Components looks like HTML with
some clojure. Syntax is hiccup style.

Pretty simple.
@TH1AGOFM
COMPONENTS






224
225 (defn game-explanation-component []
226 [:p {:class "game-explanation"}
227 [:strong {:class "important"} "How to play:"]
228 " Use your "
229 [:strong "arrow keys"] " to move the tiles.
230 When two tiles with the same number touch,
231 they "
232 [:strong "merge into one!"]])
233
234 (defn footer-component []
235 [:p "n Created by "
236 [:a {:href "http://gabrielecirulli.com", :
237 target "_blank"} "Gabriele Cirulli."] "
238 Based on "
239 [:a {:href "https://itunes.apple.
240 com/us/app/1024!/id823499224", :target
241 "_blank"} "1024 by Veewo Studio"] " and
242 conceptually similar to "
243 [:a {:href "http://asherv.com/threes/", :
244 target "_blank"} "Threes by Asher
245 Vollmer."]])
246 

html, for real
@TH1AGOFM
TILES COMPONENT














215 (defn tile-component []
216 [:div {:class "tile-container"}
217 (remove nil? (map-indexed
218 (fn[y row-of-tiles]
219 (map-indexed
220 (fn[x tile]
221 (when (> tile 0)
222 [:div {:class (str
223 "tile tile-" tile " tile-position-
224 " (inc x) "-" (inc y))} tile]))
225 row-of-tiles))
226 @tiles))])

















15 (def empty-tiles
16 [[0 0 0 0]
17 [0 0 0 0]
18 [0 0 0 0]
19 [0 0 0 0]])
how does the game display the tiles
@TH1AGOFM
ROUTING
263 (footer-component)])
264
265 ;; -------------------------
266 ;; Pages
267
268 (defn start-game-page []
269 (application-layout
270 [:div
271 (grid-component)
272 (tile-component)]))
273
274 (defn current-page []
275 [:div [(session/get :current-page)]])
276
277 ;; -------------------------
278 ;; Routes
279 (secretary/set-config! :prefix "#")
280 (secretary/defroute "/" []
281 (session/put! :current-page #'start-game-page)
282 )
283
284 ;; -------------------------
285 ;; History
286 ;; must be called after routes have been
287 defined
288 (defn hook-browser-navigation! []
289 (doto (History.)
290 (events/listen
whenever you access /, it calls start-
game-page function.

game uses only this page, so this is
straightforward.
@TH1AGOFM
OK, THIS LOOKS PRETTY STATIC.
HOW DO I CHANGE A COMPONENT STATE?
@TH1AGOFM
(SOMETHING THAT HOLDS STATE)
@TH1AGOFM
247 (defn application-layout [rest]
248 [:div {:class "container"}
249 (heading-component)
250 [:p {:class "game-intro"} "Join the numbers
251 and get to the "
252 [:strong "2048 tile!"]]
253 [:div {:class "game-container"}
254 (when @game-over
255 [:div {:class "game-message game-over"}
256 [:p "Game over!" ]
257 [:div {:class "lower"}
258 [:a {:class "retry-button" :href "/"}
259 "Try again"]]])
260 rest]
261 (game-explanation-component)
262 [:hr]
263 (footer-component)])
272 (tile-component)]))







ATOMS
game-over is a atom/state, and using
the @ means we are reading it’s
content. This is called derefing in clojure

whenever game-over = true, it would
show what is nested inside it. a view
telling the game is over with the option
to retry.
@TH1AGOFM
(R)ATOMS
11
12 ;; -------------------------
13 ;; Definitions
14
15 (def empty-tiles
16 [[0 0 0 0]
17 [0 0 0 0]
18 [0 0 0 0]
19 [0 0 0 0]])
20 (def no-score-addition
21 0)
31
32 ;; -------------------------
33 ;; Atoms
34
35 (defonce score (atom 0))
36 (defonce score-addition (atom 0))
37 (defonce tiles (atom empty-tiles))
38 (defonce game-over (atom false))
39 











here I play with the atoms of the
game, seeing it update in the
browser(right side).

reagent atoms behave exactly as
clojure atoms so you can call swap!
and reset! on them, for more info
about that, read the docs from the
reagent project provided in the last
slide. (pst: it’s easy)
@TH1AGOFM
COMPONENTS + ATOMS = ALL YOU NEED.
not much secret to write the game
beyond that, check the readme of my
version of the game in github how I build
it having subpar clojure skills and
learned some stuff in the way.
@TH1AGOFM
1 React.createClass({
2 getInitialState: function() {
3 return {secondsElapsed: 0};
4 },
5 tick: function() {
6 this.setState({secondsElapsed: this.state.
7 secondsElapsed + 1});
8 },
9 componentDidMount: function() {
10 this.interval = setInterval(this.tick, 1000)
11 ;
12 },
13 componentWillUnmount: function() {
14 clearInterval(this.interval);
15 },
16 render: function() {
17 return (
18 <div>Seconds Elapsed: {this.state.
19 secondsElapsed}<
20 /div>
21 );
22 }
23 });
24
25 React.render(<Timer />, mountNode);
we don’t need that boilerplate, just use
reagent :)
@TH1AGOFM
IS MAGIC
@TH1AGOFM
THAT’S ALL FOLKS!
READ THE GUIDE:
http://reagent-project.github.io
USE THE TEMPLATE:
https://github.com/reagent-project/reagent-template
CHECK THE COOKBOOKS:
https://github.com/reagent-project/reagent-cookbook
MAKE YOUR OWN 2048:
https://github.com/thiagofm/reagent-2048
&& HAVE FUN!
shoot me an e-mail if you play with it
and have some kind of trouble,
thiagown@gmail.com

thanks!

More Related Content

What's hot (20)

PDF
Concurrency Concepts in Java
Doug Hawkins
 
PDF
The Ring programming language version 1.5.4 book - Part 59 of 185
Mahmoud Samir Fayed
 
PPTX
Angular2 rxjs
Christoffer Noring
 
PDF
論文紹介 Hyperkernel: Push-Button Verification of an OS Kernel (SOSP’17)
mmisono
 
PPT
E-Commerce Security - Application attacks - Server Attacks
phanleson
 
PPTX
Joker 2015 - Валеев Тагир - Что же мы измеряем?
tvaleev
 
PDF
Effective Modern C++ - Item 35 & 36
Chih-Hsuan Kuo
 
PDF
How To Crack RSA Netrek Binary Verification System
Jay Corrales
 
PDF
From Zero to Application Delivery with NixOS
Susan Potter
 
PDF
Use C++ to Manipulate mozSettings in Gecko
Chih-Hsuan Kuo
 
PDF
communication-systems-4th-edition-2002-carlson-solution-manual
amirhosseinozgoli
 
DOCX
Cinemàtica directa e inversa de manipulador
c3stor
 
PDF
How to recover malare assembly codes
FACE
 
PDF
Gilat_ch05.pdf
ArhamQadeer
 
PDF
The Ring programming language version 1.5 book - Part 5 of 31
Mahmoud Samir Fayed
 
ZIP
とある断片の超動的言語
Kiyotaka Oku
 
PDF
The Ring programming language version 1.3 book - Part 59 of 88
Mahmoud Samir Fayed
 
PDF
Concurrency in Go by Denys Goldiner.pdf
Denys Goldiner
 
PPT
bluespec talk
Suman Karumuri
 
PDF
Explain this!
Fabio Telles Rodriguez
 
Concurrency Concepts in Java
Doug Hawkins
 
The Ring programming language version 1.5.4 book - Part 59 of 185
Mahmoud Samir Fayed
 
Angular2 rxjs
Christoffer Noring
 
論文紹介 Hyperkernel: Push-Button Verification of an OS Kernel (SOSP’17)
mmisono
 
E-Commerce Security - Application attacks - Server Attacks
phanleson
 
Joker 2015 - Валеев Тагир - Что же мы измеряем?
tvaleev
 
Effective Modern C++ - Item 35 & 36
Chih-Hsuan Kuo
 
How To Crack RSA Netrek Binary Verification System
Jay Corrales
 
From Zero to Application Delivery with NixOS
Susan Potter
 
Use C++ to Manipulate mozSettings in Gecko
Chih-Hsuan Kuo
 
communication-systems-4th-edition-2002-carlson-solution-manual
amirhosseinozgoli
 
Cinemàtica directa e inversa de manipulador
c3stor
 
How to recover malare assembly codes
FACE
 
Gilat_ch05.pdf
ArhamQadeer
 
The Ring programming language version 1.5 book - Part 5 of 31
Mahmoud Samir Fayed
 
とある断片の超動的言語
Kiyotaka Oku
 
The Ring programming language version 1.3 book - Part 59 of 88
Mahmoud Samir Fayed
 
Concurrency in Go by Denys Goldiner.pdf
Denys Goldiner
 
bluespec talk
Suman Karumuri
 
Explain this!
Fabio Telles Rodriguez
 

Viewers also liked (20)

PPTX
The Growth of Google Direct Answers - A Dreamforce14 Presentation by Danny Su...
Search Engine Land
 
PDF
Oh CSS! - 5 Quick Things
Vishu Singh
 
PPT
Introduction to Go programming
Exotel
 
PDF
Learn basics of Clojure/script and Reagent
Maty Fedak
 
PDF
Functional Programming in Clojure
Troy Miles
 
PDF
Tech Talk: App Functionality (Android)
Lifeparticle
 
PDF
The Truth About: Black People and Their Place in World History, by Dr. Leroy ...
RBG Communiversity
 
PPTX
Reagents
Sri Nandan
 
PPTX
Introduction to Coding
St. Petersburg College
 
PDF
Why Game Developers Should Care About HTML5
Bramus Van Damme
 
PDF
Top 15 Expert Tech Predictions for 2015
Experts Exchange
 
PDF
Building offline web applications
Thoughtworks
 
PDF
The Future of Wearable Fitness
Anne Chen
 
PDF
Exploiting Deserialization Vulnerabilities in Java
CODE WHITE GmbH
 
PDF
Understanding Information Architecture
Dan Klyn
 
PDF
Internet Hall of Fame: Things to Know about the World of Internet Companies
World Startup Report
 
PDF
Impact-driven Scrum Delivery at Scrum gathering Phoenix 2015
Sara Lerén
 
PDF
Barely Enough Design
Marcello Duarte
 
PDF
Is your data on the cloud at risk?
SwiftTech Solutions, Inc.
 
PDF
3D 프린터 종류와 특징에 관한 리포트
규호 이
 
The Growth of Google Direct Answers - A Dreamforce14 Presentation by Danny Su...
Search Engine Land
 
Oh CSS! - 5 Quick Things
Vishu Singh
 
Introduction to Go programming
Exotel
 
Learn basics of Clojure/script and Reagent
Maty Fedak
 
Functional Programming in Clojure
Troy Miles
 
Tech Talk: App Functionality (Android)
Lifeparticle
 
The Truth About: Black People and Their Place in World History, by Dr. Leroy ...
RBG Communiversity
 
Reagents
Sri Nandan
 
Introduction to Coding
St. Petersburg College
 
Why Game Developers Should Care About HTML5
Bramus Van Damme
 
Top 15 Expert Tech Predictions for 2015
Experts Exchange
 
Building offline web applications
Thoughtworks
 
The Future of Wearable Fitness
Anne Chen
 
Exploiting Deserialization Vulnerabilities in Java
CODE WHITE GmbH
 
Understanding Information Architecture
Dan Klyn
 
Internet Hall of Fame: Things to Know about the World of Internet Companies
World Startup Report
 
Impact-driven Scrum Delivery at Scrum gathering Phoenix 2015
Sara Lerén
 
Barely Enough Design
Marcello Duarte
 
Is your data on the cloud at risk?
SwiftTech Solutions, Inc.
 
3D 프린터 종류와 특징에 관한 리포트
규호 이
 
Ad

Similar to Enjoyable Front-end Development with Reagent (20)

PDF
Introduction to Functional Reactive Web with Clojurescript
John Stevenson
 
PDF
ClojureScript - Making Front-End development Fun again - John Stevenson - Cod...
Codemotion
 
PDF
Progscon 2017: Taming the wild fronteer - Adventures in Clojurescript
John Stevenson
 
PDF
Functional (web) development with Clojure
Henrik Eneroth
 
PDF
Front-end God Mode with Reagent and Figwheel
David Kay
 
PDF
ClojureScript interfaces to React
Michiel Borkent
 
PDF
ClojureScript loves React, DomCode May 26 2015
Michiel Borkent
 
PPTX
React in Native Apps - Meetup React - 20150409
Minko3D
 
PDF
High Performance web apps in Om, React and ClojureScript
Leonardo Borges
 
PDF
Event streams all the way down
paulspencerwilliams
 
PDF
Integrating React.js with PHP projects
Ignacio Martín
 
PDF
React, GraphQL и Relay - вполне себе нормальный компонентный подход (nodkz)
Pavel Chertorogov
 
PDF
Reactive datastore demo (2020 03-21)
YangJerng Hwa
 
PPTX
Relay: Seamless Syncing for React (VanJS)
Brooklyn Zelenka
 
PPTX
Rethinking Best Practices
floydophone
 
PDF
Reactjs: Rethinking UI Devel
Stefano Ceschi Berrini
 
PDF
Server Side Rendering of JavaScript in PHP
Ignacio Martín
 
PDF
An Intense Overview of the React Ecosystem
Rami Sayar
 
PDF
Build a Startup with Clojure(Script)
Théophile Villard
 
PPTX
Why react is different
JakeGinnivan
 
Introduction to Functional Reactive Web with Clojurescript
John Stevenson
 
ClojureScript - Making Front-End development Fun again - John Stevenson - Cod...
Codemotion
 
Progscon 2017: Taming the wild fronteer - Adventures in Clojurescript
John Stevenson
 
Functional (web) development with Clojure
Henrik Eneroth
 
Front-end God Mode with Reagent and Figwheel
David Kay
 
ClojureScript interfaces to React
Michiel Borkent
 
ClojureScript loves React, DomCode May 26 2015
Michiel Borkent
 
React in Native Apps - Meetup React - 20150409
Minko3D
 
High Performance web apps in Om, React and ClojureScript
Leonardo Borges
 
Event streams all the way down
paulspencerwilliams
 
Integrating React.js with PHP projects
Ignacio Martín
 
React, GraphQL и Relay - вполне себе нормальный компонентный подход (nodkz)
Pavel Chertorogov
 
Reactive datastore demo (2020 03-21)
YangJerng Hwa
 
Relay: Seamless Syncing for React (VanJS)
Brooklyn Zelenka
 
Rethinking Best Practices
floydophone
 
Reactjs: Rethinking UI Devel
Stefano Ceschi Berrini
 
Server Side Rendering of JavaScript in PHP
Ignacio Martín
 
An Intense Overview of the React Ecosystem
Rami Sayar
 
Build a Startup with Clojure(Script)
Théophile Villard
 
Why react is different
JakeGinnivan
 
Ad

Recently uploaded (20)

PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PDF
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
PPTX
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PPTX
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
PPTX
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
PPTX
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Tally software_Introduction_Presentation
AditiBansal54083
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 

Enjoyable Front-end Development with Reagent

  • 4. A tale of excitement in Clojure
  • 6. 1 (defn factorial 2 ([n] 3 (factorial n 1)) 4 ([n acc] 5 (if (= n 0) acc 6 (recur (dec n) (* acc n))))) got inspired by the beauty of a factorial implementation.
  • 8. Hped @TH1AGOFM got hyped by node.js and completely forgot about clojure for a while
  • 11. @TH1AGOFM 2014 CLJS FINALLY! hyped by david nolen's talk about cljs and Om, but felt it was too hard, so tried reagent and enjoyed it!
  • 13. @TH1AGOFM ENJOYMENT. WHAT I’VE GOT INSTEAD: Reagent(or Om) have to mature way more to be a killer app, for this we need a nice community around it. But it’s very enjoyable to work with.
  • 15. @TH1AGOFM “You believe that, by early 2015, ReactJS had won the JavaScript framework wars and you are curious about the bigger implications. Is the combination of reactive programming, functional programming and immutable data going to completely change everything? And, if so, what would that look like in a language that embraces those paradigms?” — Re-frame (Reagent framework for writing SPAs) So, in this bold statement by re-frame you can guess react.js is a great thing.
  • 16. @TH1AGOFM WHY REACT? PROBLEM: DOM WASN’T CREATED TO CREATE UI’S THAT ARE TOO DYNAMIC. MOVING 1000 DIVS AROUND TAKES A LOT OF TIME. SOLUTION: INSTEAD OF MOVING ALL THOSE 1000 DIVS, ONE BY ONE, WE CAN COMPUTE THE NEW STATE AND REPLACE IT ALL WITH THIS NEW STATE WITH THE SMALLEST AMOUNT OF PERMUTATIONS. 1 BIG INSERT VS. 1000 SMALL INSERTS.
  • 17. Here I show a project called memcached- manager in angular.js(very old version) that I do create trying to render 1000 divs/ memcached keys and completely freezing the browser for a couple of seconds. This is the problem that React tries to solve.
  • 18. @TH1AGOFM WHY REACT? REACT SOLVES THIS PROBLEM BY USING SOMETHING CALLED VIRTUAL DOM.
  • 19. @TH1AGOFM THE ANATOMY OF A REACT COMPONENT 1 React.createClass({ 2 getInitialState: function() { 3 return {secondsElapsed: 0}; 4 }, 5 tick: function() { 6 this.setState({secondsElapsed: this.state. 7 secondsElapsed + 1}); 8 }, 9 componentDidMount: function() { 10 this.interval = setInterval(this.tick, 1000) 11 ; 12 }, 13 componentWillUnmount: function() { 14 clearInterval(this.interval); 15 }, 16 render: function() { 17 return ( 18 <div>Seconds Elapsed: {this.state. 19 secondsElapsed}< 20 /div> 21 ); 22 } 23 }); 24 25 React.render(<Timer />, mountNode); DECLARATIVE, BUT TONS OF BOILERPLATE.
  • 20. @TH1AGOFM REACT ONLY TAKES CARE ABOUT THE V OF THE MVC. IT’S JUST A LIBRARY.
  • 21. @TH1AGOFM SO, IT MAKES SENSE TO USE IT WITH SOMETHING ELSE…
  • 22. @TH1AGOFM clojure(script) has a lot of power to create powerful dsl’s react has a declarative way to do frontend development, is very fast but have too much boilerplate. REAGENT reagent explores this nice spot with both
  • 23. @TH1AGOFM IF YOU KNOW CLOJURE, YOU KNOW REAGENT. (AND CLOJURESCRIPT)
  • 24. @TH1AGOFM IF YOU DON’T, IT’S A GOOD PLAYGROUND TO BEGIN.
  • 25. Here I show a demo of a project I wrote specially for this talk, the demo link is in the last slides, you can see for yourself.
  • 26. FIGWHEEL, THE CLJS BROWSER REPL. figwheel does: cljs -> js gives you a browser REPL
  • 27. Here there’s a video where you see that you can interact with the frontend you build through this REPL
  • 28. @TH1AGOFM THE 2048 GAME WAS MADE USING THE REAGENT-TEMPLATE. (VERY EASY TO SET UP!)
  • 29. @TH1AGOFM 247 (defn application-layout [rest] 248 [:div {:class "container"} 249 (heading-component) 250 [:p {:class "game-intro"} "Join the numbers 251 and get to the " 252 [:strong "2048 tile!"]] 253 [:div {:class "game-container"} 254 (when @game-over 255 [:div {:class "game-message game-over"} 256 [:p "Game over!" ] 257 [:div {:class "lower"} 258 [:a {:class "retry-button" :href "/"} 259 "Try again"]]]) 260 rest] 261 (game-explanation-component) 262 [:hr] 263 (footer-component)]) 272 (tile-component)]))
 
 
 
 COMPONENTS Components looks like HTML with some clojure. Syntax is hiccup style. Pretty simple.
  • 30. @TH1AGOFM COMPONENTS 
 
 
 224 225 (defn game-explanation-component [] 226 [:p {:class "game-explanation"} 227 [:strong {:class "important"} "How to play:"] 228 " Use your " 229 [:strong "arrow keys"] " to move the tiles. 230 When two tiles with the same number touch, 231 they " 232 [:strong "merge into one!"]]) 233 234 (defn footer-component [] 235 [:p "n Created by " 236 [:a {:href "http://gabrielecirulli.com", : 237 target "_blank"} "Gabriele Cirulli."] " 238 Based on " 239 [:a {:href "https://itunes.apple. 240 com/us/app/1024!/id823499224", :target 241 "_blank"} "1024 by Veewo Studio"] " and 242 conceptually similar to " 243 [:a {:href "http://asherv.com/threes/", : 244 target "_blank"} "Threes by Asher 245 Vollmer."]]) 246 
 html, for real
  • 31. @TH1AGOFM TILES COMPONENT 
 
 
 
 
 
 
 215 (defn tile-component [] 216 [:div {:class "tile-container"} 217 (remove nil? (map-indexed 218 (fn[y row-of-tiles] 219 (map-indexed 220 (fn[x tile] 221 (when (> tile 0) 222 [:div {:class (str 223 "tile tile-" tile " tile-position- 224 " (inc x) "-" (inc y))} tile])) 225 row-of-tiles)) 226 @tiles))])
 
 
 
 
 
 
 
 
 15 (def empty-tiles 16 [[0 0 0 0] 17 [0 0 0 0] 18 [0 0 0 0] 19 [0 0 0 0]]) how does the game display the tiles
  • 32. @TH1AGOFM ROUTING 263 (footer-component)]) 264 265 ;; ------------------------- 266 ;; Pages 267 268 (defn start-game-page [] 269 (application-layout 270 [:div 271 (grid-component) 272 (tile-component)])) 273 274 (defn current-page [] 275 [:div [(session/get :current-page)]]) 276 277 ;; ------------------------- 278 ;; Routes 279 (secretary/set-config! :prefix "#") 280 (secretary/defroute "/" [] 281 (session/put! :current-page #'start-game-page) 282 ) 283 284 ;; ------------------------- 285 ;; History 286 ;; must be called after routes have been 287 defined 288 (defn hook-browser-navigation! [] 289 (doto (History.) 290 (events/listen whenever you access /, it calls start- game-page function. game uses only this page, so this is straightforward.
  • 33. @TH1AGOFM OK, THIS LOOKS PRETTY STATIC. HOW DO I CHANGE A COMPONENT STATE?
  • 35. @TH1AGOFM 247 (defn application-layout [rest] 248 [:div {:class "container"} 249 (heading-component) 250 [:p {:class "game-intro"} "Join the numbers 251 and get to the " 252 [:strong "2048 tile!"]] 253 [:div {:class "game-container"} 254 (when @game-over 255 [:div {:class "game-message game-over"} 256 [:p "Game over!" ] 257 [:div {:class "lower"} 258 [:a {:class "retry-button" :href "/"} 259 "Try again"]]]) 260 rest] 261 (game-explanation-component) 262 [:hr] 263 (footer-component)]) 272 (tile-component)]))
 
 
 
 ATOMS game-over is a atom/state, and using the @ means we are reading it’s content. This is called derefing in clojure whenever game-over = true, it would show what is nested inside it. a view telling the game is over with the option to retry.
  • 36. @TH1AGOFM (R)ATOMS 11 12 ;; ------------------------- 13 ;; Definitions 14 15 (def empty-tiles 16 [[0 0 0 0] 17 [0 0 0 0] 18 [0 0 0 0] 19 [0 0 0 0]]) 20 (def no-score-addition 21 0) 31 32 ;; ------------------------- 33 ;; Atoms 34 35 (defonce score (atom 0)) 36 (defonce score-addition (atom 0)) 37 (defonce tiles (atom empty-tiles)) 38 (defonce game-over (atom false)) 39 
 
 
 
 
 

  • 37. here I play with the atoms of the game, seeing it update in the browser(right side). reagent atoms behave exactly as clojure atoms so you can call swap! and reset! on them, for more info about that, read the docs from the reagent project provided in the last slide. (pst: it’s easy)
  • 38. @TH1AGOFM COMPONENTS + ATOMS = ALL YOU NEED. not much secret to write the game beyond that, check the readme of my version of the game in github how I build it having subpar clojure skills and learned some stuff in the way.
  • 39. @TH1AGOFM 1 React.createClass({ 2 getInitialState: function() { 3 return {secondsElapsed: 0}; 4 }, 5 tick: function() { 6 this.setState({secondsElapsed: this.state. 7 secondsElapsed + 1}); 8 }, 9 componentDidMount: function() { 10 this.interval = setInterval(this.tick, 1000) 11 ; 12 }, 13 componentWillUnmount: function() { 14 clearInterval(this.interval); 15 }, 16 render: function() { 17 return ( 18 <div>Seconds Elapsed: {this.state. 19 secondsElapsed}< 20 /div> 21 ); 22 } 23 }); 24 25 React.render(<Timer />, mountNode); we don’t need that boilerplate, just use reagent :)
  • 41. @TH1AGOFM THAT’S ALL FOLKS! READ THE GUIDE: http://reagent-project.github.io USE THE TEMPLATE: https://github.com/reagent-project/reagent-template CHECK THE COOKBOOKS: https://github.com/reagent-project/reagent-cookbook MAKE YOUR OWN 2048: https://github.com/thiagofm/reagent-2048 && HAVE FUN! shoot me an e-mail if you play with it and have some kind of trouble, [email protected] thanks!