Search code examples
ruby-on-railsruby-on-rails-4rails-generate

Rails 4 uninitialized constant Admin::Category


I have generated Admin namespaced Controllers for all my default models as follows:

rails g scaffold_controller admin/categories name:string slug:string description:string icon_xlarge:string icon_large:string icon_medium:string icon_small:string status:integer

This generated the following files:

Harshas-MacBook-Pro:nomad harshamv$ rails g scaffold_controller admin/categories name:string slug:string description:string icon_xlarge:string icon_large:string icon_medium:string icon_small:string status:integer
Plural version of the model detected, using singularized version. Override with --force-plural.
      create  app/controllers/admin/categories_controller.rb
      invoke  erb
      create    app/views/admin/categories
      create    app/views/admin/categories/index.html.erb
      create    app/views/admin/categories/edit.html.erb
      create    app/views/admin/categories/show.html.erb
      create    app/views/admin/categories/new.html.erb
      create    app/views/admin/categories/_form.html.erb
      invoke  test_unit
      create    test/controllers/admin/categories_controller_test.rb

app/model/category.rb

class Category < ActiveRecord::Base

  extend FriendlyId

  friendly_id :name, use: :slugged

  has_and_belongs_to_many :venues

end

app/controller/admin/categories_controller.rb

class Admin::CategoriesController < ApplicationController
  before_action :set_admin_category, only: [:show, :edit, :update, :destroy]

  # GET /admin/categories
  def index
    @admin_categories = Admin::Category.all
  end

  # GET /admin/categories/1
  def show
  end

  # GET /admin/categories/new
  def new
    @admin_category = Admin::Category.new
  end

  # GET /admin/categories/1/edit
  def edit
  end

  # POST /admin/categories
  def create
    @admin_category = Admin::Category.new(admin_category_params)

    if @admin_category.save
      redirect_to @admin_category, notice: 'Category was successfully created.'
    else
      render :new
    end
  end

  # PATCH/PUT /admin/categories/1
  def update
    if @admin_category.update(admin_category_params)
      redirect_to @admin_category, notice: 'Category was successfully updated.'
    else
      render :edit
    end
  end

  # DELETE /admin/categories/1
  def destroy
    @admin_category.destroy
    redirect_to admin_categories_url, notice: 'Category was successfully destroyed.'
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_admin_category
      @admin_category = Admin::Category.find(params[:id])
    end

    # Only allow a trusted parameter "white list" through.
    def admin_category_params
      params.require(:admin_category).permit(:name, :slug, :description, :icon_xlarge, :icon_large, :icon_medium, :icon_small, :status)
    end
end

app/view/admin/categories/index.html.erb

<h1>Listing admin_categories</h1>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Slug</th>
      <th>Description</th>
      <th>Icon xlarge</th>
      <th>Icon large</th>
      <th>Icon medium</th>
      <th>Icon small</th>
      <th>Status</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @admin_categories.each do |admin_category| %>
      <tr>
        <td><%= admin_category.name %></td>
        <td><%= admin_category.slug %></td>
        <td><%= admin_category.description %></td>
        <td><%= admin_category.icon_xlarge %></td>
        <td><%= admin_category.icon_large %></td>
        <td><%= admin_category.icon_medium %></td>
        <td><%= admin_category.icon_small %></td>
        <td><%= admin_category.status %></td>
        <td><%= link_to 'Show', admin_category %></td>
        <td><%= link_to 'Edit', edit_admin_category_path(admin_category) %></td>
        <td><%= link_to 'Destroy', admin_category, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Category', new_admin_category_path %>

My Attempts

I edited the Controller as below

 # GET /admin/categories
  def index
    @admin_categories = Category.all
  end

  # GET /admin/categories/1
  def show
  end

  # GET /admin/categories/new
  def new
    @admin_category = Category.new
  end

  # GET /admin/categories/1/edit
  def edit
  end

  # POST /admin/categories
  def create
    @admin_category = Category.new(admin_category_params)

    if @admin_category.save
      redirect_to @admin_category, notice: 'Category was successfully created.'
    else
      render :new
    end
  end

When I go to localhost/admin/categories and click "NEW category", I get the following error now:

My routes file:

Rails.application.routes.draw do

  # Admin Routing
  namespace :admin do
    resources :categories, :cities, :countries, :lists, :oauths, :regions, :tags, :users, :user_groups, :venues, :venue_photos, :venue_reviews
  end

end

Solution

  • You have resources :categories defined under the namespace :admin in your routes.rb,so this line in your views/admins/categories/_form.html.erb

    <%= form_for(@admin_category) do |f| %>
    

    should be

    <%= form_for([:admin, @admin_category]) do |f| %>
    

    For more info,refer this API

    Update

    The second error is because of this line

    params.require(:admin_category).permit(:name, :slug, :description, :icon_xlarge, :icon_large, :icon_medium, :icon_small, :status)
    

    It should be

    params.require(:category).permit(:name, :slug, :description, :icon_xlarge, :icon_large, :icon_medium, :icon_small, :status)