Sha256: 87d2aad651c67868cb9fc096796762cc0cc937a90c7d2c6ec79047cb5bba4c78

Contents?: true

Size: 870 Bytes

Versions: 4

Compression:

Stored size: 870 Bytes

Contents

class Tramway::Event::EventDecorator < ::Tramway::Core::ApplicationDecorator
  class << self
    def collections
      [ :all ]
    end
  end

  delegate :title, to: :object
  delegate :description, to: :object
  delegate :participant_form_fields, to: :object
  delegate :sections, to: :object

  def background
    object.photo
  end

  def duration
    if object.begin_date.to_date == object.end_date.to_date
      "#{I18n.l(object.begin_date, format: '%d %B %Y')}"
    elsif object.begin_date.month == object.end_date.month
      "#{I18n.t('date.from')} #{I18n.l(object.begin_date, format: '%d')} #{I18n.t('date.to')} #{I18n.l(object.end_date, format: '%d %B %Y')}"
    else
      "#{I18n.t('date.from')} #{I18n.l(object.begin_date, format: '%d %B %Y')} #{I18n.t('date.to')} #{I18n.l(object.end_date, format: '%d %B %Y')}"
    end
  end

  alias tagline duration
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tramway-event-1.5.2 app/decorators/tramway/event/event_decorator.rb
tramway-event-1.5.1 app/decorators/tramway/event/event_decorator.rb
tramway-event-1.5 app/decorators/tramway/event/event_decorator.rb
tramway-event-1.4 app/decorators/tramway/event/event_decorator.rb