Class: Headmin::Form::DateView

Inherits:
ViewModel show all
Includes:
Hintable, InputGroupable, Labelable, Listable, Placeholderable, Validatable, Wrappable
Defined in:
app/models/headmin/form/date_view.rb

Instance Method Summary collapse

Methods inherited from ViewModel

#attributes, #initialize, #to_hash

Constructor Details

This class inherits a constructor from ViewModel

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ViewModel

Instance Method Details

#input_group_optionsObject



18
19
20
21
22
# File 'app/models/headmin/form/date_view.rb', line 18

def input_group_options
  default_input_group_options
    .deep_merge(label_input_group_options)
    .deep_merge(@input_group || {})
end

#input_optionsObject



12
13
14
15
16
# File 'app/models/headmin/form/date_view.rb', line 12

def input_options
  keys = attributes - %i[append attribute float form input_group input_group label prepend validate wrapper]
  options = to_h.slice(*keys)
  default_input_options.deep_merge(options)
end

#wrapper_optionsObject



24
25
26
27
28
# File 'app/models/headmin/form/date_view.rb', line 24

def wrapper_options
  default_wrapper_options.deep_merge({
    class: ["mb-3", ("form-floating" if float)]
  }).deep_merge(@wrapper || {})
end