Giter VIP home page Giter VIP logo

refinerycms-elements's Introduction

Refinery CMS Elements

This repository is not maintained anymore.

Elements is an “entity–attribute–value model” system for Refinery CMS .
It automatically generates models and forms based on your schema definitions.

Features

The Elements engine has the following key features:

  • add properties to your pages and Elements documents without touching your database schema
  • define embeddable complex types of data (elements)
  • it supports different types of data (text, integer, float, boolean, date, datetime, image, resource, any, element and array) for your properties
  • built-in form editor, that automatically renders forms for your elements
  • it has an extensible widget system for the form editor; including widgets for color, rich text, pictures, resources and the basic data types
  • built-in image cropper
  • built-in image gallery to append images to your pages/documents

Requirements

Refinery CMS version 1.0.9 or above.

Installation

To install, add refinerycms-elements to your Gemfile and run `bundle install`:

gem "refinerycms-elements", :git => "git://github.com/beyama/refinerycms-elements.git"

After Elements is installed, you will need to generate the migration files and migrate your database:

rails g refinerycms_elements
rake db:migrate

Documentation

Definition of an element schema

Elements are defined by a schema. A schema simply consists of a name, optionally a parent schema (parent element) and a list of properties with optional constraints.

Here is an example of using the elements builder:


  Elements::ElementBuilder.create :album do |e|
    e.parent :embedded_element

    e.title 'Album'

    e.text :title, :required => true, :minimum => 1, :maximum => 250
    e.text :interpret, :minimum => 1, :maximum => 250
    e.text :description, :widget => 'EssenceRichTextView'

    e.resource :sample_song
  end

This defines a simple album element with four properties.
There are three self explaining builder methods: create, update and create_or_update. Each of them yields a property builder to describe the properties.

Possible property types are text, integer, float, boolean, date, datetime, color, image, resource, any, element and array.
The type ‘any’ is a special type, you can assign any ActiveRecord model to it (polymorphic association).

Possible options for properties are (all are optional):

  • pattern: a regular expression for text properties
  • required: boolean, true if property required otherwise false (default is false)
  • minimum: minimum length of a text property or minimum value of a number property
  • maximum: maximum length of a text property or maximum value of a number property
  • default: a default value
  • enum: an array of possible values (in some widgets rendered as selectbox)
  • widget: the name of the form widget to use (see below)

Editor widgets

Widgets are used to render form input elements in the elements editor. The editor and the widgets are realized with Backbone.js.

The following widgets are already built-in:

  • EssenceTextView: Renders a text input or textarea depending on the maximum length (default widget for text properties)
  • EssenceNumberView: Renders a text input for integer and float properties (default widget for integer and float properties)
  • EssenceBooleanView: Renders a checkbox (default widget for boolean properties)
  • EssenceColorView: Renders a color chooser (default widget for color properties)
  • EssenceRichTextView: A widget for text properties, it starts a wym editor
  • EssenceImageView: Renders an image chooser and allows cropping of images (default widget for image properties)
  • EssenceResourceView: Renders a resource chooser
  • ListView: A container widget to add elements to an array (default widget for array properties)

Element inheritance

Elements are inheritable. This is used internally to distinct three basic types of elements: EmbeddedElement, PageElement and DocumentElement.

Embedded elements are embeddable in page- and document-elements. Page elements can be associated to Refinery pages. Document elements are standalone and can be managed by the Elements back end.

Views for page elements

Elements offers the ability to add views for page elements. It looks for views under ‘app/views/elements/’ for a partial named like the page element underscored type name. If there is no partial found, it goes backwards up the type inheritance chain for a partial with matching name.

For example:

You have a page element ‘GrandchildPage’ which inherits from ‘ChildPage’ which inherits from ‘ParentPage’.
Elements will first look for a partial named ‘_grandchild_page.html.erb’, if not found, for a partial named ‘_child_page.html.erb’ and so on.

Views for embedded elements

Elements is using Cells for rendering embedded elements. For examples see under ‘app/cells/elements/’.

A Cell-class has to be named like your element with the extension ‘Cell’, if there was no Cell found, it goes backwards up the type inheritance chain of your element for a Cell with a matching name.

Usage of element classes

Elements classes are defined under the module ‘Elements::Types’. You can use them like any other ActiveRecord model.

For example:


  Elements::ElementBuilder.create :person do |e|
    e.title 'Person'

    e.text :first_name, :maximum => 250
    e.text :last_name, :maximum => 250
    e.date :birthday
  end

  # after compiling the model by reloading the page, restarting the application or calling Elements::Types.reload!

  Elements::Types::Person.create :first_name => 'John', :last_name => 'Doe', :birthday => Date.parse('9/9/1989')

Examples

Definition of an embeddable picture element schema (derived from EmbeddedElement)


  Elements::ElementBuilder.create :picture do |e|
    e.parent :embedded_element
    e.title 'Picture element'

    e.image :image
    e.text :caption, :maximum => 250
  end

Definition of a new page element schema (derived from PageElement)


  Elements::ElementBuilder.create :standard_page do |e|
    e.parent :page_element
    e.title 'Standard page'

    e.image :teaser_image, :title => "Teaser image"
    e.text  :teaser_text,  :title => "Teaser text", :maximum => 500, :widget => "EssenceRichTextView"
    e.image :header_image, :title => "Header image"
    e.text  :header_text,  :title => "Header text", :widget => "EssenceRichTextView"
    e.image :headline_image, :title => "Headline image"
    e.array :elements
    e.array :side_elements
  end

Sample usage in your html.erb partial

  
    <% if @element.has_property?(:header_image) && @element.header_image.present? %>
      <%
        image = @element.header_image.image.thumb('950x420#')
        style = "background: url(#{image.url}) no-repeat 0 0;"
      %>
      <div id="header-image" style="<%= style %>"></div>
    <% end %>
  

To do

  • more tests, more documentations (especially for the backbone.js based parts)
  • migration to Refinery CMS 2.x
  • support for adding css classes to elements (css class selectbox in elements)
  • implementation of form widgets for date and datetime
  • implementation of a widget for linking elements with Elements documents
  • support of element up casts
  • integration of property/element descriptions in the front end
  • create a Gem

How to contribute

If you find what looks like a bug:

  1. Check the GitHub issue tracker to see if anyone else has reported an issue.
  2. If you don’t see anything, create an issue with information about how to reproduce it.

If you want to contribute an enhancement or a fix:

  1. Fork the project on github.
  2. Make your changes with tests.
  3. Commit the changes without making changes to any files that aren’t related to your enhancement or fix.
  4. Send a pull request.

License

Designed and created by Alexander Jentz, Germany.

MIT License. See the included MIT-LICENSE file.

refinerycms-elements's People

Stargazers

Matt Lucas avatar Roman Schlagowsky avatar Chris Edwards avatar Oleg Gunchenko avatar

Watchers

Alexander Jentz avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.