Sha256: a66000269e083b042392c04568dd1ce8bac6474c2b7705ac5f4182ada78ec3b3

Contents?: true

Size: 661 Bytes

Versions: 69

Compression:

Stored size: 661 Bytes

Contents

# frozen_string_literal: true

class Tramway::Event::SectionDecorator < ::Tramway::Landing::BlockTypes::FeaturesDecorator
  class << self
    def collections
      [:all]
    end
  end

  delegate :description, to: :object
  decorate_association :event
  decorate_association :partakings, decorator: Tramway::Event::PartakingFeatureDecorator

  def name
    "#{object.title} | #{object.event.title}"
  end

  def title
    "#{fa_icon(object.icon)} #{object.title}".html_safe
  end

  def background
    object.photo
  end

  def anchor
    "section-#{object.id}"
  end

  def event_title
    event.title
  end

  def event_duration
    event.duration
  end
end

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
tramway-event-1.11.4.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11.4 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11.2.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11.2 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11.0.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.11 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.10.2 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.10.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.10.0.2 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.10.0.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.10 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.31.2 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.31.1 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.31 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.30 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.29 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.28.4 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.28.3 app/decorators/tramway/event/section_decorator.rb
tramway-event-1.9.28.2 app/decorators/tramway/event/section_decorator.rb