# Inverter *Easy way to connect Rails templates content to CMS* Mark content that you want to change via CMS in Rails templates. It's automatically populated to models and is accessible via CMS. When Rails renders template it pulls editable content from databased automatically. This gem intendent to be used with [Character](https://github.com/slates-studio/character) based project to satisfy all dependencies. ## Setup Add to ```Gemfile```: gem "inverter" Setup initializer ```config/initializers/inverter.rb```: ```ruby Inverter.configure do |config| # model that stores template editable blocks config.model_class = Page # folders which templates are editable config.template_folders = %w( pages ) # templates from template_folders the are not editable config.excluded_templates = %w( pages/home ) # disable Inverter middleware config.disable_middleware = false end ``` Configure model that stores template content, e.g. ```models/page.rb```: ```ruby class Page include Mongoid::Document include Mongoid::Timestamps include Mongoid::Inverter include UnderscoreId end ``` Setup admin page controller configuration ```controllers/admin/api/pages_controller.rb```: ```ruby module Admin module Api class PagesController < BaseController end end end ``` ### Meta Tags ```Mongoid::Inverter``` concern includes page meta tags fields. Check out [meta-tags](https://github.com/kpumuk/meta-tags) gem documentation for usage details, it helps to make pages SEO friendly. To enable meta-tags support include following helper in application layout: ```erb <%= display_meta_tags title: 'Default Website Title', description: 'Default Website Description', open_graph: { type: 'website', title: 'Default Website Title', description: 'Default Website Description', image: 'https://slate-git-images.s3-us-west-1.amazonaws.com/slate.png' } %> ``` To override default behavior add custom fields and write own ```update_inverter_meta_tags``` implementation. ### View Example An example of editable template with five content blocks and page name (to identify page in CMS), e.g. ```pages/about.html.erb```: ```html
Blocks could have not only plain HTML but a Ruby template code as well. For example these links below are going to be rendered and saved as HTML links in the page objects.
This content is editable via CMS, please go to website <%= link_to 'admin', admin_path %> and check how it can be changed.
You can use markdown in your views as well. [redcarpet](https://github.com/vmg/redcarpet) gem is used as markdown rendere.This is an example of the content block named footer. This content is editable via CMS, please go to website <%= link_to 'admin', admin_path %> and check how it can be changed.
<%= link_to 'Slate', 'http://www.slatestudio.com', target: '_blank' %>
``` ### Middleware Inverter middleware helps to keep inverter objects up to date with template changes in development environment. If new template added to tracked folders it's linked automatically and correspoding inverter object created. After tracked template deleted a tracking inverter object is removed as well. It also watches changes in templates: adding new blocks and removing existing ones. When block is renamed inverter thinks that the new one added and previous removed so content for the previous is lost. ### Character Configuration Inverter supports [chr](https://github.com/slate-studio/chr) out of the box. Include custom input in the cms configuration file ```admin.coffee```, and setup module configuration: ```coffeescript #= require inverter pagesConfig = -> config = disableNewItems: true disableDelete: true arrayStore: new RailsArrayStore({ resource: 'page' path: '/admin/pages' }) formSchema: version: { type: 'inverter-version', path: '/admin/pages' } _meta_title: { type: 'string', label: 'Title' } _meta_description: { type: 'text', label: 'Description' } _meta_keywords: { type: 'text', label: 'Keywords' } _opengraph_image_url: { type: 'string', label: 'Image URL' } _blocks: { type: 'inverter' } return config ``` Inverer ```version``` input allows to select previous version of the page to edit. Inverter input has an option ```defaultInputType``` that specifies what input type should be used as default, if nothing specified ```text``` is used. This might be set to WYSIWYG editor of your choice, e.g: ```coffeescript _blocks: { type: 'inverter', defaultInputType: 'redactor' } ``` You can also specify input type that you want to use for specific block like this: `````` — in this case ```Main Body``` would be a label and ```text``` is an input type that will be used to edit this block in CMS. Include inverter styles for cms inputs into character styles configuration file ```admin.scss``` ```scss @import "inverter"; ``` ### Rake Tasks To reset all inverter objects to template defaults run: rake inverter:reset **You need to run this rake task manually after first production deploy.** Middleware synchronizes objects only for development mode. To sync all inverter objects with template changes run: rake inverter:sync **You might need to run this command on production after deploy if some templates blocks were changed.**