I have a database structure for Categories as id, name, parent_id.

A user can input a category and if it doesn't have a parent, the parent_id field will be set to 0.

My view is a basic loop shown here:

  <% @categories.each do |category| %>
    <tr class="<%= cycle('one', 'two') %>">
      <td>

        <%= indent(depth(category.id)) %> 
        <%= best_in_place category, :name %>

        <%= link_to(image_tag('/images/delete.png', :class => 'delete'), "categories/delete/#{category.id}")%>
      </td>
    </tr>
  <% end %>

The indent(depth(category.id)) function is just a way to get the depth of the child category and add that many -'s for visual purposes. http://d.pr/Ss8e

My problem is that the children aren't being listed under their respective parent. I'm not sure how to go about this, any advice? (group_by or another loop maybe?)

EDIT: Sorry for not being clear. The db structure I have is like this:

CATEGORIES
   id, name, parent_id, user_id
ITEMS
   id, name, category_id

I am looking to show the categories like this:

Parent1
  Child1
  Child2
Parent2
  Child1

Currently, the loop lists the items based on when they were created, it does not group them by parent_id like I'd like

link|improve this question

60% accept rate
do you have methods on your category parent and children ? if not, start there and create those – Jesse Wolgamott Jan 20 at 19:26
I'm not sure what you mean, the methods I have for Categories inside the controller is @categories = @user.categories – bcackerman Jan 20 at 19:29
You still haven't told me what a parent is. Is it another category? such that a category can be associated as a child of another category? – Kyle Macey Jan 20 at 21:19
Sorry, so I'm creating a parent/child category relationship where every category can have 1 parent and/or 1 child. (visual: codeproject.com/KB/database/nestedsets/nestedsets1.gif) – bcackerman Jan 22 at 18:09
feedback

2 Answers

up vote 0 down vote accepted

It seems that you should have:

category.rb

class Category < ActiveRecord::Base
  scope :parents, lambda {where("parent_ID IS NOT NULL")}
  scope: for_parent, lambda{|parent| where(:parent_id => parent.id)}

  def children
    Category.for_parent(self)
  end
end

Then in your controller:

@categories = Category.parents.all

And in your view

<% @categories.each do |category| %>
  <tr>
    <td><%= category.name %></td>
  </tr>
  <% category.children.each do |child| %>
    <tr>
      <td><%= child.name %></td>
    </tr>
  <% end %>
<% end %>
link|improve this answer
Thanks but I tried running that and got Illegal instruction in terminal and it quit the server instance – bcackerman Jan 23 at 1:57
I update a typo in the category#children loop and the for_parent lambda. If that was the problem, easily fixed. – Jesse Wolgamott Jan 23 at 2:10
feedback

With a parent_id, category BELONGS_TO parent, and parent has_many :categories

<% @parents.each do |parent| %>
  <h1><%= parent.name %></h1>
  <% parent.categories.each do |category| %>
    <!-- Your stuff here -->
  <% end %>
<% end %>
link|improve this answer
Does this enable me to create unlimited child categories? – bcackerman Jan 20 at 19:53
I don't believe I understand... Do you have the has_many and belongs_to relationships set up in your models? – Kyle Macey Jan 20 at 19:56
I have 1 Category table, 1 Items table and 1 User table. Category belongs to User, Category has many items – bcackerman Jan 20 at 20:07
so is User the parent? is parent_id a record of the user id? or is that something else? – Kyle Macey Jan 20 at 20:14
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.