Sha256: 0564567d958b224947ea6b90d62934a4b0fd82fe895930b787691f6d36dcf96c

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

- options = {wrapper_html: {class: "col-md-#{field.size}"}}
- current_type = model_presenter.field_type(field.name)
- options[:as] = :admin_enum if current_type == :enum
- options[:as] = :admin_relationship_select if current_type == :relation
- options[:as] = :admin_date if current_type.to_s =~ /^date(time)?$/
- options[:as] = field.as if field.as.present?


- options[:input_html] = {}
- options[:input_html][:class] = "field-#{field.name}"
- options[:input_html][:data] = {}
- options[:input_html][:data][:presenter_name] = model_presenter.presenter_name 

- if options[:as].is_a? Hash
  - options[:input_html][:data][:carnival_options] = options[:as].first[1]
  - options[:as] = options[:as].first[0]


- if field.depends_on.present?
  - options[:input_html][:data][:depends_on] = field.depends_on
  :javascript
    $("select.field-#{field.depends_on}").change(function(event, element){
      var field = $(this).attr("name").match( /\[([A-Za-z_])*\]/g)[0].replace("[", "").replace("]", "");
      var dependentField = $($("select.field-#{field.name}").first()).attr("name").match( /\[([A-Za-z_])*\]/g)[0].replace("[", "").replace("]", "");
      updateDependentFormSelectHtml("#{model_presenter.load_dependent_select_options_path}", "#{model_presenter.class.name}", $(this).val(), field, dependentField);
    });

- options[:label] = translate_field(model_presenter, field)
= f.input field.name, options

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
carnival-0.1.5 app/views/carnival/shared/form/_field.html.haml
carnival-0.1.3 app/views/carnival/shared/form/_field.html.haml
carnival-0.1.2 app/views/carnival/shared/form/_field.html.haml
carnival-0.1.1 app/views/carnival/shared/form/_field.html.haml
carnival-0.1.0 app/views/carnival/shared/form/_field.html.haml