-
Notifications
You must be signed in to change notification settings - Fork 21.8k
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
[RF-DOCS] Action View Form Helpers Guide [ci-skip] #51936
Conversation
Co-authored-by: Ridhwana <[email protected]> Co-authored-by: Petrik de Heus <[email protected]>
Co-authored-by: Petrik de Heus <[email protected]> Co-authored-by: Ridhwana <[email protected]>
Co-authored-by: Ridhwana <[email protected]> Co-authored-by: Petrik de Heus <[email protected]>
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.
Great job on this PR @bhumi1102 👍🏾
I made some suggestions in a few places. Hope it helps! 😃
Co-authored-by: Karl Lingiah <[email protected]> Co-authored-by: Petrik de Heus <[email protected]>
instead of `person[address][city]`. Thus we are able to determine which Address | ||
records should be modified when processing the `params` hash. | ||
rendered the `name` attribute of each city input as | ||
`person[address][#{address.id}][city]` instead of `person[address][city]`. This |
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.
I think this whole section should use addresses
instead of address
for the form/parameters.
The association on person would probably be addresses
as well and other examples above use addresses
as well (this suggestion doesn't include all occurences as that was a bit diffuclt to do in Github 😞 )
`person[address][#{address.id}][city]` instead of `person[address][city]`. This | |
`person[addresses][#{address.id}][city]` instead of `person[addresses][city]`. This |
Hmm, the next section implements this very similar example with nested attributes. Maybe this section should use a single address for a person instead?
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.
Hi @p8 - let me know if I misunderstood something but I double checked and it is indeed address
as it is coming from within the loop @person.addresses.each do |address|:
<% @person.addresses.each do |address| %>
<%= person_form.fields_for address, index: address.id do |address_form| %>
<%= address_form.text_field :city %>
<% end %>
<% end %>
The id
specified using the index:
option is what will then distinguish the addresses with person[address][23][city]
, I think that's the "feature" this section is trying to illustrate. Let me know if that make sense, or if I've misunderstood what you're getting at, happy to look into it more.
Co-authored-by: Petrik de Heus <[email protected]>
Let's say you want to render a form with a set of fields for each of a person's | ||
addresses. The [`fields_for`][] helper with its `:index` option can assist: |
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 fields_for currently isn't linked:
Let's say you want to render a form with a set of fields for each of a person's | |
addresses. The [`fields_for`][] helper with its `:index` option can assist: | |
Let's say you want to render a form with a set of fields for each of a person's | |
addresses. The [`fields_for`][] helper with its `:index` option can assist: | |
[`fields_for`]: https://api.rubyonrails.org/classes/ActionView/Helpers/FormBuilder.html#method-i-fields_for |
In addition to updating the code examples and editing text for clarity and flow, here some more details on some of the changes: - [X] Do we still need an HTML5 warning at the end of the 1st section? It's pretty standard these days. --> agree, removed. - [X] Not sure the output of `_form_with model: @article`_ is 100% correct, might need to double check that. --> yes. updated this example and got the HTML output from my "guides playground" rails app. - [X] When we mention `record.persisted?` in record identification, could be a good plug to link to the Active Model guide on that. --> Hm...there is no direction mention, other than this https://guides.rubyonrails.org/active_model_basics.html#conversion - [X] Similar to STI, link to the guide / reference on it. - [X] Time Zone and Country Select should likely be broken into separate sub-sections (I don't mind still mentioning country select) - [X] Would the file upload example would be better with a CSV for local processing, rather than showing saving to local disk? (which is probably a very uncommon usage?) - [X] The _labeled_form_with_ example could likely be simplified with `_**options_` being all that it takes, instead of explicitly showing all possible kwargs. - [X] It may be better to show "complex forms" (section 10) right after the parameters (section 8), moving "forms to external resources" down... just because complex forms require exactly the fields_for incantation that was detailed further under the parameters section, so it seems a better continuation. (or potentially even reversed? complex forms then params? not sure) - [X] Under "complex forms", adding fields on the flow could be slightly expanded, it feels very "go figure". --> Yeah, not sure what to do about this one. Was thinking about removing it as there is not built-in support to showcase. --------- Co-authored-by: Ridhwana <[email protected]> Co-authored-by: Petrik de Heus <[email protected]> Co-authored-by: Amanda Perino <[email protected]> Co-authored-by: Karl Lingiah <[email protected]>
In addition to updating the code examples and editing text for clarity and flow, here some more details on some of the changes: - [X] Do we still need an HTML5 warning at the end of the 1st section? It's pretty standard these days. --> agree, removed. - [X] Not sure the output of `_form_with model: @article`_ is 100% correct, might need to double check that. --> yes. updated this example and got the HTML output from my "guides playground" rails app. - [X] When we mention `record.persisted?` in record identification, could be a good plug to link to the Active Model guide on that. --> Hm...there is no direction mention, other than this https://guides.rubyonrails.org/active_model_basics.html#conversion - [X] Similar to STI, link to the guide / reference on it. - [X] Time Zone and Country Select should likely be broken into separate sub-sections (I don't mind still mentioning country select) - [X] Would the file upload example would be better with a CSV for local processing, rather than showing saving to local disk? (which is probably a very uncommon usage?) - [X] The _labeled_form_with_ example could likely be simplified with `_**options_` being all that it takes, instead of explicitly showing all possible kwargs. - [X] It may be better to show "complex forms" (section 10) right after the parameters (section 8), moving "forms to external resources" down... just because complex forms require exactly the fields_for incantation that was detailed further under the parameters section, so it seems a better continuation. (or potentially even reversed? complex forms then params? not sure) - [X] Under "complex forms", adding fields on the flow could be slightly expanded, it feels very "go figure". --> Yeah, not sure what to do about this one. Was thinking about removing it as there is not built-in support to showcase. --------- Co-authored-by: Ridhwana <[email protected]> Co-authored-by: Petrik de Heus <[email protected]> Co-authored-by: Amanda Perino <[email protected]> Co-authored-by: Karl Lingiah <[email protected]>
In addition to updating the code examples and editing text for clarity and flow, here some more details on some of the changes: - [X] Do we still need an HTML5 warning at the end of the 1st section? It's pretty standard these days. --> agree, removed. - [X] Not sure the output of `_form_with model: @article`_ is 100% correct, might need to double check that. --> yes. updated this example and got the HTML output from my "guides playground" rails app. - [X] When we mention `record.persisted?` in record identification, could be a good plug to link to the Active Model guide on that. --> Hm...there is no direction mention, other than this https://guides.rubyonrails.org/active_model_basics.html#conversion - [X] Similar to STI, link to the guide / reference on it. - [X] Time Zone and Country Select should likely be broken into separate sub-sections (I don't mind still mentioning country select) - [X] Would the file upload example would be better with a CSV for local processing, rather than showing saving to local disk? (which is probably a very uncommon usage?) - [X] The _labeled_form_with_ example could likely be simplified with `_**options_` being all that it takes, instead of explicitly showing all possible kwargs. - [X] It may be better to show "complex forms" (section 10) right after the parameters (section 8), moving "forms to external resources" down... just because complex forms require exactly the fields_for incantation that was detailed further under the parameters section, so it seems a better continuation. (or potentially even reversed? complex forms then params? not sure) - [X] Under "complex forms", adding fields on the flow could be slightly expanded, it feels very "go figure". --> Yeah, not sure what to do about this one. Was thinking about removing it as there is not built-in support to showcase. --------- Co-authored-by: Ridhwana <[email protected]> Co-authored-by: Petrik de Heus <[email protected]> Co-authored-by: Amanda Perino <[email protected]> Co-authored-by: Karl Lingiah <[email protected]>
Motivation / Background
This Pull Request is for updating and improving the Action View Form Helpers Rails Guide documentation.
Details
In addition to updating the code examples and editing text for clarity and flow, here some more details on some of the changes:
--> agree, removed.
_form_with model: @article
_ is 100% correct, might need to double check that.--> yes. updated this example and got the HTML output from my "guides playground" rails app.
record.persisted?
in record identification, could be a good plug to link to the Active Model guide on that.--> Hm...there is no direction mention, other than this https://guides.rubyonrails.org/active_model_basics.html#conversion
_**options_
being all that it takes, instead of explicitly showing all possible kwargs.--> Yeah, not sure what to do about this one. Was thinking about removing it as there is not built-in support to showcase.
Testing
guides:generate
guides:lint