Class: Decidim::ParticipatoryProcesses::ProcessFiltersCell

Inherits:
ViewModel
  • Object
show all
Defined in:
app/cells/decidim/participatory_processes/process_filters_cell.rb

Constant Summary collapse

ALL_FILTERS =
%w(active upcoming past all).freeze

Instance Method Summary collapse

Instance Method Details

#current_filter ⇒ Object



15
16
17
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 15

def current_filter
  get_filter_in(:with_date, ALL_FILTERS, model[:default_filter])
end

#explanation ⇒ Object



88
89
90
91
92
93
94
95
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 88

def explanation
  return if process_count_by_filter["active"].positive?

  (
    :span,
    I18n.t(explanation_text, scope: "decidim.participatory_processes.participatory_processes.filters.explanations")
  )
end

#explanation_text ⇒ Object



97
98
99
100
101
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 97

def explanation_text
  return "no_active" if process_count_by_filter["upcoming"].positive?

  "no_active_nor_upcoming"
end


8
9
10
11
12
13
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 8

def filter_link(date_filter)
  Decidim::ParticipatoryProcesses::Engine
    .routes
    .url_helpers
    .participatory_processes_path(**filter_params(date_filter))
end

#filter_name(filter) ⇒ Object



84
85
86
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 84

def filter_name(filter)
  I18n.t(filter, scope: "decidim.participatory_processes.participatory_processes.filters.names")
end

#filter_params(date_filter) ⇒ Object



30
31
32
33
34
35
36
37
38
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 30

def filter_params(date_filter)
  {
    filter: {
      with_date: date_filter,
      with_any_scope: get_filter(:with_any_scope),
      with_any_area: get_filter(:with_any_area)
    }
  }
end

#filtered_processes(date_filter) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
51
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 40

def filtered_processes(date_filter)
  query = ParticipatoryProcess.where(organization: current_organization).ransack(
    {
      with_date: date_filter,
      with_any_scope: get_filter(:with_any_scope),
      with_any_area: get_filter(:with_any_area)
    },
    current_user:
  ).result

  query.published.visible_for(current_user)
end

#get_filter(filter_name, default = nil) ⇒ Object



19
20
21
22
23
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 19

def get_filter(filter_name, default = nil)
  params&.dig(:filter, filter_name) || default
rescue ActionController::InvalidParameterKey
  default
end

#get_filter_in(filter_name, options, default = nil) ⇒ Object



25
26
27
28
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 25

def get_filter_in(filter_name, options, default = nil)
  value = get_filter(filter_name)
  options.include?(value) ? value : default
end

#other_filters ⇒ Object



66
67
68
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 66

def other_filters
  @other_filters ||= ALL_FILTERS - [current_filter]
end

#other_filters_with_value ⇒ Object



70
71
72
73
74
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 70

def other_filters_with_value
  @other_filters_with_value ||= other_filters.select do |filter|
    process_count_by_filter[filter].positive?
  end
end

#process_count_by_filter ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 53

def process_count_by_filter
  return @process_count_by_filter if @process_count_by_filter

  @process_count_by_filter = %w(active upcoming past).inject({}) do |collection_by_filter, filter_name|
    filtered_processes = filtered_processes(filter_name)
    processes = filtered_processes.groupless
    groups = Decidim::ParticipatoryProcessGroup.where(id: filtered_processes.grouped.group_ids)
    collection_by_filter.merge(filter_name => processes.count + groups.count)
  end
  @process_count_by_filter["all"] = @process_count_by_filter.values.sum
  @process_count_by_filter
end

#should_show_tabs? ⇒ Boolean

Returns:

  • (Boolean)


76
77
78
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 76

def should_show_tabs?
  other_filters_with_value.any? && other_filters_with_value != ["all"]
end

#title ⇒ Object



80
81
82
# File 'app/cells/decidim/participatory_processes/process_filters_cell.rb', line 80

def title
  I18n.t(current_filter, scope: "decidim.participatory_processes.participatory_processes.filters.counters", count: process_count_by_filter[current_filter])
end