Sha256: 3fa0bea068bbc3d31ccc8f30850c7810b635387d251cf547853b1681853df582

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

require_relative 'base_generator'
module Fae
  class NestedIndexScaffoldGenerator < Fae::BaseGenerator
    source_root File.expand_path('../templates', __FILE__)

    def go
      generate_model
      generate_nested_index_controller_file
      inject_display_field_to_model
      generate_view_files
      add_route
      inject_nav_item
    end


    private

      def generate_nested_index_controller_file
        @attachments = @@attachments
        template "controllers/nested_index_scaffold_controller.rb", "app/controllers/#{options.namespace}/#{file_name.pluralize}_controller.rb"
      end

      def generate_view_files
        @toggle_attrs = set_toggle_attrs
        @form_attrs = set_form_attrs
        @association_names = @@association_names
        @attachments = @@attachments
        @has_position = @@has_position
        @display_field = @@display_field
        template "views/index_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/index.html.#{options.template}"
        template "views/_form_index_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/_form.html.#{options.template}"
        template "views/new_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/new.html.#{options.template}"
        template "views/edit_nested.html.#{options.template}", "app/views/#{options.namespace}/#{plural_file_name}/edit.html.#{options.template}"
      end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fae-rails-1.5.1 lib/generators/fae/nested_index_scaffold_generator.rb
fae-rails-1.5.0 lib/generators/fae/nested_index_scaffold_generator.rb