Fork me on GitHub
#re-frame
<
2018-02-02
>
danielcompton00:02:28

@shaun-mahood yeah we've thought about that, we just haven't mocked anything up for it yet

ferossgp19:02:41

Can someone help me understand how to use components which are sent as prop to another component and receive props inside the parent component, like TabBar in this example https://github.com/react-native-community/react-native-tab-view/ ? I've tried to do js->clj an select keywords but no success

Dos19:02:30

@mikethompson @danielcompton is there any classic way of changing intercepter queue inside intercepters? I did it this way

(defn filter-queue 
  [f q] 
  (apply conj #queue[] (vec (filter f q))))

danielcompton19:02:36

That seems pretty standard

danielcompton19:02:16

I don’t think we’ve ever had a reason to dynamically alter the queue

Dos19:02:43

I had a case, in the first validation intercepter I decided not to validate for others, thats why I filtered the queue