Last active
January 14, 2020 10:15
-
-
Save manfe/f9f47ad128cc599c703991c9862ee03f to your computer and use it in GitHub Desktop.
Rails Helper to build Hierachical HTML List
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module TreeListHelper | |
# the collection need to be the root parents | |
def tree_list(collection) | |
content_tag(:ul) do | |
collection.each do |item| | |
if item.children.any? | |
concat( | |
content_tag(:li, id: item.id) do | |
concat(item.name) | |
concat(tree_list(item.children)) | |
end | |
) | |
else | |
concat(content_tag(:li, item.name, id: item.id)) | |
end | |
end | |
end | |
end | |
end |
what if the collection is not the root parent?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code will generate the following structure: