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.15 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.36 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.14 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.35 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.13 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.34 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.12 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.33 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.11 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.10 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.32 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.9 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.31 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.8 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.30 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.7 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.29 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.6 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.4.28 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb
workarea-storefront-3.5.5 app/view_models/workarea/storefront/content_blocks/hero_view_model.rb