Fork me on GitHub
#re-frame
<
2016-10-02
>
andre11:10:06

hi, where I can find information about time travel debugging using 0.8.0?

reefersleep12:10:02

Maybe the undo library is a good place to start: https://github.com/Day8/re-frame-undo , although it's not exactly time-travelling debugging. I don't know of any literature in this area specifically utilizing re-frame 0.8.0 😕

andre12:10:25

this is it. thank you

andre13:10:56

is there any way to add "global" interceptor for all events?

yury.solovyov15:10:35

is there a component to render only visible items of the list? like react-lazy-render or something...

shaun-mahood15:10:55

@andre: Could you define your own version of reg-event, or do you need to intercept events written by other people?

shaun-mahood15:10:39

Also, re-frisk is pretty awesome and sounds like it's bringing you some interesting problems to solve.

reefersleep15:10:28

@andre: Like @shaun-mahood mentions, your own wrapper for reg-event is the first, most obvious solution. This was suggested to me by @mikethompson as well when I asked the same question.

andre16:10:36

@shaun-mahood yes i need to intercept events written by other people, i want to implement history traveling debugger in the re-frisk panel

andre17:10:15

but maybe it's better to provide just ui. and developers should decide which events can be undoable

mac20:10:18

Is there a recommended way of getting raw html - in this case a diff of two texts - produced by a third party lib into a view?

shaun-mahood21:10:42

@mac: You can use dangerously set inner html on your reagent component

mac22:10:47

@shaun-mahood Yeah, that appears to be the only moderately sane way.