Sha256: 73a1459961c6404bc00e9293a1f66ee06930bc595595b6c0f1f965f125764a79

Contents?: true

Size: 1.19 KB

Versions: 35

Compression:

Stored size: 1.19 KB

Contents

class ClockPickerInput < SimpleForm::Inputs::StringInput
  # Note that where we use `wrapper: :clockpicker` or `wrapper: horizontal_clockpicker`,
  # #input is not called and we call #prefix_column and #input_column directly.
  def input(_wrapper_options)
    template.content_tag(:div, class: "row collapse #{class_name}-wrapper") do
      template.concat prefix_column
      template.concat input_column
    end
  end

  def prefix_column(_wrapper_options = {})
    template.content_tag(:div, class: "small-3 input-group-addon columns") do
      template.concat(icon_clock)
    end
  end

  def input_column(_wrapper_options = {})
    html_options = input_html_options
    html_options[:class] ||= []
    html_options[:class] << class_name
    template.content_tag(:div, class: "small-9 columns") do
      datestamp = @builder.object.public_send(attribute_name)
      value = datestamp.present? ? I18n.l(datestamp, format: :time) : ""
      template.concat @builder.text_field(attribute_name, html_options.merge(value: value))
    end
  end

  def icon_clock
    "<span class='prefix'><i class='fa fa-clock-o'></i></span>".html_safe
  end

  def input_type
    :string
  end

  def class_name
    "clockpicker"
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
renalware-core-2.0.16 app/inputs/clock_picker_input.rb
renalware-core-2.0.15 app/inputs/clock_picker_input.rb
renalware-core-2.0.14 app/inputs/clock_picker_input.rb
renalware-core-2.0.13 app/inputs/clock_picker_input.rb
renalware-core-2.0.12 app/inputs/clock_picker_input.rb
renalware-core-2.0.11 app/inputs/clock_picker_input.rb
renalware-core-2.0.9 app/inputs/clock_picker_input.rb
renalware-core-2.0.8 app/inputs/clock_picker_input.rb
renalware-core-2.0.7 app/inputs/clock_picker_input.rb
renalware-core-2.0.5 app/inputs/clock_picker_input.rb
renalware-core-2.0.4 app/inputs/clock_picker_input.rb
renalware-core-2.0.3 app/inputs/clock_picker_input.rb
renalware-core-2.0.2 app/inputs/clock_picker_input.rb
renalware-core-2.0.1 app/inputs/clock_picker_input.rb
renalware-core-2.0.0 app/inputs/clock_picker_input.rb
renalware-core-2.0.0.pre.rc13 app/inputs/clock_picker_input.rb
renalware-core-2.0.0.pre.rc11 app/inputs/clock_picker_input.rb
renalware-core-2.0.0.pre.rc10 app/inputs/clock_picker_input.rb
renalware-core-2.0.0.pre.rc9 app/inputs/clock_picker_input.rb
renalware-core-2.0.0.pre.rc8 app/inputs/clock_picker_input.rb