Class: Mensa::Filter

Inherits:
Object
  • Object
show all
Includes:
ConfigReaders
Defined in:
app/tables/mensa/filter.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(column:, config:, table:) ⇒ Filter

Returns a new instance of Filter.



32
33
34
35
36
# File 'app/tables/mensa/filter.rb', line 32

def initialize(column:, config:, table:)
  @column = column
  @config = self.class.definition.merge(config || {})
  @table = table
end

Instance Attribute Details

#columnObject (readonly)

Returns the value of attribute column.



9
10
11
# File 'app/tables/mensa/filter.rb', line 9

def column
  @column
end

#tableObject (readonly)

Returns the value of attribute table.



9
10
11
# File 'app/tables/mensa/filter.rb', line 9

def table
  @table
end

Class Method Details

.OPERATORSObject



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'app/tables/mensa/filter.rb', line 17

def OPERATORS
  [
    [:is, I18n.t("mensa.operators.is"), true],
    [:isnt, I18n.t("mensa.operators.isnt"), true],
    [:matches, I18n.t("mensa.operators.matches"), true],
    [:does_not_match, I18n.t("mensa.operators.does_not_match"), true],
    [:gt, I18n.t("mensa.operators.gt"), true],
    [:gteq, I18n.t("mensa.operators.gteq"), true],
    [:lt, I18n.t("mensa.operators.lt"), true],
    [:lteq, I18n.t("mensa.operators.lteq"), true],
    [:is_current, I18n.t("mensa.operators.is_current"), false]
  ].freeze
end

Instance Method Details

#asObject

This defines how the filter should be displayed in the value popover :select => as a select input :checkbox => as a checkbox input :string => as a text input



56
57
58
# File 'app/tables/mensa/filter.rb', line 56

def as
  config[:as]
end

#collectionObject



42
43
44
45
46
47
48
49
50
# File 'app/tables/mensa/filter.rb', line 42

def collection
  return unless config&.key?(:collection)

  if config[:collection].is_a? Proc
    table.original_view_context.instance_exec(&config[:collection])
  else
    config[:collection]
  end
end

#filter_scope(record_scope) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'app/tables/mensa/filter.rb', line 67

def filter_scope(record_scope)
  if scope
    record_scope.instance_exec(normalize(value), &scope)
  else
    case operator
    when :is_current
      record_scope.where("#{column.attribute_for_condition} = ?", Current.send(column.name))
    when :matches
      record_scope.where("#{column.attribute_for_condition} LIKE ?", "%#{normalize(value)}%")
    when :does_not_match
      record_scope.where("#{column.attribute_for_condition} NOT LIKE ?", "%#{normalize(value)}%")
    when :is
      val = value.is_a?(Array) ? value : normalize(value)
      record_scope.where(column.attribute_for_condition => val)
    when :isnt
      val = value.is_a?(Array) ? value : normalize(value)
      record_scope.where.not(column.attribute_for_condition => val)
    when :gt
      record_scope.where(column.table.model.arel_table[column.attribute_for_condition].gt(normalize(value)))
    when :lt
      record_scope.where(column.table.model.arel_table[column.attribute_for_condition].lt(normalize(value)))
    when :gteq
      record_scope.where(column.table.model.arel_table[column.attribute_for_condition].gteq(normalize(value)))
    when :lteq
      record_scope.where(column.table.model.arel_table[column.attribute_for_condition].lteq(normalize(value)))
    else
      # Ignore unknown operators
      record_scope
    end
  end
end

#input_typeObject



121
122
123
124
125
126
127
128
129
130
131
132
# File 'app/tables/mensa/filter.rb', line 121

def input_type
  case column.type
  when :integer
    "number"
  when :date
    "date"
  when :datetime
    "datetime-local"
  else
    "text"
  end
end

#multiple?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'app/tables/mensa/filter.rb', line 38

def multiple?
  !!multiple
end

#operator_labelObject



113
114
115
# File 'app/tables/mensa/filter.rb', line 113

def operator_label
  Mensa::Filter.OPERATORS.find { |op| op[0] == operator }[1]
end

#operator_with_value?Boolean

Returns:

  • (Boolean)


117
118
119
# File 'app/tables/mensa/filter.rb', line 117

def operator_with_value?
  Mensa::Filter.OPERATORS.find { |op| op[0] == operator }[2]
end

#operatorsObject



99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'app/tables/mensa/filter.rb', line 99

def operators
  operators = Mensa::Filter.OPERATORS.dup
  if config[:operators].present?
    operators = operators.select { |op| config[:operators].include?(op[0]) }
  else
    operators.delete_if { |op| op[0] == :is_current } unless Current.method_defined?(column.name, false)
    operators.delete_if { |op| [:matches, :does_not_match].include?(op[0]) } if collection.present?
    operators.delete_if { |op| [:matches, :does_not_match].include?(op[0]) } if column.type == :integer || column.type == :date || column.type == :datetime
    operators.delete_if { |op| [:is, :isnt].include?(op[0]) } if column.type == :date || column.type == :datetime
    operators.delete_if { |op| [:gt, :lt, :gteq, :lteq].include?(op[0]) } if column.type == :string || column.type.blank?
  end
  operators
end

#to_sObject



60
61
62
63
64
65
# File 'app/tables/mensa/filter.rb', line 60

def to_s
  parts = [column.human_name, operator_label]
  formatted_value = value.is_a?(Array) ? value.join(", ") : value
  parts << formatted_value if formatted_value.present? && operator_with_value?
  parts.join(" ")
end