Class: Decidim::Proposals::FilteredProposals

Inherits:
Query
  • Object
show all
Defined in:
decidim-proposals/app/queries/decidim/proposals/filtered_proposals.rb

Overview

A class used to find proposals filtered by components and a date range

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Query

#cached_query, #each, #eager?, #exists?, merge, #none?, #relation?, #|

Constructor Details

#initialize(components, start_at = nil, end_at = nil) ⇒ FilteredProposals

Initializes the class.

components - An array of Decidim::Component start_at - A date to filter resources created after it end_at - A date to filter resources created before it.



21
22
23
24
25
# File 'decidim-proposals/app/queries/decidim/proposals/filtered_proposals.rb', line 21

def initialize(components, start_at = nil, end_at = nil)
  @components = components
  @start_at = start_at
  @end_at = end_at
end

Class Method Details

.for(components, start_at = nil, end_at = nil) ⇒ Object

Syntactic sugar to initialize the class and return the queried objects.

components - An array of Decidim::Component start_at - A date to filter resources created after it end_at - A date to filter resources created before it.



12
13
14
# File 'decidim-proposals/app/queries/decidim/proposals/filtered_proposals.rb', line 12

def self.for(components, start_at = nil, end_at = nil)
  new(components, start_at, end_at).query
end

Instance Method Details

#queryObject

Finds the Proposals scoped to an array of components and filtered by a range of dates.



29
30
31
32
33
34
# File 'decidim-proposals/app/queries/decidim/proposals/filtered_proposals.rb', line 29

def query
  proposals = Decidim::Proposals::Proposal.where(component: @components)
  proposals = proposals.where("created_at >= ?", @start_at) if @start_at.present?
  proposals = proposals.where("created_at <= ?", @end_at) if @end_at.present?
  proposals
end