2017-08-13 09:02:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:21:59 -04:00
|
|
|
require "yaml"
|
2014-02-03 05:59:01 -05:00
|
|
|
|
2009-02-03 20:44:58 -05:00
|
|
|
module RailsGuides
|
|
|
|
module Helpers
|
|
|
|
def guide(name, url, options = {}, &block)
|
2016-08-06 13:39:28 -04:00
|
|
|
link = content_tag(:a, href: url) { name }
|
2009-02-03 20:44:58 -05:00
|
|
|
result = content_tag(:dt, link)
|
|
|
|
|
2010-11-19 15:42:18 -05:00
|
|
|
if options[:work_in_progress]
|
2016-08-06 13:39:28 -04:00
|
|
|
result << content_tag(:dd, "Work in progress", class: "work-in-progress")
|
2009-02-03 20:44:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
result << content_tag(:dd, capture(&block))
|
2010-03-30 17:02:05 -04:00
|
|
|
result
|
2009-02-03 20:44:58 -05:00
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
|
2011-12-24 20:26:18 -05:00
|
|
|
def documents_by_section
|
2017-05-15 10:17:28 -04:00
|
|
|
@documents_by_section ||= YAML.load_file(File.expand_path("../source/#{@language ? @language + '/' : ''}documents.yaml", __dir__))
|
2011-12-24 20:26:18 -05:00
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
|
2011-12-24 20:26:18 -05:00
|
|
|
def documents_flat
|
2016-08-16 03:30:11 -04:00
|
|
|
documents_by_section.flat_map { |section| section["documents"] }
|
2011-12-24 20:26:18 -05:00
|
|
|
end
|
2009-02-03 20:44:58 -05:00
|
|
|
|
2011-12-31 12:25:25 -05:00
|
|
|
def finished_documents(documents)
|
2016-08-06 13:21:59 -04:00
|
|
|
documents.reject { |document| document["work_in_progress"] }
|
2011-12-31 12:25:25 -05:00
|
|
|
end
|
|
|
|
|
2016-10-28 23:05:58 -04:00
|
|
|
def docs_for_menu(position = nil)
|
2012-05-26 00:28:24 -04:00
|
|
|
if position.nil?
|
|
|
|
documents_by_section
|
2016-08-06 13:21:59 -04:00
|
|
|
elsif position == "L"
|
2012-05-26 00:28:24 -04:00
|
|
|
documents_by_section.to(3)
|
|
|
|
else
|
|
|
|
documents_by_section.from(4)
|
|
|
|
end
|
2011-12-31 12:25:25 -05:00
|
|
|
end
|
|
|
|
|
2009-02-03 20:44:58 -05:00
|
|
|
def code(&block)
|
|
|
|
c = capture(&block)
|
|
|
|
content_tag(:code, c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|