app/lib/query/line_group.rb
# frozen_string_literal: true
module Query
class LineGroup < Base
def text(value)
change_scope(if: value.present?) do |scope|
name = scope.arel_table[:name]
scope.where(name.matches("%#{value}%"))
end
end
def lines(value)
value = value.reject(&:blank?) if value.present?
change_scope(if: value.present?) do |scope|
scope.joins(:members).where(line_group_members: { line_id: value })
end
end
def line_provider_id(value)
where(value, :eq, :line_provider_id)
end
end
end