File: helpers.rb

package info (click to toggle)
rails 2%3A7.2.2.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 43,352 kB
  • sloc: ruby: 349,799; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (59 lines) | stat: -rw-r--r-- 1,544 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true

require "yaml"

module RailsGuides
  module Helpers
    def guide(name, url, options = {}, &block)
      link = content_tag(:a, href: url) { name }
      result = content_tag(:dt, link)

      if options[:work_in_progress]
        result << content_tag(:dd, "Work in progress", class: "interstitial work-in-progress")
      end

      result << content_tag(:dd, capture(&block))
      result
    end

    def documents_by_section
      @documents_by_section ||= YAML.load_file(File.expand_path("../source/#{@language ? @language + '/' : ''}documents.yaml", __dir__))
    end

    def documents_flat
      documents_by_section.flat_map { |section| section["documents"] }
    end

    def finished_documents(documents)
      documents.reject { |document| document["work_in_progress"] }
    end

    def all_images
      base_path = File.expand_path("../assets", __dir__)
      images_path = File.join(base_path, "images/**/*")
      @all_images = Dir.glob(images_path).reject { |f| File.directory?(f) }.map { |item|
        item.delete_prefix "#{base_path}/"
      }
      @all_images
    end

    def docs_for_menu(position = nil)
      if position.nil?
        documents_by_section
      elsif position == "L"
        documents_by_section.to(3)
      else
        documents_by_section.from(4)
      end
    end

    def code(&block)
      c = capture(&block)
      content_tag(:code, c)
    end

    def digest_path(original_filename)
      @digest_paths[original_filename] || original_filename
    end
  end
end