Sha256: 63d8e500f79adc4cc322c1bc55e22df6fd6a974cd1eb67dcd488a2f96ca1d219

Contents?: true

Size: 1.11 KB

Versions: 16

Compression:

Stored size: 1.11 KB

Contents

module Maglove
  module Widgets
    class ScrollableImage < Base
      def identifier
        "scrollable_image"
      end

      def defaults
        {
          source: false,
          show_navigation: true,
          height: "400px",
          margin_bottom: "0px"
        }
      end

      module Helpers
        def scrollable_image_widget(options = {})
          widget_block(Widgets::ScrollableImage.new(options)) do |widget|
            haml_tag :div, class: "scrollable-image-container #{widget.options[:show_navigation] ? 'show-navigation' : ''}", style: style_string(widget.options, :margin, :padding, :height) do
              haml_tag :div, class: "scrollable-image-inner" do
                haml_tag :img, class: "scrollable-image", src: widget.options[:source]
              end
              if widget.options[:show_navigation]
                haml_tag :div, class: "scrollable-image-navigator scrollable-image-navigator-left"
                haml_tag :div, class: "scrollable-image-navigator scrollable-image-navigator-right"
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
maglove-widgets-1.1.7 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.1.6 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.1.5 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.1.4 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.1.3 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-2.0.1 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.8 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.7 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.6 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-2.0.0 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.5 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.4 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.3 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.2 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.1 lib/maglove/widgets/scrollable_image.rb
maglove-widgets-1.0.0 lib/maglove/widgets/scrollable_image.rb