forked from fixin.me/fixin.me
Add cancel() method to form_controller that handles all close cases: - tabular forms (<tr>): removes inner form, re-enables link, shows hidden row - measurements create form: removes self, enables trigger link, shows no-items Data attributes already present on controller elements (data-form, data-link, data-hidden-row) drive the behaviour. Two extra attributes on the create form (data-cancel-enable, data-cancel-show) cover the non-tabular case. Delete now-unused _form_close and _edit_form_close partial templates. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
<% form_tag = dom_id(@readout, :edit, :form) %>
|
|
<% row = dom_id(@readout, :edit) %>
|
|
<% hidden_row = dom_id(@readout) %>
|
|
|
|
<%= tabular_form_with model: @readout, url: measurement_path(@readout),
|
|
id: form_tag do |form| %>
|
|
<table class="items-table">
|
|
<tbody>
|
|
<%= tag.tr id: row, class: "form",
|
|
data: {controller: 'form', action: 'keydown->form#processKey',
|
|
form: form_tag, hidden_row: hidden_row} do %>
|
|
<td><%= @readout.quantity %></td>
|
|
<td class="ralign">
|
|
<%= form.number_field :value, required: true, autofocus: true %>
|
|
</td>
|
|
<td>
|
|
<%= form.collection_select :unit_id, @user_units, :id,
|
|
->(u){ sanitize(' ' * (u.base_id? ? 1 : 0) + u.symbol) },
|
|
{}, required: true %>
|
|
</td>
|
|
<td>
|
|
<%= form.datetime_field :taken_at %>
|
|
</td>
|
|
<td></td>
|
|
<td class="flex">
|
|
<%= form.button %>
|
|
<%= image_link_to t(:cancel), "close-outline", measurements_path,
|
|
class: 'dangerous', name: :cancel,
|
|
data: {action: 'click->form#cancel'} %>
|
|
</td>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|