Sha256: d43d5cab5717e0ec2af7744994c187a4406ada0bfd2203bad6aa106ef407effe

Contents?: true

Size: 562 Bytes

Versions: 62

Compression:

Stored size: 562 Bytes

Contents

module Workarea
  module Storefront
    module ContentBlocks
      class HeroViewModel < ContentBlockViewModel
        def image
          find_asset(data[:asset])
        end

        def button_style_class
          classes = ['button']
          classes << 'button--large' if data[:style] == 'Large'
          classes << 'button--small' if data[:style] == 'Small'

          classes.join(' ')
        end

        def button_position_class
          "hero-content-block__button--#{data[:position].optionize.dasherize}"
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.5.27 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.26 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.45 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.25 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.23 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.44 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.22 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.43 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.21 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.42 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.20 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.41 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.19 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.40 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.18 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.39 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.17 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.38 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.16 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.37 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb