Build Rails applications, from the ground up, using Phlex or ViewComponent components, like this.
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
include Superview::Actions
before_action :load_post
class Show < Components::Base
attr_accessor :post
def view_template(&)
h1 { @post.title }
div(class: "prose") { @post.body }
end
end
class Edit < ViewComponent::Base
attr_accessor :post
def call
<<~HTML
<h1>Edit #{@post.title}</h1>
<form action="<%= post_path(@post) %>" method="post">
<input type="text" name="title" value="<%= @post.title %>">
<textarea name="body"><%= @post.body %></textarea>
<button type="submit">Save</button>
</form>
HTML
end
end
private
def load_post
@post = Post.find(params[:id])
end
endRead more about it at:
- Component driven development on Rails with Phlex
- Hacking Rails Implicit Rendering for View Components & Fun
Install the gem and add to the application's Gemfile by executing:
$ bundle add superview
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install superview
Add include Superview::Actions to any controllers you'd like to render components as controller actions.
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
# π¨ Add this π to your controller π¨
include Superview::Actions
# Your code...
endThen add classes to your controller that map to the actions you'd like to render. The Show class will render when the PostsController#show action is called and the Edit class will render when the PostsController#edit action is called.
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
include Superview::Actions
before_action :load_post
class Show < Components::Base
attr_accessor :post
def view_template(&)
h1 { @post.title }
div(class: "prose") { @post.body }
end
end
class Edit < ViewComponent::Base
attr_accessor :post
def call
<<~HTML
<h1>Edit #{@post.title}</h1>
<form action="<%= post_path(@post) %>" method="post">
<input type="text" name="title" value="<%= @post.title %>">
<textarea name="body"><%= @post.body %></textarea>
<button type="submit">Save</button>
</form>
HTML
end
end
private
def load_post
@post = Post.find(params[:id])
end
endYou can explicitly render a component in a controller action method. In this example, we needed to render a the Show component in the html format and a JSON response in the json format.
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
include Superview::Actions
# Your code...
class Show < Components::Base
attr_accessor :post
def view_template(&)
h1 { @post.title }
div(class: "prose") { @post.body }
end
end
def show
respond_to do |format|
# π Renders the Show component
format.html { render component }
# π These would also work...
# format.html { render Show.new.tap { _1.post = @post } }
# format.html { render component Show.new }
# format.html { render component Show }
# format.html { render component :show }
format.json { render json: @post }
end
end
# Your code...
endIt's common to have to render form actions from other actions when forms are saved. In this example the create method renders the component New view when the form is invalid.
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
include Superview::Actions
def create
@post = Post.new(post_params)
if @post.save
redirect_to @post
else
# π Renders the New component from the create action.
render component New
# π These would also work...
# render New.new.tap { _1.post = @post }
# render component New.new
# render component New
# render component :new
end
end
# Your code...
endInline views are an amazingly productive way of prototyping apps, but as it matures you might be inclined to extract these views into the ./app/views folders for organizational purposes or so you can share them between controllers.
First let's extract the Show class into ./app/views/posts/show.rb
# ./app/views/posts/show.rb
module Posts
class Show < Components::Base
attr_accessor :post
def view_template(&)
h1 { @post.title }
div(class: "prose") { @post.body }
end
end
endThen include the Posts module in the controllers you'd like to use the views:
# ./app/controllers/posts_controller.rb
class PostsController < ApplicationController
include Superview::Actions
# π¨ Add this π to your controller π¨
include Posts
before_action :load_post
def show
respond_to do |format|
format.html { render Show.new.tap { _1.post = @post } }
format.json { render json: @post }
end
end
private
def load_post
@post = Post.find(params[:id])
end
endThat's it! Ruby includes all the classes in the Posts module, which Superview picks up and renders in the controller. If you have an Index, Edit, New, etc. class in the Posts namespace, those would be implicitly rendered for their respective action.
Not all component libraries are integrated into Rails views, so you might have to manually configure the view paths in your Rails application. This instructs the Rails code reloader, Zeitwerk, to load the components.
# ./config/application.rb
module MyApp
class Application < Rails::Application
config.autoload_paths << "#{root}/app/views"
config.autoload_paths << "#{root}/app/views/layouts"
config.autoload_paths << "#{root}/app/views/components"
# Your code
end
endFor example, the Show component in the Posts module would be loaded from ./app/views/posts/show.rb and the Layout component in the Layouts module would be loaded from ./app/views/layouts/layout.rb.
After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/rubymonolith/superview. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Superview project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.