Deface is a library that allows you to customize HTML ERB views in a Rails application without editing the underlying view.
It allows you to easily target html & erb elements as the hooks for customization using CSS selectors as supported by Nokogiri.
You can play with Deface and see its parsing in action at deface.heroku.com
A new instance of the Deface::Override class is initialized for each customization you wish to define. When initializing a new override you must supply only one Target, Action & Source parameter and any number of Optional parameters. Note: the source parameter is not required when the "remove" action is specified.
- :virtual_path - The template / partial / layout where the override should take effect eg: "shared/_person", "admin/posts/new" this will apply to all controller actions that use the specified template.
-
:remove - Removes all elements that match the supplied selector
-
:replace - Replaces all elements that match the supplied selector
-
:insert_after - Inserts after all elements that match the supplied selector
-
:insert_before - Inserts before all elements that match the supplied selector
-
:insert_top - Inserts inside all elements that match the supplied selector, as the first child.
-
:insert_bottom - Inserts inside all elements that match the supplied selector, as the last child.
-
:set_attributes - Sets (or adds) attributes to all elements that match the supplied selector, expects :attributes option to be passed.
-
:text - String containing markup
-
:partial - Relative path to a partial
-
:template - Relative path to a template
-
:name - Unique name for override so it can be identified and modified later. This needs to be unique within the same
:virtual_path
-
:disabled - When set to true the override will not be applied.
-
:original - String containing original markup that is being overridden. If supplied Deface will log when the original markup changes, which helps highlight overrides that need attention when upgrading versions of the source application. Only really warranted for :replace overrides. NB: All whitespace is stripped before comparison.
-
:closing_selector - A second css selector targeting an end element, allowing you to select a range of elements to apply an action against. The :closing_selector only supports the :replace, :remove and :replace_contents actions, and the end element must be a sibling of the first/starting element. Note the CSS general sibling selector (~) is used to match the first element after the opening selector (see below for an example).
-
:sequence - Used to order the application of an override for a specific virtual path, helpful when an override depends on another override being applied first, supports:
- :sequence => n - where n is a positive or negative integer (lower numbers get applied first, default 100).
- :sequence => {:before => "override_name"} - where "override_name" is the name of an override defined for the same virutal_path, the current override will be appplied before the named override passed.
- :sequence => {:after => "override_name") - the current override will be applied after the named override passed.
-
:attributes - A hash containing all the attributes to be set on the matched elements, eg: :attributes => {:class => "green", :title => "some string"}
Replaces all instances of h1 in the posts/_form.html.erb
partial with <h1>New Post</h1>
Deface::Override.new(:virtual_path => "posts/_form",
:name => "example-1",
:replace => "h1",
:text => "<h1>New Post</h1>")
Inserts <%= link_to "List Comments", comments_url(post) %>
before all instances of p
with css class comment
in posts/index.html.erb
Deface::Override.new(:virtual_path => "posts/index",
:name => "example-2",
:insert_before => "p.comment",
:text => "<%= link_to "List Comments", comments_url(post) %>")
Inserts the contents of shared/_comment.html.erb
after all instances of div
with an id of comment_21
in posts/show.html.erb
Deface::Override.new(:virtual_path => "posts/show",
:name => "example-3",
:insert_after => "div#comment_21",
:partial => "shared/comment")
Removes any ERB block containing the string helper_method
in the posts/new.html.erb
template, will also log if markup being removed does not exactly match <%= helper_method %>
Deface::Override.new(:virtual_path => "posts/new",
:name => "example-4",
:remove => "code[erb-loud]:contains('helper_method')",
:original => "<%= helper_method %>")
Sets (or adds if not present) the class
and title
attributes to all instances of a
with an id of link
in posts/index.html.erb
Deface::Override.new(:virtual_path => 'posts/index',
:name => 'add_attrs_to_a_link',
:set_attributes => 'a#link',
:attributes => {:class => 'pretty', :title => 'This is a link'})
Remove an entire ERB if statement (and all it's contents) in the 'admin/products/index.html.erb' template, using the :closing_selector.
Deface::Override.new(:virtual_path => 'admin/products/index',
:name => "remove_if_statement",
:remove => "code[:erb-silent]:contains('if @product.sold?')",
:closing_selector => "code[:erb-silent]:contains('end')"
Deface scopes overrides by virtual_path (or partial / template file), that means all override names only need to be unique within that single file.
You can redefine an existing override by simply declaring a new override with the same :virtual_path and :name that was originally used. You do not need to resupply all the values originally used, just the ones you want to change:
Deface::Override.new(:virtual_path => 'posts/index', :name => 'add_attrs_to_a_link', :disabled => true)
Deface includes a couple of rake tasks that can be helpful when defining or debugging overrides.
deface:get_result - Will list the original contents of a partial or template, the overrides that have been defined for a that file, and the resulting markup. get_result takes a single argument which is the virtual path of the template / partial:
rake deface:get_result[shared/_head]
rake deface:get_result['admin/products/index']
deface:test_selector - Applies a given CSS selector against a parital or template and outputs the markup for each match (if any). test_selector requires two arguments, the first is the virtual_path for the partial / template, the second is the CSS selector to apply:
rake deface:test_selector[shared/_head,title]
rake deface:test_selector['admin/products/index','div.toolbar']
Deface temporarily converts ERB files into a pseudo HTML markup that can be parsed and queired by Nokogiri, using the following approach:
<%= some ruby code %>
becomes
<code erb-loud> some ruby code </code>
and
<% other ruby code %>
becomes
<code erb-silent> other ruby code </code>
ERB that is contained inside a HTML tag definition is converted slightly differently to ensure a valid HTML document that Nokogiri can parse:
<p id="<%= dom_id @product %>" <%= "style='display:block';" %>>
becomes
<p data-erb-id="<%= dom_id @product %>" data-erb-0="<%= "style='display:block';" %>">
Deface overrides have full access to all variables accessible to the view being customized.
Deface uses the amazing Nokogiri library (and in turn libxml) for parsing HTML / view files, in some circumstances either Deface's own pre-parser or libxml's will fail to correctly parse a template. You can avoid such issues by ensuring your templates contain valid HTML. Some other caveats include:
-
Ensure that your layout views include doctype, html, head and body tags in a single file, as Nokogiri will create such elements if it detects any of these tags have been incorrectly nested.
-
Parsing will fail and result in invalid output if ERB blocks are responsible for closing an HTML tag that was opened normally, i.e. don't do this:
<div <%= ">" %>