Class: InlineForms::InlineFormsGenerator
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- InlineForms::InlineFormsGenerator
- Defined in:
- lib/generators/inline_forms_generator.rb
Overview
Usage
This generator generates a migration, a model and a controller.
rails g inline_forms Model attribute:type [attribute:type ...] [options]
Read more about the possible types below.
Overriding Rails::Generators::GeneratedAttribute
When using a generator in the form
rails g example_generator Modelname attribute:type attribute:type ...
an array with attributes and types is created for use in the generator.
Rails::Generators::GeneratedAttribute creates, among others, a attribute_type. This attribute_type maps column types to form attribute helpers like text_field. We override it here to make our own.
Instance Method Summary collapse
- #add_second_top_bar ⇒ Object
- #add_tab ⇒ Object
- #generate_controller ⇒ Object
- #generate_migration ⇒ Object
- #generate_model ⇒ Object
- #generate_resource_route ⇒ Object
- #generate_test ⇒ Object
-
#set_some_flags ⇒ Object
using flags.
Instance Method Details
#add_second_top_bar ⇒ Object
209 210 211 |
# File 'lib/generators/inline_forms_generator.rb', line 209 def copy_file "_inline_forms_tabs.html.erb", "app/views/_inline_forms_tabs.html.erb" unless File.exist?('app/views/_inline_forms_tabs.html.erb') end |
#add_tab ⇒ Object
213 214 215 216 217 218 219 |
# File 'lib/generators/inline_forms_generator.rb', line 213 def add_tab unless @flag_not_accessible_through_html inject_into_file "app/controllers/application_controller.rb", "#{name.pluralize.underscore} ", :after => "ActionView::CompiledTemplates::MODEL_TABS = %w(" end end |
#generate_controller ⇒ Object
225 226 227 |
# File 'lib/generators/inline_forms_generator.rb', line 225 def generate_controller template "controller.erb", "app/controllers/#{controller_file_name}.rb" if @flag_create_controller end |
#generate_migration ⇒ Object
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/generators/inline_forms_generator.rb', line 182 def generate_migration if @flag_create_migration @columns = String.new for attribute in attributes if attribute.column_type == :image @columns << ' t.string :' + attribute.name + "_file_name\n" @columns << ' t.string :' + attribute.name + "_content_type\n" @columns << ' t.integer :' + attribute.name + "_file_size\n" @columns << ' t.datetime :' + attribute.name + "_updated_at\n" else if attribute.migration? attribute.attribute_type == :unknown ? commenter = '#' : commenter = ' ' @columns << commenter + ' t.' + attribute.column_type.to_s + " :" + attribute.name + " \n" end end end @primary_key_option = @create_id ? '' : ', id: false' template "migration.erb", "db/migrate/#{time_stamp}_inline_forms_create_#{table_name}.rb" end end |
#generate_model ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/generators/inline_forms_generator.rb', line 93 def generate_model if @flag_create_model @belongs_to = "\n" @has_many = "\n" @has_one = "\n" @habtm = "\n" @has_attached_files = "\n" @presentation = "\n" @order = "\n" @order_by_clause = " def self.order_by_clause\n" + " \"name\"\n" + " end\n" + "\n" @carrierwave_mounters = "\n" @inline_forms_attribute_list = String.new for attribute in attributes if attribute.column_type == :belongs_to ## :drop_down, :references and :belongs_to all end up with the column_type :belongs_to @belongs_to << ' belongs_to :' + attribute.name + "\n" end # upload images or audio files via carrierwave case attribute.type when :image_field, :audio_field then @carrierwave_mounters << ' mount_uploader :' + attribute.name + ', ' + "#{attribute.name}_uploader".camelcase + "\n" end if attribute.type == :has_many || attribute.type == :has_many_destroy @has_many << ' has_many :' + attribute.name @has_many << ', :dependent => :destroy' if attribute.type == :has_many_destroy @has_many << "\n" end if attribute.type == :has_one @has_one << ' has_one :' + attribute.name + "\n" end if attribute.type == :habtm || attribute.type == :has_and_belongs_to_many || attribute.type == :check_list @habtm << ' has_and_belongs_to_many :' + attribute.name + "\n" end if attribute.name == '_presentation' @presentation << " def _presentation\n" + " \"#{attribute.type.to_s}\"\n" + " end\n" + "\n" end if attribute.name == '_order' @order << " def <=>(other)\n" + " self.#{attribute.type} <=> other.#{attribute.type}\n" + " end\n" + "\n" @order_by_clause = " def self.order_by_clause\n" + " \"#{attribute.type}\"\n" + " end\n" + "\n" end if attribute.attribute? attribute.attribute_type == :unknown ? commenter = '#' : commenter = ' ' @inline_forms_attribute_list << commenter + ' [ :' + attribute.name + ' , "' + attribute.name + '", :' + attribute.attribute_type.to_s + " ], \n" end end unless @inline_forms_attribute_list.empty? @inline_forms_attribute_list = "\n" + " def inline_forms_attribute_list\n" + " @inline_forms_attribute_list ||= [\n" + @inline_forms_attribute_list + " ]\n" + " end\n" + "\n" end template "model.erb", "app/models/#{model_file_name}.rb" end end |
#generate_resource_route ⇒ Object
171 172 173 174 175 176 177 178 179 180 |
# File 'lib/generators/inline_forms_generator.rb', line 171 def generate_resource_route if @flag_create_resource_route route <<-ROUTE.strip_heredoc resources :#{resource_name} do post 'revert', :on => :member get 'list_versions', :on => :member end ROUTE end end |
#generate_test ⇒ Object
221 222 223 |
# File 'lib/generators/inline_forms_generator.rb', line 221 def generate_test template "test.erb", "test/unit/#{test_file_name}.rb" end |
#set_some_flags ⇒ Object
using flags.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/generators/inline_forms_generator.rb', line 78 def set_some_flags @flag_not_accessible_through_html = true @flag_create_migration = true @flag_create_model = true @create_id = true for attribute in attributes @flag_not_accessible_through_html = false if attribute.name == '_enabled' @flag_create_migration = false if attribute.name == '_no_migration' @flag_create_model = false if attribute.name == '_no_model' @create_id = false if attribute.name == "_id" && attribute.type == :false end @flag_create_controller = @flag_create_model @flag_create_resource_route = @flag_create_model end |