Sha256: b0dc5522f8a9e5adb47d22fd5a6e81e1e6c8deebe7f6e5fdb46d5123b5198414
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
module Headmin module Filter class TextView < ViewModel def base_options keys = %i[name label form] options = to_h.slice(*keys) default_base_options.merge(options) end def input_options keys = %i[form] options = to_h.slice(*keys) default_input_options.merge(options) end private def id "#{name}_value" end def name @name || attribute end def label @label || I18n.t("attributes.#{attribute}", default: name.to_s) end def default_base_options { label: label, name: attribute, filter: Headmin::Filter::Text.new(name, @params), allowed_operators: Headmin::Filter::Text::OPERATORS - %w[in not_in] } end def default_input_options { label: false, wrapper: false, id: id, data: { action: "change->filter#updateHiddenValue", filter_target: "value", filter_row_target: "original" } } end end end end
Version data entries
4 entries across 4 versions & 1 rubygems