-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add :allow_destroy option to has_many forms #2071
Add :allow_destroy option to has_many forms #2071
Conversation
You mind adding a section to this doc page on the https://github.com/gregbell/active_admin/blob/master/docs/5-forms.md |
Absolutely. I've got a draft written locally already, but I'll finish it up later today. |
Great, I'll merge this in once you have that up here. |
On the translations, what's different between has_many_delete and has_many_remove? Where are each used? |
@@ -60,6 +60,8 @@ def has_many(association, options = {}, &block) | |||
contents += template.content_tag(:li) do | |||
template.link_to I18n.t('active_admin.has_many_delete'), "#", :onclick => "$(this).closest('.has_many_fields').remove(); return false;", :class => "button" | |||
end | |||
elsif options[:allow_destroy] | |||
has_many_form.input :_destroy, as: :boolean, label: I18n.t('active_admin.has_many_remove'), wrapper_html: {:class => "has_many_remove"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- this is using 1.9 hash syntax, but we're still supporting 1.8 for now
- can you put this on multiple lines? Something like:
has_many_form.input :_destroy, :as => :boolean, :wrapper_html => {:class => 'has_many_remove'},
:label => I18n.t('active_admin.has_many_remove')
In most of the examples of people writing this form element, I've seen them use the term "Remove" rather than "Delete", so I went with what I've seen most often, and at the very least giving users the option to use different terminology for either one. |
elsif options[:allow_destroy] | ||
has_many_form.input :_destroy, :as => :boolean, | ||
:label => I18n.t('active_admin.has_many_remove'), | ||
:wrapper_html => {:class => "has_many_remove"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You went from one extreme to the other. Could you please emulate this version?
has_many_form.input :_destroy, :as => :boolean, :wrapper_html => {:class => 'has_many_remove'},
:label => I18n.t('active_admin.has_many_remove')
Also, please squash your commits. |
This option will add a boolean field "Remove" to the end of each has_many fieldset that is an existing record. This provides a workaround for issue activeadmin#1990, and allows for cleaner form coding.
Will this be good or do you want it all squashed into one? |
Hmm... in your PR description you say:
What did you mean by that? If you mean the The example you originally gave should work just fine now. |
As of master, this spec still fails. I just tested the above scenario in my app using the lastest master, and I'm still seeing the issue. That being said, it's looking to me like #1990 may be related, but independent of #1996. Perhaps whatever was done to fix the form buffer on |
That may be the case... I'm going to take a look at that in the morning. One other thing; where did you get the translations that are in this PR? Did you manually get them from a web service? UPDATE: I opened #2108 to deal with this problem. |
I ran them through Google Translate. Most of them were either translated to the same as "Delete", while some matched similar to 'Clear' in |
|
||
end | ||
|
||
The `:allow_destroy` option will add a checkbox to the end of the nested form allowing removal of the child object upon submission. Be sure to set `:allow_destroy => true` on the association to use this option. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you wrap this last line so it's consistent with the rest of the file?
Updated the commit with wrapped lines. Anything else? |
Nope, looks good. Thanks for taking the time to do this! 💙 |
Add :allow_destroy option to has_many forms
Would it be sensible to use a delete button with a hidden field, and remove the item with javascript rather than a checkbox? |
@ball-hayden, assuming you mean doing an AJAX request, that wouldn't fit into the Rails form paradigm. On a Rails form, no changes are final until everything in the form passes validations. If you use AJAX to delete children, what happens if the user realized that before they pushed submit, they had deleted the wrong child? With AJAX, too bad, it's gone. But with a Rails form, just reload the page. |
No - I didn't mean AJAX. I simply meant javascript that hides the element and set a hidden "_removed" field to true (much in the way that ryanb's nested_form gem does). |
ActiveAdmin already does this for new records with the Delete button. This is a simple way to add the remove checkbox to relationships that have the |
Of course. I just wondered if, for consistency, a delete button may be a better option. |
I think the issue with hiding a persisted record after flagging it for removal is the inability to undo that action before submitting the form. Perhaps if you wanted to add a style that highlights items checked for removal with, say, a red background or something, that might make sense, but I think it's folly to hide them without any chance to undo it. |
That's sensible. I'll do that. Thanks. |
This option will add a boolean field "Remove" to the
end of each
has_many
fieldset that is an existingrecord. This provides a workaround for issue #1990,
and allows for cleaner form coding.
Instead of the following, which would not work because
of the issue mentioned above:
we could simply write: