RN
Size: a a a
RN
NA
A
A
OR
IS
dispatch-n
OR
http-fx
.IS
OR
RN
RN
KR
RN
RN
RN
KR
OR
It appears as if your calls to interfaces/invoke and io/display-notification are side effecting and would ideally be modeled as effects (ie. use reg-fx)
In this kind of code (https://github.com/realgenekim/re-frame-event-graph/blob/master/resources/trello-events.cljs#L355-L363) it appears you are using events instead of function calls. IMO, you should have a function call reset-card not an event. This function would be given `db` arg and return a modified `db`. Then you simply call that function in that event handler ... don't dispatch an event to do it. Events are meant to model user intent, not model the low level machinery — good old functions calls do that just fine.
OR
event
выступает как функция.OR
event
, вместо более понятных функцийAG