re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
clyfe 2020-12-16T01:04:46.457100Z

Reporting on initial POC there: I got subscribe + dispatch-sync working; dispatch (plain / async) looses the frame context on next tick. I need to somehow glue the frame with the event in the FSM across ticks.

lilactown 2020-12-16T01:21:07.457600Z

the issue is that you're using binding / with-redefs. you should just use context for everything

lilactown 2020-12-16T01:23:25.457800Z

well, let me be a bit more specific. the issue is that you're not closing over the bound values; you need to bind them lexically and then refer to them in the closure

lilactown 2020-12-16T01:25:14.458100Z

I misread, you are closing over the frame lexically

lilactown 2020-12-16T01:27:05.458300Z

CLJS doesn't have binding-conveyance like Clojure so you are probably out of luck w/ maintaining the redef'd frame across the async barrier 😞

πŸ‘ 1
lilactown 2020-12-16T01:28:35.458600Z

some other feedback: (current) calls a React hook, which cannot be called conditionally or in loops. This means that you cannot conditionally subscribe or create an event dispatcher, or in loops, with your current API

😯 1
ghaskins 2020-12-16T02:57:33.460500Z

hey all, ive been using re-frame for a while now, but probably in a simplistic manner. I'm now trying to do something a little more advanced and struggling to figure out how to express what I think I need in a re-frame idiomatic way

ghaskins 2020-12-16T02:59:10.461700Z

in short, im trying to have an event from a graphql subscription trigger a few different components to do something, some of which is also async (e.g. reloading other things from the backend)

2020-12-16T05:50:01.464400Z

@ghaskins The graphql subscription should probably dispatch an event when new data arrives (dispatch [:new-x {:new-stuff XXX}]) and then the associated event handler will know where within app-db to place the new stuff and then, because data has been updated in app-db dominoes 4,5,6 will cause the new data to be rendered

2020-12-16T05:51:33.465600Z

So, the graphql subscription is treated like an "external agent" - like a user pressing a button - which triggers events via the arrival of new data. And then those new data events are handled in the normal way, and changes to the components rerender in the normal way.

ghaskins 2020-12-16T13:59:52.467900Z

@mikethompson ty for the response. That part I get. The thing I am struggling with (and perhaps I just need to approach the flow differently) is that currently the graphql subscription is just a generalized notification. Several other components then need to respond to the change by loading data contextualized to their state, such as filter/pagination settings.

ghaskins 2020-12-16T14:00:15.468400Z

so far, what ive got is working, but it seems a little hacky

ghaskins 2020-12-16T14:00:35.468700Z

basically im doing something like this

ghaskins 2020-12-16T14:02:27.470100Z

graphql-subscription -> rf/dispatch -> rf/sub(layer2) -> [[rf/sub(layer3) -> query ->rf/dispatch) [rf/sub(layer3) -> query ->rf/dispatch) [rf/sub(layer3) -> query ->rf/dispatch) ]

ghaskins 2020-12-16T14:02:48.470600Z

and the components finally sub to the data produced by the query dispatch

ghaskins 2020-12-16T14:03:27.471400Z

overall, it kind of makes sense, but the weird thing is I have to make sure I include a sub to the layer3 so that its included in the signal graph

ghaskins 2020-12-16T14:04:29.472Z

basically, the way its structured now is a type of pubsub, which I know goes against the grain of re-frame a bit

2020-12-16T17:38:55.472700Z

Hi, what is the recommended way of passing subscription values to life-cycle methods such as component-did-mount or component-did-update?

p-himik 2020-12-16T17:41:34.472800Z

I would try to avoid those methods altogether with reagent/with-let. If that's not an option and you really have to use those methods, then I would: - Create a sub outside of the reagent/create-class but within the component function. Do not deref it! - Deref it in the render function (it's fine if the value is unused - you just have to @ in there) - Deref and use in any life cycle method. The above only makes sense if the life cycle methods are called outside of the Reagent's ratom context. I have no idea if that's the case but you should be able to check it.

2020-12-16T17:46:09.473Z

I am using these methods to update selection in content-editable which I want to fully control.

2020-12-16T17:46:50.473200Z

so the code looks like this:

(r/create-class
    {:component-did-mount    #(do (r/after-render (partial js-selection/update-selection browser-selection))
                                  (js-input/add-before-input-event %))
     :component-did-update   #(r/after-render (partial js-selection/update-selection browser-selection))
     :component-will-unmount js-input/remove-before-input-event
     :display-name           "editor"
     :reagent-render         render})
where browser-selection is an output of a subscription.

p-himik 2020-12-16T17:48:25.473400Z

It does sound like reagent/with-let should work though. I may be wrong but I would definitely try it first.

2020-12-16T17:49:14.473600Z

how can I replace component-did-update with it?

p-himik 2020-12-16T17:52:26.473800Z

I think something like this:

(r/with-let [selection (subscribe [...])]
  (component-did-update ...)
  [:div ...]
  (finally
    (component-will-unmount ...)))
Can off the top of my head think of the way to use component-did-mount. Maybe wrapping it in a delay.

p-himik 2020-12-16T17:58:06.474Z

