defmodule ExAdmin.Theme.ActiveAdmin.Form do @moduledoc false import Kernel, except: [div: 2] import Xain import ExAdmin.Utils import ExAdmin.Form require Integer require Logger import ExAdmin.Helpers import ExAdmin.Gettext alias ExAdmin.Schema @doc false def build_form(conn, resource, items, params, script_block, global_script) do mode = if params[:id], do: :edit, else: :new markup safe: true do model_name = model_name resource action = get_action(resource, mode) # scripts = "" Xain.form "accept-charset": "UTF-8", action: "#{action}", class: "formtastic #{model_name}", id: "new_#{model_name}", method: :post, enctype: "multipart/form-data", novalidate: :novalidate do resource = setup_resource(resource, params, model_name) {html, scripts_list} = build_main_block(conn, resource, model_name, items) |> Enum.reduce({[], []}, fn({h, o}, {acc_h, acc_o}) -> {[h | acc_h], o ++ acc_o} end) html = Enum.reverse html scripts = build_scripts(scripts_list) build_hidden_block(conn, mode) markup do html end build_actions_block(conn, model_name, mode) end put_script_block(scripts) put_script_block(script_block) put_script_block(global_script) end end def theme_build_inputs(_item, _opts, fun) do fun.() end def theme_wrap_item(_type, ext_name, label, hidden, ajax, error, contents, as, required) when as in [:check_boxes, :radio] do li([class: "#{as} input optional #{error}stringish", id: "#{ext_name}_input"] ++ hidden) do fieldset ".choices" do lbl = legend ".label" do label do text humanize(label) required_abbr required end end res = if ajax do div "##{ext_name}-update" do if hidden == [] do contents.(ext_name) end end else contents.(ext_name) end [lbl, res] end end end @doc false def theme_wrap_item(_type, ext_name, label, hidden, ajax, error, contents, _, required) do # TODO: Fix this to use the correct type, instead of hard coding string li([class: "string input optional #{error}stringish", id: "#{ext_name}_input"] ++ hidden) do res2 = if ajax do markup do label(".label", for: ext_name) do text humanize(label) required_abbr required end div "##{ext_name}-update" do res = if hidden == [], do: contents.(ext_name), else: "" res end end else markup do label(".label", for: ext_name) do text humanize(label) required_abbr required end res = contents.(ext_name) res end end res2 end end def build_actions_block(conn, model_name, mode) do display_name = ExAdmin.Utils.displayable_name_singular conn label = if mode == :new, do: (gettext "Create"), else: (gettext "Update") fieldset(".actions") do ol do li(".action.input_action##{model_name}_submit_action") do Xain.input name: "commit", type: :submit, value: escape_value("#{label} #{humanize display_name}") end li(".cancel") do a((gettext "Cancel"), href: admin_resource_path(conn, :index)) end end end end def build_hint(hint) do p ".inline #{hint}" end def build_form_error(error) do p ".inline-errors #{error_messages error}" end def build_inputs_collection(model_name, name, name_ids, required, fun) do fieldset(".inputs") do ol do li ".select.input.optional##{model_name}_#{name}_input" do label ".label", for: "#{model_name}_#{name_ids}" do text humanize(name) required_abbr required end fun.() end end end end def build_inputs_has_many(_field_name, _human_label, fun) do {contents, html} = fun.() new_html = li ".input" do html end {contents, new_html} end def has_many_insert_item(html, new_record_name_var) do ~s|$(this).siblings("li.input").append("#{html}".replace(/#{new_record_name_var}/g,| <> ~s|new Date().getTime())); return false;| end def form_box(item, opts, fun) do {html, changes} = Enum.reduce(fun.(), {"", []}, fn(item, {htmls, chgs}) -> case item do bin when is_binary(bin) -> {htmls <> bin, chgs} {bin, change} -> {htmls <> bin, [change | chgs]} end end) changes = Enum.reverse changes res = fieldset(".inputs", opts) do build_fieldset_legend(item[:name]) ol do html end end {res, changes} end # TODO: Refactor some of this back into ExAdmin.Form def theme_build_has_many_fieldset(conn, res, fields, orig_inx, ext_name, field_name, field_field_name, model_name, errors) do inx = cond do is_nil(res) -> orig_inx is_nil(res.id) -> orig_inx Schema.get_id(res) -> orig_inx true -> timestamp() # case when we have errors. need to remap the inx end required_list = if res do res.__struct__.changeset(res).required else [] end html = fieldset ".inputs.has_many_fields" do ol do humanize(field_name) |> Inflex.singularize |> h3 # build the destroy field base_name = "#{model_name}[#{field_field_name}][#{inx}]" base_id = "#{ext_name}__destroy" li [id: "#{base_id}_input", class: "boolean input optional"] do name = "#{base_name}[_destroy]" Xain.input type: :hidden, value: "0", name: name label for: base_id do Xain.input type: :checkbox, id: "#{base_id}", name: name, value: "1" text (gettext "Remove") end end for field <- fields do f_name = field[:name] required = if f_name in required_list, do: true, else: false name = "#{base_name}[#{f_name}]" errors = get_errors(errors, "#{model_name}[#{field_field_name}][#{orig_inx}][#{f_name}]") error = if errors in [nil, [], false], do: "", else: ".error" case field[:opts] do %{collection: collection} -> collection = if is_function(collection), do: collection.(conn, res), else: collection li ".select.input#{error}", [id: "#{ext_name}_label_input"] do label ".label", for: "#{ext_name}_#{f_name}" do text humanize(f_name) required_abbr required end select "##{ext_name}_#{f_name}", [name: name ] do for opt <- collection do if not is_nil(res) and (Map.get(res, f_name) == opt) do option "#{opt}", [value: escape_value(opt), selected: :selected] else option "#{opt}", [value: escape_value(opt)] end end end build_errors(errors, field[:opts][:hint]) end _ -> li ".string.input.stringish#{error}", id: "#{ext_name}_#{f_name}_input" do label ".label", for: "#{ext_name}_#{f_name}" do text humanize(f_name) required_abbr required end val = if res, do: [value: Map.get(res, f_name, "") |> escape_value], else: [] Xain.input([type: :text, maxlength: "255", id: "#{ext_name}_#{f_name}", name: name, required: true] ++ val) build_errors(errors, field[:opts][:hint]) end end end unless Schema.get_id(res) do li do a ".button " <> (gettext "Delete"), href: "#", onclick: ~S|$(this).closest(\".has_many_fields\").remove(); return false;| end end end end {inx, html} end def theme_button(content, attrs) do {_type, attrs} = Keyword.pop(attrs, :type) a "#{content}", [{:class, "button"} | attrs] end def collection_check_box name, name_str, _id, selected do checked = if selected, do: [checked: :checked], else: [] li ".checkbox" do label do input [type: :checkbox, name: name_str ] ++ checked text name end end end def wrap_collection_check_boxes fun do ol do fun.() end end def build_map(id, label, _inx, _error, fun) do li "##{id}_input.form-group" do label = label ".label #{label}", for: id control = fun.("form-control") [label, control] end end def theme_map_field_set(conn, res, schema, inx, field_name, model_name, errors) do fieldset ".inputs.has_many_fields" do ol do h3 humanize(field_name) for {field, type} <- schema do error = if errors, do: Enum.filter_map(errors, &(elem(&1, 0) == to_string(field)), &(elem(&1, 1))), else: nil ExAdmin.Form.build_input(conn, type, field, field_name, res, model_name, error, inx) end li do a ".button.remove_has_many_maps " <> (gettext "Delete"), href: "#" end end end end end