Sha256: db696829ef3e27f65e0230fc23c969751adb28c19c1a15efa9bac02472e59d02

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 KB

Contents

require File.join(__FILE__, '../../base')

module Alchemy
  module Generators
    class ElementsGenerator < Base
      desc "This generator generates your elements view partials."
      source_root File.expand_path('templates', File.dirname(__FILE__))

      def create_partials
        @elements = load_alchemy_yaml('elements.yml')
        @elements.each do |element|
          @element = element
          @contents = element["contents"] || []
          if element["name"] =~ /\A[a-z0-9_-]+\z/
            @element_name = element["name"].underscore
          else
            raise "Element name '#{element['name']}' has wrong format. Only lowercase and non whitespace characters allowed."
          end

          conditional_template "editor.html.#{template_engine}", "#{elements_dir}/_#{@element_name}_editor.html.#{template_engine}"
          conditional_template "view.html.#{template_engine}", "#{elements_dir}/_#{@element_name}_view.html.#{template_engine}"
        end if @elements
      end

      private

      def elements_dir
        @_elements_dir ||= "app/views/alchemy/elements"
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy_cms-3.5.0 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.4.2 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.5.0.rc2 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.5.0.rc1 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.4.1 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.4.0 lib/rails/generators/alchemy/elements/elements_generator.rb
alchemy_cms-3.4.0.rc1 lib/rails/generators/alchemy/elements/elements_generator.rb