brocoders / redux-async-connect

It allows you to request async data, store them in redux state and connect them to your react component.
645 stars 103 forks source link

Option to not store result? #26

Closed babsonmatt closed 8 years ago

babsonmatt commented 8 years ago

Would it make sense to provide an option that would allow the result of the promise to not be stored by key? For example, I'm just interested in being able to fire off a bunch of promises... their results will be handled by the reducers, so I don't need a duplicate copy of the data stored under reduxAsyncConnect.

Thank you!

sars commented 8 years ago

@babsonmatt you can implement it using reduxAsyncConnect static method : https://github.com/Rezonans/redux-async-connect/blob/master/docs/API.MD#reduxasyncconnect-static-method

without decorator...

does it make sense?

babsonmatt commented 8 years ago

Makes sense, thanks!