class Decidim::Meetings::ContentBlocks::UpcomingEventsCell
def geolocation_enabled?
def geolocation_enabled? Decidim.geocoder.present? end
def limit
def limit geolocation_enabled? ? 4 : 8 end
def meeting_components
def meeting_components @meeting_components ||= Decidim::Component .where(manifest_name: "meetings") .where(participatory_space: participatory_spaces) .published end
def meetings_directory_path
def meetings_directory_path Decidim::Meetings::DirectoryEngine.routes.url_helpers.root_path end
def participatory_spaces
def participatory_spaces @participatory_spaces ||= current_organization.public_participatory_spaces end
def show
def show return if upcoming_events.blank? render end
def upcoming_events
def upcoming_events @upcoming_events ||= Decidim::Meetings::Meeting .includes(component: :participatory_space) .where(component: meeting_components) .where("end_time >= ?", Time.current) .order(start_time: :asc) .limit(limit) end