Sha256: 1ae6859fac769580f319ceba42ee34158de366a301805dc212857e1028f36964

Contents?: true

Size: 1016 Bytes

Versions: 6

Compression:

Stored size: 1016 Bytes

Contents

module CheckoutHelper

  def checkout_progress
    states = %w(address delivery payment confirm complete)
    items = states.map do |state|
      text = t("order_state.#{state}").titleize

      css_classes = []
      current_index = states.index(@order.state)
      state_index = states.index(state)

      if state_index < current_index
        css_classes << 'completed'
        text = link_to text, checkout_state_path(state)
      end

      css_classes << 'next' if state_index == current_index + 1
      css_classes << 'current' if state == @order.state
      css_classes << 'first' if state_index == 0
      css_classes << 'last' if state_index == states.length - 1
      # It'd be nice to have separate classes but combining them with a dash helps out for IE6 which only sees the last class
      content_tag('li', content_tag('span', text), :class => css_classes.join('-'))
    end
    content_tag('ol', raw(items.join("\n")), :class => 'progress-steps', :id => "checkout-step-#{@order.state}")
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_core-0.30.2 app/helpers/checkout_helper.rb
spree_core-0.40.2 app/helpers/checkout_helper.rb
spree_core-0.40.1 app/helpers/checkout_helper.rb
spree_core-0.40.0 app/helpers/checkout_helper.rb
spree_core-0.30.1 app/helpers/checkout_helper.rb
spree_core-0.30.0 app/helpers/checkout_helper.rb