Sha256: fcd6d490c90c35c6228c143fc65d2979918265060b0b7ee0edb617f1438d02fb

Contents?: true

Size: 1.79 KB

Versions: 4

Compression:

Stored size: 1.79 KB

Contents

format :html do
  def success_tags opts
    return "" unless opts
    hidden_tags success: opts
  end

  # convert hash into a collection of hidden tags
  def hidden_tags hash, base=nil
    hash ||= {}
    hash.inject("") do |result, (key, val)|
      new_base = base ? "#{base}[#{key}]" : key
      result + process_hidden_value(val, new_base)
    end
  end

  def process_hidden_value val, base
    case val
    when Hash
      hidden_tags val, base
    when Array
      base += "[]"
      val.map do |v|
        hidden_field_tag base, v
      end.join
    else
      hidden_field_tag base, val
    end
  end

  FIELD_HELPERS =
    %w[
      hidden_field color_field date_field datetime_field datetime_local_field
      email_field month_field number_field password_field phone_field
      range_field search_field telephone_field text_area text_field time_field
      url_field week_field file_field label check_box radio_button
    ].freeze

  FIELD_HELPERS.each do |method_name|
    define_method(method_name) do |*args|
      form.send(method_name, *args)
    end
  end

  def submit_button args={}
    text = args.delete(:text) || "Submit"
    args.reverse_merge! situation: "primary", data: {}
    args[:data][:disable_with] ||= args.delete(:disable_with) || "Submitting"
    button_tag text, args
  end

  # redirect to *previous if no :href is given
  def cancel_button args={}
    text = args.delete(:text) || "Cancel"
    args[:type] ||= "button"
    args[:situation] ||= "outline-secondary"
    add_class args, cancel_strategy(args[:redirect], args[:href])
    args[:href] ||= path_to_previous
    button_tag text, args
  end

  def cancel_strategy redirect, href
    redirect = href.blank? if redirect.nil?
    redirect ? "redirecter" : "slotter"
  end

  def path_to_previous
    Card.path_setting "/*previous"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
card-1.93.11 mod/standard/set/all/rich_html/form_elements.rb
card-1.93.10 mod/standard/set/all/rich_html/form_elements.rb
card-1.93.9 mod/standard/set/all/rich_html/form_elements.rb
card-1.93.8 mod/standard/set/all/rich_html/form_elements.rb