# frozen_string_literal: true
module PlaybookWebsite
module PbDocHelper
def pb_kit_title(title)
title.remove("pb_").titleize.tr("_", " ")
end
def pb_kit(kit: "", type: "rails", show_code: true, limit_examples: false, dark_mode: false, variants: [])
examples = pb_doc_kit_examples(kit, type)
examples.select! { |elem| variants.any? { |variant| elem.key?(variant) } } unless variants.empty?
examples = examples.first(1) if limit_examples
examples.map do |example|
pb_rails "docs/kit_example", props: {
kit: kit,
example_title: example.values.first,
example_key: example.keys.first,
show_code: show_code,
type: type,
dark: dark_mode,
}
end.join.yield_self(&method(:raw))
end
def nav_hash_array(link)
link.first.last
end
# Deal with lists of kits, used in Playbook doc and Externally
# rubocop:disable Style/StringConcatenation
def pb_kits(type: "rails", limit_examples: false, dark_mode: false, method: get_kits)
display_kits = []
kits = method
kits.each do |kit|
if kit.is_a?(Hash)
nav_hash_array(kit).each do |sub_kit|
display_kits << render_pb_doc_kit(sub_kit[:name], type, limit_examples, false, dark_mode) if sub_kit[:status] != "beta" && pb_doc_has_kit_type?(sub_kit[:name], type)
end
elsif pb_doc_has_kit_type?(kit, type)
display_kits << render_pb_doc_kit(kit, type, limit_examples, false, dark_mode)
end
end
raw("
" + display_kits.join("
") + "
")
end
# rubocop:enable Style/StringConcatenation
# rubocop:disable Naming/AccessorMethodName
def get_kits(_type = "rails")
aggregate_kits_with_status || []
end
def get_kits_pb_website
menu = YAML.load_file(Rails.root.join("config/menu.yml"))
menu["kits"]
end
# rubocop:enable Naming/AccessorMethodName
# rubocop:disable Style/OptionalBooleanParameter
def render_pb_doc_kit(kit, type, limit_examples, code = true, dark_mode = false)
title = pb_doc_render_clickable_title(kit, type)
ui = raw("
#{pb_kit(kit: kit, type: type, show_code: code, limit_examples: limit_examples, dark_mode: dark_mode)}
")
title + ui
end
# rubocop:enable Style/OptionalBooleanParameter
private
def pb_doc_kit_path(kit, *args)
Playbook.kit_path(kit, "docs", *args)
end
def pb_doc_kit_examples(kit, type)
example_file = pb_doc_kit_path(kit, "example.yml")
if File.exist?(example_file)
examples_list = YAML.load_file(example_file)
.inject({}) { |item, (k, v)| item[k.to_sym] = v; item }
examples_list.dig(:examples, type) || []
else
[]
end
end
def pb_doc_render_clickable_title(kit, type)
url = "#"
begin
url = case type
when "react"
kit_show_reacts_path(kit)
when "swift"
kit_show_swift_path(kit)
else
kit_show_path(kit)
end
# FIXME: this is here because this helper generates a link for playbook website,
# but shouldn't do anything when used elsewhere
rescue
puts "Kit Path Not Avaliable"
end
render inline: "#{pb_rails(:title, props: { text: pb_kit_title(kit), tag: 'h3', size: 2 })}"
end
end
end