%# locals: (import:) %>
<%= styled_form_with model: @import,
url: import_configuration_path(@import),
scope: :import,
method: :patch,
class: "space-y-4",
data: {
controller: "import",
import_csv_value: import.csv_rows.to_json,
import_amount_type_column_key_value: @import.entity_type_col_label
} do |form| %>
<%# Date Configuration %>
<%= form.select :date_col_label,
import.csv_headers,
{ label: "Date", prompt: "Select column" },
required: true %>
<%= form.select :date_format,
Family::DATE_FORMATS,
{ label: t(".date_format_label"), prompt: "Select format" },
required: true %>
<%# Amount Configuration %>
<%= form.select :amount_col_label,
import.csv_headers,
{ label: "Amount", container_class: "w-2/5", prompt: "Select column" },
required: true %>
<%= form.select :currency_col_label,
import.csv_headers,
{ include_blank: "Default", label: "Currency", container_class: "w-1/5" } %>
<%= form.select :number_format,
Import::NUMBER_FORMATS.keys,
{ label: "Format", prompt: "Select format", container_class: "w-2/5" },
required: true %>
<%# Amount Type Strategy %>
<%= form.select :amount_type_strategy,
Import::AMOUNT_TYPE_STRATEGIES.map { |strategy| [strategy.humanize, strategy] },
{ label: "Amount type strategy", prompt: "Select strategy" },
required: true,
data: {
action: "import#handleAmountTypeStrategyChange",
import_target: "amountTypeStrategySelect"
} %>
<%# Signed Amount Configuration %>
<%= tag.fieldset data: { import_target: "signedAmountFieldset" },
class: @import.amount_type_strategy == "signed_amount" ? "block" : "hidden" do %>
↪
<%= form.select :signage_convention,
[["Incomes are positive", "inflows_positive"], ["Incomes are negative", "inflows_negative"]],
{ label: "Amount type", prompt: "Select convention" },
required: @import.amount_type_strategy == "signed_amount" %>
<% end %>
<%# Custom Column Configuration %>
<%= tag.fieldset data: { import_target: "customColumnFieldset" },
class: @import.amount_type_strategy == "custom_column" ? "block" : "hidden" do %>
↪
Set
<%= form.select :entity_type_col_label,
import.csv_headers,
{ prompt: "Select column", container_class: "w-48 px-3 py-1.5 border border-secondary rounded-md" },
required: @import.amount_type_strategy == "custom_column",
data: { action: "import#handleAmountTypeChange" } %>
as amount type column
" data-import-target="amountTypeValue">
↪
Set
<%= form.select :amount_type_inflow_value,
@import.selectable_amount_type_values,
{ prompt: "Select column", container_class: "w-48 px-3 py-1.5 border border-secondary rounded-md" },
required: @import.amount_type_strategy == "custom_column" %>
as "income" (inflow) value
<% end %>
<%# Optional Fields %>
<% unless import.account.present? %>
<%= form.select :account_col_label,
import.csv_headers,
{ include_blank: "Leave empty", label: "Account" } %>
<% end %>
<%= form.select :name_col_label,
import.csv_headers,
{ include_blank: "Leave empty", label: "Name" } %>
<%= form.select :category_col_label,
import.csv_headers,
{ include_blank: "Leave empty", label: "Category" } %>
<%= form.select :tags_col_label,
import.csv_headers,
{ include_blank: "Leave empty", label: "Tags" } %>
<%= form.select :notes_col_label,
import.csv_headers,
{ include_blank: "Leave empty", label: "Notes" } %>
<%= form.submit "Apply configuration", disabled: import.complete? %>
<% end %>