module Carload module DashboardHelper def generate_input form, model_name, attribute_name, options = {} if options[:polymorphic] form.input attribute_name, collection: @model_class.send(attribute_name.to_s.pluralize), selected: options[:value], input_html: { class: 'use-select2' } elsif attribute_name =~ /_id$/ class_name, association_name = associated_model_name model_name, attribute_name association = Dashboard.model(model_name).associations[association_name] label_attribute = association[:choose_by] form.association association_name, label_method: label_attribute, label: t("activerecord.models.#{class_name}"), input_html: { class: 'use-select2', data: { placeholder: t('carload.placeholder.select', thing: t("activerecord.attributes.#{class_name}.#{label_attribute}")) } } elsif attribute_name =~ /_ids$/ class_name, association_name = associated_model_name model_name, attribute_name association = Dashboard.model(model_name).associations[association_name] label_attribute = association[:choose_by] form.input attribute_name, label: t("activerecord.attributes.#{class_name}.#{label_attribute}") + " (#{t("activerecord.models.#{class_name}")})", collection: class_name.to_s.camelize.constantize.all, label_method: label_attribute, value_method: :id, input_html: { class: 'use-select2', multiple: true, data: { placeholder: t('carload.placeholder.select', thing: t("activerecord.attributes.#{class_name}.#{label_attribute}")) } } elsif needs_upload?(model_name, attribute_name) and image?(model_name, attribute_name) upload_image form: form, image_name: attribute_name, width: 150, height: 150 elsif options[:type] == :text form.input(attribute_name, label: raw(<<-EOT #{t("activerecord.attributes.#{@model_name}.#{attribute_name}")} #{t('carload.action.preview')} (Markdown) EOT )) + raw(<<-EOT EOT ) else form.input attribute_name end end def generate_show_title attribute case attribute when Symbol begin t("activerecord.attributes.#{@model_name}.#{attribute}", raise: true) rescue t("carload.activerecord.#{attribute}", raise: true) end when String begin t("activerecord.attributes.#{@model_name}.#{attribute}", raise: true) rescue "#{t("activerecord.attributes.#{attribute}", raise: true)} (#{t("activerecord.models.#{attribute.split('.').first.to_s.singularize}", raise: true)})" end when Array if attribute.first == :pluck raise UnsupportedError.new("attribute #{attribute}") if attribute.size != 3 model_name = attribute[1].to_s.singularize attribute_name = attribute[2] begin "#{t("activerecord.attributes.#{model_name}.#{attribute_name}", raise: true)} (#{t("activerecord.models.#{model_name}", raise: true)})" rescue "#{t("activerecord.attributes.#{@model_name}.#{model_name}.#{attribute_name}", raise: true)}" end else "#{t("activerecord.attributes.#{attribute.join('.')}", raise: true)} (#{t("activerecord.models.#{attribute[0].to_s.singularize}", raise: true)})" end end end def generate_show object, attribute case attribute when Symbol object.send attribute when String res = eval "object.#{attribute.gsub('.', '&.')}" case res when String res when Array raw res.map { |x| "#{x}" }.join(' ') end when Array if attribute.first == :pluck raise UnsupportedError.new("attribute #{attribute}") if attribute.size != 3 generate_show object, "#{attribute[1].to_s.pluralize}.pluck(:#{attribute[2]})" else generate_show object, attribute.join('.') end end end end end