Skip to content

Commit

Permalink
automatic import from ryanb/railscasts-episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesbowkett committed Jul 29, 2011
0 parents commit 21d8ee2
Show file tree
Hide file tree
Showing 85 changed files with 8,673 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README
@@ -0,0 +1,24 @@
Railscasts Episode #176: Searchlogic

http://railscasts.com/episodes/176

Commands

sudo gem install searchlogic

script/console

Product.all
Product.name_like("Video")
Product.name_not_like("Video")
Product.name_not_like("Video").price_gt(5)
Product.name_not_like("Video").price_gt(5).price_lt(200)
Product.name_like_any(["couch", "table"])
Product.name_like_all(["video", "console"])
Category.all
Product.category_name_like("elect")
Product.search(:category_name_like => "elect", :price_lt => "100")
s = _
s.all
s.name_like("video")
Product.ascend_by_name
3 changes: 3 additions & 0 deletions store/.gitignore
@@ -0,0 +1,3 @@
tmp/*
log/*
*.sqlite3
4 changes: 4 additions & 0 deletions store/README
@@ -0,0 +1,4 @@
Railscasts Example Store App
--

To setup the app, just run `rake setup`.
10 changes: 10 additions & 0 deletions store/Rakefile
@@ -0,0 +1,10 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

require 'tasks/rails'
15 changes: 15 additions & 0 deletions store/app/controllers/application_controller.rb
@@ -0,0 +1,15 @@
# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.

class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time

# See ActionController::RequestForgeryProtection for details
# Uncomment the :secret if you're not using the cookie session store
protect_from_forgery # :secret => '526292d4095d0fd8135a9aa118f5956e'

# See ActionController::Base for details
# Uncomment this to filter the contents of submitted sensitive data parameters
# from your application log (in this case, all fields with names like "password").
# filter_parameter_logging :password
end
44 changes: 44 additions & 0 deletions store/app/controllers/categories_controller.rb
@@ -0,0 +1,44 @@
class CategoriesController < ApplicationController
def index
@categories = Category.find(:all)
end

def show
@category = Category.find(params[:id])
end

def new
@category = Category.new
end

def create
@category = Category.new(params[:category])
if @category.save
flash[:notice] = "Successfully created category."
redirect_to @category
else
render :action => 'new'
end
end

def edit
@category = Category.find(params[:id])
end

def update
@category = Category.find(params[:id])
if @category.update_attributes(params[:category])
flash[:notice] = "Successfully updated category."
redirect_to @category
else
render :action => 'edit'
end
end

def destroy
@category = Category.find(params[:id])
@category.destroy
flash[:notice] = "Successfully destroyed category."
redirect_to categories_url
end
end
45 changes: 45 additions & 0 deletions store/app/controllers/products_controller.rb
@@ -0,0 +1,45 @@
class ProductsController < ApplicationController
def index
@search = Product.search(params[:search])
@products = @search.all
end

def show
@product = Product.find(params[:id])
end

def new
@product = Product.new
end

def create
@product = Product.new(params[:product])
if @product.save
flash[:notice] = "Successfully created product."
redirect_to @product
else
render :action => 'new'
end
end

def edit
@product = Product.find(params[:id])
end

def update
@product = Product.find(params[:id])
if @product.update_attributes(params[:product])
flash[:notice] = "Successfully updated product."
redirect_to @product
else
render :action => 'edit'
end
end

def destroy
@product = Product.find(params[:id])
@product.destroy
flash[:notice] = "Successfully destroyed product."
redirect_to products_url
end
end
18 changes: 18 additions & 0 deletions store/app/controllers/searches_controller.rb
@@ -0,0 +1,18 @@
class SearchesController < ApplicationController
def new
@search = Search.new
end

def create
@search = Search.new(params[:search])
if @search.save
redirect_to @search
else
render :action => 'new'
end
end

def show
@search = Search.find(params[:id])
end
end
3 changes: 3 additions & 0 deletions store/app/helpers/application_helper.rb
@@ -0,0 +1,3 @@
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
end
2 changes: 2 additions & 0 deletions store/app/helpers/categories_helper.rb
@@ -0,0 +1,2 @@
module CategoriesHelper
end
23 changes: 23 additions & 0 deletions store/app/helpers/layout_helper.rb
@@ -0,0 +1,23 @@
# These helper methods can be called in your template to set variables to be used in the layout
# This module should be included in all views globally,
# to do so you may need to add this line to your ApplicationController
# helper :layout
module LayoutHelper
def title(page_title, show_title = true)
@content_for_title = page_title.to_s
@show_title = show_title
end

def show_title?
@show_title
end

def stylesheet(*args)
content_for(:head) { stylesheet_link_tag(*args.map(&:to_s)) }
end

def javascript(*args)
args = args.map { |arg| arg == :defaults ? arg : arg.to_s }
content_for(:head) { javascript_include_tag(*args) }
end
end
2 changes: 2 additions & 0 deletions store/app/helpers/products_helper.rb
@@ -0,0 +1,2 @@
module ProductsHelper
end
2 changes: 2 additions & 0 deletions store/app/helpers/searches_helper.rb
@@ -0,0 +1,2 @@
module SearchesHelper
end
3 changes: 3 additions & 0 deletions store/app/models/category.rb
@@ -0,0 +1,3 @@
class Category < ActiveRecord::Base
has_many :products
end
3 changes: 3 additions & 0 deletions store/app/models/product.rb
@@ -0,0 +1,3 @@
class Product < ActiveRecord::Base
belongs_to :category
end
16 changes: 16 additions & 0 deletions store/app/models/search.rb
@@ -0,0 +1,16 @@
class Search < ActiveRecord::Base
def products
@products ||= find_products
end

private

def find_products
search = Product.search
search.name_like(keywords) unless keywords.blank?
search.price_gte(minimum_price) unless minimum_price.blank?
search.price_lte(maximum_price) unless maximum_price.blank?
search.category_id_equals(category_id) unless category_id.blank?
search.all
end
end
7 changes: 7 additions & 0 deletions store/app/views/categories/_form.html.erb
@@ -0,0 +1,7 @@
<% form_for @category do |f| %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
8 changes: 8 additions & 0 deletions store/app/views/categories/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Category" %>
<%= render :partial => 'form' %>

<p>
<%= link_to "Show", @category %> |
<%= link_to "View All", categories_path %>
</p>
13 changes: 13 additions & 0 deletions store/app/views/categories/index.html.erb
@@ -0,0 +1,13 @@
<% title "Categories" %>
<% for category in @categories %>
<div class="category">
<h3><%= link_to h(category.name), category %></h3>
<div class="actions">
<%= link_to "Edit", edit_category_path(category) %> |
<%= link_to "Destroy", category, :confirm => 'Are you sure?', :method => :delete %>
</div>
</div>
<% end %>

<p><%= link_to "New Category", new_category_path %></p>
5 changes: 5 additions & 0 deletions store/app/views/categories/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Category" %>
<%= render :partial => 'form' %>

<p><%= link_to "Back to List", categories_path %></p>
13 changes: 13 additions & 0 deletions store/app/views/categories/show.html.erb
@@ -0,0 +1,13 @@
<% title @category.name %>

<ul>
<% for product in @category.products %>
<li><%= link_to h(product.name), product %></li>
<% end %>
</ul>

<p>
<%= link_to "Edit", edit_category_path(@category) %> |
<%= link_to "Destroy", @category, :confirm => 'Are you sure?', :method => :delete %> |
<%= link_to "View All", categories_path %>
</p>
22 changes: 22 additions & 0 deletions store/app/views/layouts/application.html.erb
@@ -0,0 +1,22 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><%= h(yield(:title) || "Untitled") %></title>
<%= stylesheet_link_tag 'application' %>
<%= yield(:head) %>
</head>
<body>
<div id="container">
<%- flash.each do |name, msg| -%>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<%- end -%>
<%- if show_title? -%>
<h1><%=h yield(:title) %></h1>
<%- end -%>
<%= yield %>
</div>
</body>
</html>
15 changes: 15 additions & 0 deletions store/app/views/products/_form.html.erb
@@ -0,0 +1,15 @@
<% form_for @product do |f| %>
<p>
<%= f.label :category_id %><br />
<%= f.collection_select :category_id, Category.all, :id, :name %>
</p>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :price %><br />
<%= f.text_field :price %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
11 changes: 11 additions & 0 deletions store/app/views/products/_product.html.erb
@@ -0,0 +1,11 @@
<div class="product">
<h3>
<%= link_to h(product.name), product %>
<%= number_to_currency(product.price) %>
</h3>
<div><%= link_to product.category.name, product.category %></div>
<div class="actions">
<%= link_to "Edit", edit_product_path(product) %> |
<%= link_to "Destroy", product, :confirm => 'Are you sure?', :method => :delete %>
</div>
</div>
8 changes: 8 additions & 0 deletions store/app/views/products/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Product" %>
<%= render :partial => 'form' %>

<p>
<%= link_to "Show", @product %> |
<%= link_to "View All", products_path %>
</p>
29 changes: 29 additions & 0 deletions store/app/views/products/index.html.erb
@@ -0,0 +1,29 @@
<% title "Products" %>
<% form_for @search do |f| %>
<p>
<%= f.label :name_like, "Name" %><br />
<%= f.text_field :name_like %>
</p>
<p>
<%= f.label :category_id_equals, "Category" %><br />
<%= f.collection_select :category_id_equals, Category.all, :id, :name, :include_blank => true %>
</p>
<p>
<%= f.label :price_gte, "Price Range" %><br />
<%= f.text_field :price_gte, :size => 8 %> - <%= f.text_field :price_lte, :size => 8 %>
</p>
<p>
<%= f.submit "Submit" %>
</p>
<% end %>

<p>
Sort by:
<%= order @search, :by => :name %> |
<%= order @search, :by => :price %>
</p>

<%= render @products %>

<p><%= link_to "New Product", new_product_path %></p>
5 changes: 5 additions & 0 deletions store/app/views/products/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Product" %>
<%= render :partial => 'form' %>

<p><%= link_to "Back to List", products_path %></p>

0 comments on commit 21d8ee2

Please sign in to comment.