Sha256: e144df77f5de26639ff07a1562d208e4046d7c77217d4a1f701b5c693055466e

Contents?: true

Size: 1.09 KB

Versions: 13

Compression:

Stored size: 1.09 KB

Contents

module Voluntary
  module ProductHelper
    def render_product_specific_presenter_if_available(resource, partial_path, method, options = {})
      if @presenter.respond_to?(method)
        @step_presenter = @presenter.send(method) 
      else
        @step_presenter = nil
      end
      
      render_product_specific_partial_if_available(resource, "#{partial_path}/#{method}", options)
    end
    
    def render_product_specific_partial_if_available(resource, partial_path, options = {})
      path = nil
      partial_path = partial_path.split('/')
      file_name = partial_path.pop
      partial_path = partial_path.join('/')
      
      if resource && resource.respond_to?(:product) && resource.product
        path = "products/types/#{directory_for_resource(resource.product)}/#{partial_path}"
        
        path = [path, file_name].join('/')
        
        begin 
          return render(path, options)
        rescue ActionView::MissingTemplate
          path = nil
        end
      end
  
      path = [partial_path, file_name].join('/') if path.blank?
  
      render path, options 
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
voluntary-0.7.1 app/helpers/voluntary/product_helper.rb
voluntary-0.7.0 app/helpers/voluntary/product_helper.rb
voluntary-0.6.0 app/helpers/voluntary/product_helper.rb
voluntary-0.5.2 app/helpers/voluntary/product_helper.rb
voluntary-0.5.1 app/helpers/voluntary/product_helper.rb
voluntary-0.5.0 app/helpers/voluntary/product_helper.rb
voluntary-0.4.0 app/helpers/voluntary/product_helper.rb
voluntary-0.3.0 app/helpers/voluntary/product_helper.rb
voluntary-0.2.4 app/helpers/voluntary/product_helper.rb
voluntary-0.2.3 app/helpers/voluntary/product_helper.rb
voluntary-0.2.2 app/helpers/voluntary/product_helper.rb
voluntary-0.2.1 app/helpers/voluntary/product_helper.rb
voluntary-0.2.0 app/helpers/voluntary/product_helper.rb