I'm trying to make an online store using sinatra and activereord (using the sinatra-activerecord gem), and I'm having a little trouble getting my head around how to generate a 'tree' of categories (subcategories and stuff).
The categories database contains just the category name and the parent_id, and the activrecord model is as follows:
class Category < ActiveRecord::Base
validates_presence_of :name
validates_uniqueness_of :name
has_many :sub_categories, :class_name => 'Category',
:foreign_key => 'parent_id', :dependent => :destroy
has_many :products, :dependent => :destroy
belongs_to :parent_category, :class_name => 'Category'
end
How would I go about making that something i can just have in templates as nested ul tags (i'm using haml if it makes a difference)?
Sorry for asking so much but I have never really worked with these sort of data structures.
@sub = Category.find(...).sub_categoriesand in the template iterate over@subto display each sub-category. I'm not quite sure since I'm not using ActiveRecord – daddz Jul 7 '11 at 8:48