Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.25 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.25 KB

React-redux messaging app based on RESTful API.

Issues, max priority

  • done

TODOs in the

  • picture loading bad position
  • repair load more btn - load more messages
  • load only one message with polling
  • redux form green/red
  • better UI - for example get rid of grey loader
  • (delete containers -> move to components)

Questions

  • i have tested my conversions, now i am testing thunk actions and the question is: should i add the conversions that i am invoking in thunk action as dependency (DI) even though i have them already tested? What if i have f.e. 50+ 'dependencies' in one thunk action? They should be all added as function parameters?
  • when using redux, is it good idea to have component separated in component and container file? Personally i don't like the idea that i have my component in three different files. What are the advantages of doing so?