adding some parent CRUD
This commit is contained in:
parent
9f6813c7f2
commit
8cdb204a94
1
Gemfile
1
Gemfile
@ -13,6 +13,7 @@ gem 'uglifier', '>= 1.3.0'
|
|||||||
gem 'jquery-rails'
|
gem 'jquery-rails'
|
||||||
gem 'turbolinks'
|
gem 'turbolinks'
|
||||||
gem 'haml-rails', "~> 0.9"
|
gem 'haml-rails', "~> 0.9"
|
||||||
|
gem 'actionview-encoded_mail_to'
|
||||||
|
|
||||||
# gem 'rabl-rails', '~> 0.4.1'
|
# gem 'rabl-rails', '~> 0.4.1'
|
||||||
# gem 'jbuilder', '~> 2.0'
|
# gem 'jbuilder', '~> 2.0'
|
||||||
|
@ -20,6 +20,8 @@ GEM
|
|||||||
erubis (~> 2.7.0)
|
erubis (~> 2.7.0)
|
||||||
rails-dom-testing (~> 1.0, >= 1.0.5)
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
||||||
|
actionview-encoded_mail_to (1.0.7)
|
||||||
|
rails
|
||||||
activejob (4.2.4)
|
activejob (4.2.4)
|
||||||
activesupport (= 4.2.4)
|
activesupport (= 4.2.4)
|
||||||
globalid (>= 0.3.0)
|
globalid (>= 0.3.0)
|
||||||
@ -245,6 +247,7 @@ PLATFORMS
|
|||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
actionview-encoded_mail_to
|
||||||
awesome_print
|
awesome_print
|
||||||
bcrypt (~> 3.1.7)
|
bcrypt (~> 3.1.7)
|
||||||
binding_of_caller
|
binding_of_caller
|
||||||
|
@ -5,14 +5,40 @@ class ParentsController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@parent = Person.just_parents.where(id: params[:id])
|
@parent = Person.includes(:children).find_by_id(params[:id])
|
||||||
|
@more_children = Child.not_related_to(@parent.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
|
@parent = Person.new
|
||||||
|
3.times { @parent.children.build }
|
||||||
end
|
end
|
||||||
|
|
||||||
def add
|
def add
|
||||||
ap params
|
@parent = Person.create add_parent_params
|
||||||
redirect_to list_parents_path
|
|
||||||
|
if @parent.persisted?
|
||||||
|
redirect_to parent_path(@parent), notice: 'Success!'
|
||||||
|
return
|
||||||
|
else
|
||||||
|
render :new
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@parent = Person.includes(:children).find_by_id(params[:id])
|
||||||
|
@more_children = Child.all
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def add_parent_params
|
||||||
|
params.require(:parent).permit(
|
||||||
|
:first_name,
|
||||||
|
:last_name,
|
||||||
|
:phone,
|
||||||
|
:email,
|
||||||
|
children_attributes: [:first_name, :last_name]
|
||||||
|
)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
19
app/controllers/relationships_controller.rb
Normal file
19
app/controllers/relationships_controller.rb
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
class RelationshipsController < ApplicationController
|
||||||
|
def add_child
|
||||||
|
parent = Person.find(params[:parent])
|
||||||
|
child = Child.find(params[:child])
|
||||||
|
|
||||||
|
parent.parenthoods.create(child)
|
||||||
|
|
||||||
|
redirect_to :back, notice: 'Child added to parent!'
|
||||||
|
end
|
||||||
|
|
||||||
|
def del_child
|
||||||
|
parent = Person.find(params[:parent])
|
||||||
|
child = Child.find(params[:child])
|
||||||
|
|
||||||
|
parent.parenthoods.find_by_child_id(child.id).destroy
|
||||||
|
|
||||||
|
redirect_to :back, notice: 'Child removed from parent!'
|
||||||
|
end
|
||||||
|
end
|
@ -5,6 +5,17 @@ class Child < ActiveRecord::Base
|
|||||||
validates :first_name, presence: true
|
validates :first_name, presence: true
|
||||||
validates :last_name, presence: true
|
validates :last_name, presence: true
|
||||||
|
|
||||||
|
scope :not_related_to, lambda { |parent_id|
|
||||||
|
joins("LEFT JOIN (
|
||||||
|
SELECT child_id
|
||||||
|
FROM parenthoods
|
||||||
|
WHERE person_id = #{sanitize(parent_id)}
|
||||||
|
) as s1 on s1.child_id = children.id")
|
||||||
|
.where("s1.child_id is null")
|
||||||
|
.order(:first_name, :last_name)
|
||||||
|
.uniq
|
||||||
|
}
|
||||||
|
|
||||||
def name
|
def name
|
||||||
"#{first_name} #{last_name}"
|
"#{first_name} #{last_name}"
|
||||||
end
|
end
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
class Person < ActiveRecord::Base
|
class Person < ActiveRecord::Base
|
||||||
has_many :parenthoods
|
has_many :parenthoods
|
||||||
has_many :children, through: :parenthoods
|
has_many :children, through: :parenthoods
|
||||||
accepts_nested_attributes_for :children
|
accepts_nested_attributes_for :children, reject_if: :all_blank
|
||||||
|
|
||||||
validates :first_name, presence: true
|
validates :first_name, presence: true
|
||||||
validates :last_name, presence: true
|
validates :last_name, presence: true
|
||||||
|
validates :phone, presence: true
|
||||||
|
|
||||||
scope :with_name, lambda { |name|
|
scope :with_name, lambda { |name|
|
||||||
where("concat(first_name, ' ', last_name) RLIKE ?", name)
|
where("concat(first_name, ' ', last_name) RLIKE ?", name)
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
- @parents.each do |parent|
|
- @parents.each do |parent|
|
||||||
%ul
|
%ul
|
||||||
%li #{parent.name} #{page_link(parent)}
|
%li
|
||||||
|
= link_to parent.name, parent_path(parent)
|
||||||
|
= page_link(parent)
|
||||||
%li= number_to_phone parent.phone
|
%li= number_to_phone parent.phone
|
||||||
%li= mail_to parent.email
|
%li= mail_to parent.email
|
||||||
%li Children:
|
%li Children:
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
%h2 Add a New Parent
|
%h2 Add a New Parent
|
||||||
|
|
||||||
= form_for :parent do |f|
|
- if @parent.errors.full_messages.any?
|
||||||
|
.errors
|
||||||
|
%h1 Uh oh!
|
||||||
|
- @parent.errors.full_messages.each do |e|
|
||||||
|
%p= e
|
||||||
|
|
||||||
|
= form_for @parent, as: :parent, url: add_parent_path do |f|
|
||||||
= f.label :first_name
|
= f.label :first_name
|
||||||
= f.text_field :first_name
|
= f.text_field :first_name
|
||||||
|
|
||||||
@ -14,12 +20,11 @@
|
|||||||
= f.email_field :email
|
= f.email_field :email
|
||||||
|
|
||||||
%h3 Children:
|
%h3 Children:
|
||||||
|
= f.fields_for :children, @parent.children do |c|
|
||||||
= fields_for :child do |child|
|
%fieldset
|
||||||
= child.label :first_name
|
= c.label :first_name
|
||||||
= child.text_field :first_name
|
= c.text_field :first_name
|
||||||
|
= c.label :last_name
|
||||||
= child.label :last_name
|
= c.text_field :last_name
|
||||||
= child.text_field :last_name
|
|
||||||
|
|
||||||
= f.submit
|
= f.submit
|
||||||
|
@ -1,2 +1,21 @@
|
|||||||
%h2 Parent
|
%h2= @parent.name
|
||||||
= raw(ap @parent)
|
%p= link_to 'edit', edit_parent_path(@parent)
|
||||||
|
%p Email: #{mail_to(@parent.email, nil, encode: 'hex')}
|
||||||
|
%p Phone: #{number_to_phone @parent.phone} #{page_link(@parent)}
|
||||||
|
|
||||||
|
- unless @parent.children.empty?
|
||||||
|
%p Children:
|
||||||
|
%ul
|
||||||
|
- @parent.children.each do |child|
|
||||||
|
%li
|
||||||
|
= child.name
|
||||||
|
= link_to 'remove', del_parenthood_path(@parent, child), {method: :delete}
|
||||||
|
|
||||||
|
%p Add Child:
|
||||||
|
:ruby
|
||||||
|
select_options = options_from_collection_for_select(@more_children, :id, :name)
|
||||||
|
html_options = {
|
||||||
|
include_blank: false,
|
||||||
|
prompt: 'Add a child to parent'
|
||||||
|
}
|
||||||
|
= select_tag(:child, select_options, html_options)
|
||||||
|
@ -2,9 +2,13 @@ Rails.application.routes.draw do
|
|||||||
get 'parents', to: 'parents#index', as: :list_parents
|
get 'parents', to: 'parents#index', as: :list_parents
|
||||||
get 'parents/new', to: 'parents#new', as: :new_parent
|
get 'parents/new', to: 'parents#new', as: :new_parent
|
||||||
post 'parents/new', to: 'parents#add', as: :add_parent
|
post 'parents/new', to: 'parents#add', as: :add_parent
|
||||||
|
get 'parents/edit/:id', to: 'parents#edit', as: :edit_parent
|
||||||
get 'parents/:id', to: 'parents#show', as: :parent
|
get 'parents/:id', to: 'parents#show', as: :parent
|
||||||
post 'parents/:id', to: 'parents#update', as: :update_parent
|
post 'parents/:id', to: 'parents#update', as: :update_parent
|
||||||
|
|
||||||
|
post 'parenthood/:parent/:child', to: 'relationships#add_child', as: :add_parenthood
|
||||||
|
delete 'parenthood/:parent/:child', to: 'relationships#del_child', as: :del_parenthood
|
||||||
|
|
||||||
get 'children', to: 'children#index', as: :list_children
|
get 'children', to: 'children#index', as: :list_children
|
||||||
get 'children/lookup', to: 'children#lookup', as: :lookup_child
|
get 'children/lookup', to: 'children#lookup', as: :lookup_child
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user