Ah, even simpler - you can put it directly within the bindings block of with-let. Check out the example here: https://reagent-project.github.io/news/news060-alpha.html

p-himik 2020-12-16T17:58:18.474200Z

Where they call .addEventListener.

2020-12-16T18:09:38.474400Z

when are bindings in with-let executed? they create component-did-mount under the hood?

2020-12-16T18:11:25.474600Z

I have other usecases where I am using component-did-mount and component-did-update to calculate sizes of component elements when inserted into DOM

p-himik 2020-12-16T18:15:38.474800Z

There's some low-level magic specific to Reagent. I still don't quite understand its implementation. But AFAIK it's supposed to be able to replace life cycle methods in all or nearly all situations.

2020-12-16T18:17:10.475Z

hmm, I don't think I get it enough to use it right now, and it seems to me like a source of complexity compared to life-cycle methods (which are also quite complex), so I went with you alternative suggestion for now

2020-12-16T18:18:40.475200Z

another option would be to create a wrapper component which would just subscribe and pass the value to the component itself as a parameter

p-himik 2020-12-16T18:20:15.475400Z

Ah, right - that is a common approach as well, especially when you work with JS libraries.

2020-12-16T18:22:31.475600Z

Thanks for help, I will probably have to read entire Reagent and Re-frame in the future to understand it better. And dig into React as well.

πŸ‘ 1
benny 2020-12-16T18:38:08.476700Z

trying to figure out ways to be more organized as our project gets bigger, any recommendations on event handler and subscription naming?

benny 2020-12-16T18:39:36.476800Z

like does anyone do something like this? :notifications/retrieve-all-notifications -> :notifications/ev-retrieve-all-notifications

p-himik 2020-12-16T18:44:18.477100Z

IIRC re-frame docs suggest you to give them a generic namespace, like user-events, and name them according to the actual action, like enter-text. I.e. :user-events/enter-text. I prefer to: - Not use any Hungarian notation-like prefixes (no -event, -events, -ev, etc) - Name according to the actual action - Use real namespaces and require and alias them when I want to use them. E.g.

(ns my-proj.cool-component
  (:require [re-frame.core :as rf]))

(rf/reg-event-db ::do-stuff ...)


(ns <http://my-proj.app|my-proj.app>
  (:require [my-proj.cool-component :as cc]
            [re-frame.core :as rf]))

(defn app-view []
  [:button {:on-click #(rf/dispatch [::cc/do-stuff])} "Hello"])

🎯 1
benny 2020-12-16T18:50:45.477400Z

thanks @p-himik

2020-12-16T18:50:45.477600Z

@benny I’ve organized my app into modules which are just namespaces, e.g. my-app.modules.customer, my-app.modules.user, etc. Any Re-frame events/subs under my-app.modules.customer would have the prefix :customer/

benny 2020-12-16T18:51:54.477800Z

thanks @jkrasnay

benny 2020-12-16T18:52:07.478Z

i’ve taken a similar approach with modules, but i have some events and subs that look alike

2020-12-16T18:52:13.478200Z

Also, each module has a main.cljc where I register Re-frame things, as well as my own system for registering pages and endpoints.

2020-12-16T18:52:31.478400Z

The application main requires each of the module mains.

benny 2020-12-16T18:52:55.478600Z

funny, sounds like we landed on a similar approach, i called mine core

2020-12-16T18:54:03.478800Z

I use core for things that others can depend on, and main to depend on things. I find it helps avoid circular dependencies.

πŸ‘ 1
benny 2020-12-16T18:54:08.479Z

maybe i’m just being too picky, i just have a hard time seeing list-users and user-list

2020-12-16T18:55:14.479300Z

I find, though, that events and subs are often local to a given page, so I might call those something like ::user-list-init and ::user-list-init-success

βœ”οΈ 1
p-himik 2020-12-16T18:55:25.479500Z

Interesting approach with main. So far I have only used core as well without any problems.

isak 2020-12-16T19:03:36.479800Z

Anyone do anything with suffixes? E.g., ! for events, and &gt; for subs (or &lt;)?

2020-12-16T19:08:44.480100Z

I don’t use special suffixes, but I do like to do this: (def &lt;- (comp deref rf/subscribe). Then inside my component I can subscribe like this (&lt;- [:some/sub])

πŸ‘€ 1
βœ”οΈ 1
1
clyfe 2020-12-16T19:14:54.480600Z

https://github.com/tape-framework/mvc#user-content-conventions my choice of organizing things there ^; rails influence

isak 2020-12-16T19:16:41.481Z

@claudius.nicolae cool idea. We do the same with macros, but didn't think of the rails part

πŸ™‚ 1
clyfe 2020-12-16T19:16:45.481200Z

summary for standard apps: 1) exlusive use of namespaced keywords, 2) handler defined in the same namespace as keyword namespace 3) correlation between names

βœ”οΈ 1
2020-12-16T19:47:32.488100Z

@ghaskins I'm not following/understanding your notation by it appears to be mixing subs with dispatches, which is a worry :-) Also, you use wording like "components then need to ..." and makes them sound quite imperative and causal. You might be interested in the lead-in to this FAQ entry: http://day8.github.io/re-frame/FAQs/LoadOnMount/ Tell me how you go.