Fork me on GitHub
#reagent
<
2017-01-05
>
emccue00:01:27

Also, you can use normal react components once you are brave enough to

notanon00:01:30

brave? is it difficult to integrate them into reagent (or re-frame) ?

notanon00:01:02

that was on my todo list of things to vet with reagent/reframe

mikethompson02:01:05

You don't have to be that brave. Here is an example of using the react-flip-move component: http://www.upgradingdave.com/blog/posts/2016-12-17-permutation.html

mikethompson02:01:33

Granted, that is especially straightforward because there's not much data flowing between the cljs and js worlds.

notanon04:01:44

(def flip-move (r/adapt-react-class js/FlipMove))

notanon04:01:59

[flip-move {:style css/perm-container :duration @interval :easing "cubic-bezier(0.6, -0.28, 0.735, 0.045)" ;;"linear"

notanon04:01:14

looks like it's no big deal

notanon04:01:04

well this certain helps me. thanks for the link

notanon04:01:11

@kim0 you might want to check it out too, if you're looking for nice pre-built ui components, being able to pull in native react components would definitely widen your horizons

emccue15:01:21

Well using the actual components is easy; if they aren't on cljsjs you might be in my position of fiddling with the build system, which is never fun

emccue15:01:37

If they are it is all pretty seamless