Sha256: f465a01aa6a66f1f4ff4815756dd3150490cf02d5ee9274623aa37987a5950cc

Contents?: true

Size: 1.3 KB

Versions: 9

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

class Tramway::Landing::BlockDecorator < ::Tramway::Core::ApplicationDecorator
  class << self
    def collections
      [:all]
    end

    def list_attributes
      %i[page_title position view_state block_type]
    end

    def show_associations
      [:forms]
    end
  end

  decorate_association :forms
  decorate_association :page

  delegate_attributes :position, :title, :background, :anchor, :description, :view_name

  def public_path
    if object.published?
      Tramway::Page::Engine.routes.url_helpers.page_path slug: object.page.slug if object.page.slug.present?
    else
      Tramway::Page::Engine.routes.url_helpers.preview_path id: object.page.id
    end
  end

  def page_title
    object.page&.title
  end

  def block_type
    object.block_type_text
  end

  def view_state
    object.view_state
  end

  def link
    "##{object.anchor}"
  end

  def view_state_button_color(event)
    case event
    when :publish
      :primary
    when :hide
      :secondary
    end
  end

  def button
    if object.button.present? && object.button['button_title'].present? && object.button['button_link'].present?
      content_tag :a, href: object.button['button_link'], target: '_blank', class: 'btn btn-primary' do
        object.button['button_title']
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tramway-landing-3.3.0.6 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3.0.5 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3.0.4 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3.0.3 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3.0.2 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3.0.1 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.3 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.2.0.3 app/decorators/tramway/landing/block_decorator.rb
tramway-landing-3.2.0.2 app/decorators/tramway/landing/block_decorator.rb