Module: GovukTechDocs::TableOfContents::Helpers
- Defined in:
- lib/govuk_tech_docs/table_of_contents/helpers.rb
Instance Method Summary collapse
- #list_items_from_headings(html, url: "", max_level: nil) ⇒ Object
- #multi_page_table_of_contents(resources, current_page, config, current_page_html = nil) ⇒ Object
- #render_page_tree(resources, current_page, config, current_page_html) ⇒ Object
- #single_page_table_of_contents(html, url: "", max_level: nil) ⇒ Object
Instance Method Details
#list_items_from_headings(html, url: "", max_level: nil) ⇒ Object
28 29 30 31 32 33 34 35 36 37 |
# File 'lib/govuk_tech_docs/table_of_contents/helpers.rb', line 28 def list_items_from_headings(html, url: "", max_level: nil) headings = HeadingsBuilder.new(html, url).headings if headings.none? { |heading| heading.size == 1 } raise "No H1 tag found. You have to at least add one H1 heading to the page: " + url end tree = HeadingTreeBuilder.new(headings).tree HeadingTreeRenderer.new(tree, max_level: max_level).html end |
#multi_page_table_of_contents(resources, current_page, config, current_page_html = nil) ⇒ Object
18 19 20 21 22 23 24 25 26 |
# File 'lib/govuk_tech_docs/table_of_contents/helpers.rb', line 18 def multi_page_table_of_contents(resources, current_page, config, current_page_html = nil) # Only parse top level html files # Sorted by weight frontmatter resources = resources .select { |r| r.path.end_with?(".html") && (r.parent.nil? || r.parent.url == "/") } .sort_by { |r| [r.data.weight ? 0 : 1, r.data.weight || 0] } render_page_tree(resources, current_page, config, current_page_html) end |
#render_page_tree(resources, current_page, config, current_page_html) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/govuk_tech_docs/table_of_contents/helpers.rb', line 39 def render_page_tree(resources, current_page, config, current_page_html) # Sort by weight frontmatter resources = resources .sort_by { |r| [r.data.weight ? 0 : 1, r.data.weight || 0] } output = "<ul>\n" resources.each do |resource| # Skip from page tree if hide_in_navigation:true frontmatter next if resource.data. # Reuse the generated content for the active page # If we generate it twice it increments the heading ids content = if current_page.url == resource.url && current_page_html current_page_html else resource.render(layout: false) end # Avoid redirect pages next if content.include? "http-equiv=refresh" # If this page has children, just print the title and recursively # render the children. If not, print the heading structure. # We avoid printing the children of the root index.html as it is the # parent of every other top level file. We need to take any custom # prefix in to consideration when checking for the root index.html. # The prefix may be set with or without a trailing slash: make sure # it has one for this comparison check. home_url = if config[:http_prefix].end_with?("/") config[:http_prefix] else config[:http_prefix] + "/" end if resource.children.any? && resource.url != home_url output += %{<li><a href="#{resource.url}"><span>#{resource.data.title}</span></a>\n} output += render_page_tree(resource.children, current_page, config, current_page_html) output += "</li>\n" else output += list_items_from_headings( content, url: resource.url, max_level: config[:tech_docs][:max_toc_heading_level], ) end end output += "</ul>\n" output end |
#single_page_table_of_contents(html, url: "", max_level: nil) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/govuk_tech_docs/table_of_contents/helpers.rb', line 10 def single_page_table_of_contents(html, url: "", max_level: nil) output = "<ul>\n" output += list_items_from_headings(html, url: url, max_level: max_level) output += "</ul>\n" output end |