With Mountain View you create reusable components for your Rails frontend, while generating a living style guide.
FAQ
Hey! What is a living style guide? A living style guide is a style guide that is always up-to-date and never falls behind.
Does it generate it automatically? You bet!
Visit the living style guide demo! (source repo)
Usage of components demo here!
Add this line to your application's Gemfile:
gem 'mountain_view'
Then execute:
$ bundle
Mountain View supports Ruby 2.0+.
Use the built-in generator to create a new component:
rails generate mountain_view:component header
This will create the following directory structure:
app/
components/
header/
_header.html.erb
header.css
header.js
header.yml
header_component.rb # optional
Keep in mind that you can also use scss
, coffeescript
, haml
, or any other
preprocessors that your app is currently using.
You can write your own templates on erb, haml or any other templating language. Same goes with stylesheets and javascripts. You can use scss, sass or coffee-script as long as you have these preprocessors running on your app.
<!-- app/components/header/_header.html.erb -->
<div class="header">
<h1>This is a header component with the title: <%= title %></h1>
<h3>And subtitle <%= subtitle %></h3>
<% if show_links? %>
<ul>
<% links.each do |link| %>
<li><%= link %></li>
<% end %>
</ul>
<% end %>
</div>
# app/components/header/header_component.rb
class HeaderComponent < MountainView::Presenter
properties :title, :subtitle
property :links, default: []
def title
properties[:title].titleize
end
def show_links?
links.any?
end
end
Including a component class is optional, but it helps avoid polluting your
views and helpers with presenter logic. Public methods in your component class
will be made available to the view, along with any properties you define.
You can also access all properties using the properties
method in your
component class and views. You can even define property defaults.
You can then call your components on any view by using the following helper:
<%= render_component "header", title: "This is a title", subtitle: "And this is a subtitle" %>
You can also pass a block to a component, for example the following component:
<!-- app/components/header/_header.html.erb -->
<div class="header">
<%= properties[:yield] %>
</div>
Used in a view like so:
<%= render_component "header" do %>
<p>Hello World</p>
<% end %>
Would output the following in your view:
<div class="header">
<p>Hello World</p>
</div>
You can require all the components CSS and JS automatically by requiring mountain_view
in your main JS and CSS files.
In case you want to add global stylesheets (e.g. reset, bootstrap, a grid system, etc) to your Mountain View components you can do it by calling them with an initializer
#config/initializers/mountain_view.rb
MountainView.configure do |config|
config.included_stylesheets = ["reset", "bootstrap"]
end
//= require mountain_view
You don't need to require those again in your application if you're requiring
mountain_view
already, that will cause duplicate CSS.
For SASS mixins, variables, functions, etc (anything that doesn't generate
code), you'd need to explicitly do and @import
in each component stylesheet.
As that doesn't generate extra CSS this won't cause any issues with the
generated CSS, you're only giving that stylesheet access to those definitions.
In case you want to add additional pages to the styleguide (e.g grid, code_style) to your living style guide, you can do it by generating them in an initializer
MountainView.configure do |config|
config.extra_pages = [:grid, :code_style]
end
This will generate the routes and conventional links to the style guide.
To add the views to handle the request.
rails generate mountain_view:extra_pages
A style guide will be automatically generated. This style guide never falls behind and it reflects your components in their latest version.
- Add the following line to your
routes.rb
file.
mount MountainView::Engine => "/mountain_view"
- Create stubs for your components. These stubs will be the examples in the style guide.
E.g: app/components/card/card.yml
-
:title: "Aspen Snowmass"
:description: "Aspen Snowmass is a winter resort complex located in Pitkin County in western Colorado in the United States. Owned and operated by the Aspen Skiing Company it comprises four skiing/snowboarding areas on four adjacent mountains in the vicinity of the towns of Aspen and Snowmass Village."
:link: "http://google.com"
:image_url: "http://i.imgur.com/QzuIJTo.jpg"
:data:
-
:title: "Elevation"
:number: '7879ft'
-
:title: "Depth"
:number: '71"'
-
:title: "Sunset on the Mountain"
:description: "Three major ranges of the Alps – the Northern Calcareous Alps, Central Alps, and Southern Calcareous Alps – run west to east through Austria. The Central Alps, which consist largely of a granite base, are the largest and highest ranges in Austria."
:link: "http://google.com"
- Vist
http://localhost:3000/mountain_view/styleguide
Visit the living style guide demo! (source repo)
Usage of components demo here!
To override the path used within the mountain_view engine, set the styleguide_path
option.
#config/initializers/mountain_view.rb
MountainView.configure do |config|
config.styleguide_path = "my-style-guide"
end
See the contributing guide.
This library was inspired by Rizzo, a wonderful living style guide created by the guys at LonelyPlanet. More info here