Sha256: 759fcf59adb0a079757d445f7fe06a4097c587c84f0668582cd0a926ddb44848

Contents?: true

Size: 1.54 KB

Versions: 2

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module Decidim
  module Meetings
    module ContentBlocks
      class UpcomingMeetingsCell < Decidim::ViewModel
        include Decidim::CardHelper

        def show
          return if upcoming_meetings.blank?

          render
        end

        def upcoming_meetings
          @upcoming_meetings ||= Decidim::Meetings::Meeting
                                 .includes(component: :participatory_space)
                                 .where(component: meeting_components)
                                 .visible_meeting_for(current_user)
                                 .where("end_time >= ?", Time.current)
                                 .except_withdrawn
                                 .order(start_time: :asc)
                                 .limit(limit)
        end

        def geolocation_enabled?
          Decidim::Map.available?(:geocoding)
        end

        def meetings_directory_path
          Decidim::Meetings::DirectoryEngine.routes.url_helpers.root_path
        end

        private

        def limit
          geolocation_enabled? ? 4 : 8
        end

        def meeting_components
          @meeting_components ||= Decidim::Component
                                  .where(manifest_name: "meetings")
                                  .where(participatory_space: participatory_spaces)
                                  .published
        end

        def participatory_spaces
          @participatory_spaces ||= current_organization.public_participatory_spaces
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-meetings-0.26.0.rc2 app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb
decidim-meetings-0.26.0.rc1 app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb