Sha256: e7ac78a5bb26066ff15cea71b081aaee8161363280f53ec44ae8f6332b077e69

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

require_dependency 'tramway/conference/application_controller'

class Tramway::Conference::Web::WelcomeController < ::Tramway::Conference::ApplicationController
  def index
    @unity = ::Tramway::Conference::Unity.includes(:social_networks).first
    @blocks = ::Tramway::Landing::BlockDecorator.decorate ::Tramway::Landing::Block.on_main_page
    @news = ::Tramway::News::News.active.first(3).map { |t| ::Tramway::Landing::Cards::NewsDecorator.new t }
    past_events = ::Tramway::Event::EventLinkDecorator.decorate ::Tramway::Event::Event.active.past.open.order begin_date: :desc
    past_events_links = Tramway::Landing::NavbarDecorator.new [{ past_events: past_events }]
    actual_events = ::Tramway::Event::EventLinkDecorator.decorate ::Tramway::Event::Event.active.actual.open.order :begin_date
    @links = actual_events + past_events_links
    @close_events = ::Tramway::Event::Event.actual.open.map do |event|
      ::Tramway::Event::EventAsPageWithButtonDecorator.decorate event
    end
    @partners = ::Tramway::Partner::Partnership.partnership_type.values.reduce({}) do |hash, partnership_type|
      hash.merge! partnership_type => (@unity.send(partnership_type.to_s.pluralize).active.map do |partner|
        Tramway::Partner::OrganizationFeatureDecorator.decorate partner
      end)
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tramway-conference-1.9.5.1 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.5 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.4.4 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.4.3 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.4.2 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.4.1 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.4 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.3.1 app/controllers/tramway/conference/web/welcome_controller.rb
tramway-conference-1.9.3 app/controllers/tramway/conference/web/welcome_controller.rb