Sha256: 93e8f743518e5f84062aeba92360044fe671b957f88ccb301bf965a2808aec37

Contents?: true

Size: 780 Bytes

Versions: 6

Compression:

Stored size: 780 Bytes

Contents

# frozen_string_literal: true

class Tramway::Page::PageDecorator < ::Tramway::Core::ApplicationDecorator
  class << self
    def collections
      [:all]
    end

    def show_associations
      [:blocks]
    end
    delegate :human_view_state_event_name, to: :model_class
  end

  delegate_attributes :title, :page_type, :body

  decorate_association :blocks, state_machines: [:view_state]

  def lead
    object.body.first 200
  end

  def link
    Tramway::Page::Engine.routes.url_helpers.page_path slug: object.slug
  end

  def public_path
    Tramway::Page::Engine.routes.url_helpers.page_path slug: object.slug if object.published?
  end

  def view_state_button_color(event)
    case event
    when :publish
      :success
    when :hide
      :default
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tramway-page-1.5.4 app/decorators/tramway/page/page_decorator.rb
tramway-page-1.5.3.7 app/decorators/tramway/page/page_decorator.rb
tramway-page-1.5.3.6 app/decorators/tramway/page/page_decorator.rb
tramway-page-1.5.3.4 app/decorators/tramway/page/page_decorator.rb
tramway-page-1.5.3.3 app/decorators/tramway/page/page_decorator.rb
tramway-page-1.5.3.2 app/decorators/tramway/page/page_decorator.rb