Daniel Martín

Results 61 comments of Daniel Martín

Hi, @xelvenone. I added the MNCalendarView library to my project using CocoaPods. Do you know how can I add the functionality you've implemented easily? Do I need to remove the...

I wonder if this is something that could be done in a custom middleware? Another reason for this is that thunks are actually _fake_ ReSwift actions, meaning that they can't...

Yeah, that's my rationale. A thunk is just something that will eventually create real ReSwift actions. If instead of dispatching a thunk you would implement the async operation directly in...

I just had this same problem. Does anyone know a workaround?

Reopening it. Is it solved? Is there a workaround?

Note also that there are fields in Parse Object that should be read only (id, createdAt...).

From my experience, 1 is the way to go, conserving a single source of truth. The important bit here, though, is where do you handle this logic. There are two...

Hi! - You don't need a middleware to dispatch networks calls in an idiomatic Redux implementation. Some people use a middleware as a help to dispatch other actions automatically (loading,...

I think your approach is quite ok. I can share some thoughts but note that I don't think you're doing anything wrong. 1. You can have several reducers that respond...

I've been thinking about this and maybe I'm missing something, but the second `skipRepeats` will always return true if the app's state doesn't change, right? Unless you're introducing a side...