Module: EffectiveCartsHelper

Included in:
Effective::CartsController, Effective::OrdersController, Effective::SubscriptionsController
Defined in:
app/helpers/effective_carts_helper.rb

Instance Method Summary collapse

Instance Method Details

#current_cart(for_user = nil) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/helpers/effective_carts_helper.rb', line 2

def current_cart(for_user = nil)
  @cart ||= (
    user = for_user || (current_user rescue nil) # rescue protects me against Devise not being installed

    if user.present?
      Effective::Cart.where(user_id: user.id).first_or_create.tap do |user_cart|
        if session[:cart].present?
          session_cart = Effective::Cart.where('user_id IS NULL').where(id: session[:cart]).first

          if session_cart.present?
            session_cart.cart_items.update_all(cart_id: user_cart.id)
            session_cart.destroy
            user_cart.reload
          end

          session[:cart] = nil
        end
      end
    elsif session[:cart].present?
      Effective::Cart.where('user_id IS NULL').where(id: session[:cart]).first_or_create
    else
      cart = Effective::Cart.create!
      session[:cart] = cart.id
      cart
    end
  )
end

Raises:

  • (ArgumentError)


44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'app/helpers/effective_carts_helper.rb', line 44

def link_to_add_to_cart(purchasable, opts = {})
  raise ArgumentError.new('expecting an acts_as_purchasable object') unless purchasable.kind_of?(ActsAsPurchasable)

  options = {
    label: 'Add to Cart',
    class: 'btn btn-primary',
    rel: :nofollow,
    data: {
      disable_with: 'Adding...'
    }
  }.merge(opts)

  label = options.delete(:label)
  options[:class] = ((options[:class] || '') + ' btn-add-to-cart')

  link_to(label, effective_orders.add_to_cart_path(purchasable_type: purchasable.class.name, purchasable_id: purchasable.id.to_i), options)
end


100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'app/helpers/effective_carts_helper.rb', line 100

def link_to_checkout(opts = {})
  options = {
    label: 'Checkout',
    class: 'btn btn-primary',
    rel: :nofollow,
    data: {
      disable_with: 'Continuing...'
    },
  }.merge(opts)

  order = options.delete(:order)
  label = options.delete(:label)
  options[:class] = ((options[:class] || '') + ' btn-checkout')

  if order.present?
    link_to(label, effective_orders.edit_order_path(order), options)
  else
    link_to(label, effective_orders.new_order_path, options)
  end
end


30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'app/helpers/effective_carts_helper.rb', line 30

def link_to_current_cart(opts = {})
  options = {
    label: 'My Cart',
    id: 'current_cart',
    rel: :nofollow,
    class: 'btn btn-default'
  }.merge(opts)

  label = options.delete(:label)
  options[:class] = ((options[:class] || '') + ' btn-current-cart')

  link_to (current_cart.size == 0 ? label : "#{label} (#{current_cart.size})"), effective_orders.cart_path, options
end


82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'app/helpers/effective_carts_helper.rb', line 82

def link_to_empty_cart(opts = {})
  options = {
    label: 'Empty Cart',
    class: 'btn btn-danger',
    rel: :nofollow,
    data: {
      confirm: 'This will clear your entire cart.  Are you sure?',
      disable_with: 'Emptying...'
    },
    method: :delete
  }.merge(opts)

  label = options.delete(:label)
  options[:class] = ((options[:class] || '') + ' btn-empty-cart')

  link_to(label, effective_orders.cart_path, options)
end

Raises:

  • (ArgumentError)


62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'app/helpers/effective_carts_helper.rb', line 62

def link_to_remove_from_cart(cart_item, opts = {})
  raise ArgumentError.new('expecting an Effective::CartItem object') unless cart_item.kind_of?(Effective::CartItem)

  options = {
    label: 'Remove',
    class: 'btn btn-primary',
    rel: :nofollow,
    data: {
      confirm: 'Are you sure? This cannot be undone!',
      disable_with: 'Removing...'
    },
    method: :delete
  }.merge(opts)

  label = options.delete(:label)
  options[:class] = ((options[:class] || '') + ' btn-remove-from-cart')

  link_to(label, effective_orders.remove_from_cart_path(cart_item), options)
end

#render_cart(cart = nil) ⇒ Object



121
122
123
124
# File 'app/helpers/effective_carts_helper.rb', line 121

def render_cart(cart = nil)
  cart ||= current_cart
  render(partial: 'effective/carts/cart', locals: {cart: cart})
end

#render_purchasables(*purchasables) ⇒ Object



126
127
128
# File 'app/helpers/effective_carts_helper.rb', line 126

def render_purchasables(*purchasables)
  render(partial: 'effective/orders/order_items', locals: {order: Effective::Order.new(purchasables)})
end