Any suggested best practice for creating a Rails UI to edit many child objects on one page?
A simple example would be putting in monthly stock returns for a portfolio of securities. The UI will allow editing the “return” values of stocks in the portfolio, and add another month’s worth of values easily. This would be tedious one record at a time.
I dabbled with React a bit. It took a bit to get my head around some concepts like the difference between states and properties and JSX. What I enjoyed most about React was that it was easy to make ajaxy pages without having to go full blown backbone/ember/angular etc. while still being able to avoid the JQuery callback soup that is common with a lot of Rails applications.
You might also want to consider something like best_in_place, it’s probably the lowest hanging fruit when you want to make ajax-driven pages consisting of multiple resources.