This is a current proposal that I'd like your feedback on for how we can clean up how we write RubyMotion applications. It's purely conceptual at the moment, and there would have to be some framework development to make this work the way described here.
Please submit your feedback, as a joint effort we can clean up our RubyMotion applications and make it easier for Rails developers to expand their skills into RubyMotion development.
The main points of this are:
- Find a RubyMotion project structure where parts of the projects can be related to similar Rails parts
- Build a framework to support this that works for both iOS and OS X
- Take advantage of helper libraries where possible, likely RMQ, CDQ, and/or BubbleWrap
- Come up with new conceptual design patterns if need be
- Abstract some of the differences between iOS and OS X applications
The difference between controllers in Rails where they handle mutliple different actions versues in iOS and OS X where controllers are focused solely on one screen/window/set of views can trip developers up a lot. I don't suggest a move to the Rails way of doing things completely, but maybe we can really focus the controller's responsibilities on bringing in model data and getting the view ready for display.
class MainViewController < RMRailsController::Base
view MainView
delegate MainDelegate
stylesheet MainStylesheet
def setup
delegate.data[:posts] = Post.all
end
end
In this setup, view
will create an instance of MainView
in the loadView
method and assign it to self.view
, and style it using the stylesheet assigned with stylesheet
. The view would then have it's delegate assigned to be an instance of the class assigned by delegate
. The delegate would basically act like the JavaScript in a web application handling interaction, of course some helpers would need to be provided for being able to access to controllers things happen in so that it doesn't have to hold references to it.
In the setup method would go the kinds of things you would find in index
, show
, or any of the other Rails controller method defintions, though data would have to be assigned to the delegate so that it has access to it.
This setup reflects basic Rails app structures:
- Controller = Controller
- View = View (already well defined)
- Stylesheet = Stylesheet (already well defined)
- Delegate = Scripts
- Model = Model (already well defined)
class MainDelegate < RMRailsDelegate::Base
def myView(myView, viewForSomePostition:position)
SectionView.style do |v|
v.title = self.data[:posts][position].title
v.content = self.data[:posts][position].content
end
end
def myView(myView, sectionSelectedAtPosition:position)
navigate_to(DetailViewController, post: self.data[:posts][position])
end
end
This is just early days for this so far, I'd love to hear your ideas. Currently the proposed solution would likely only handle VERY simple applications, and would likely have trouble working well on OS X too. Please share your thoughts.
Thanks for starting the converstation! My two bits:
They key factors that made rails rails were, in no particular order:
Native Cocoa is ok at 4, but only if you use XCode, arguably somewhat OK at 2, and absolutely terrible at the rest. RM just inherits that legacy, by default, minus XCode. We've collectively started on 1 and 3, RMQ/CDQ at least do some of 4, and ProMotion is aiming at 2, at least, and probably all 5. But we could definitely use at least one framework that hits all of them.
The particulars of M, V, and C are less important. I agree with Colin and would rather see terminology/behavior that streamlines, but is fundamentally compatible with Cocoa, if for no other reason than that when people go out looking for help, they're still going to find a lot of Objective C examples, and it'll go better if there's not an extra mental translation they have to do. iOS/mobile is really different from the web, despite there being some analogous pieces, and I'd aim to help smooth the transition, rather than attempt to pretend it's not there...