playbook_ui 13.9.0.pre.alpha.play845allkitsbytypes1263 → 13.9.0.pre.alpha.play845allkitsbytypes1264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/playbook/pb_doc_helper.rb +24 -41
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5ef9474deca298344d2c388497f4a090ced68f56944c2f73e894b68ba08aa82
|
4
|
+
data.tar.gz: 5d0f76105a845c36e6cc2d23e2e00b7a0bf85a0e1a93ec9ecdb9304ddc652f54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76c46a6dd52917b5a6e794efc19c1c466a9203902a6c8d3e7660c3e72301c77d895102ebf75d7ab540ddcb4b45558255bec6d69b142ea60dde03f22e2c69309d
|
7
|
+
data.tar.gz: 48304dce687cc1791dfe7bbd7d62a428d6cb65844d6b7386a7a2e379d0b5c933277a66064353da8e49a3f45fd5b5d87022ff546e761ccccfc41b1f8ce699e403
|
@@ -2,10 +2,6 @@
|
|
2
2
|
|
3
3
|
module Playbook
|
4
4
|
module PbDocHelper
|
5
|
-
def render_markdown(text)
|
6
|
-
PlaybookWebsite::Markdown::Helper.markdown(text)
|
7
|
-
end
|
8
|
-
|
9
5
|
def pb_kit_title(title)
|
10
6
|
title.remove("pb_").titleize.tr("_", " ")
|
11
7
|
end
|
@@ -33,10 +29,19 @@ module Playbook
|
|
33
29
|
def pb_kits(type: "rails", limit_examples: false, dark_mode: false)
|
34
30
|
kits = get_kits(type)
|
35
31
|
|
36
|
-
#
|
37
|
-
|
38
|
-
|
39
|
-
|
32
|
+
# Initialize an empty string to store the rendered HTML
|
33
|
+
rendered_html = ""
|
34
|
+
|
35
|
+
# Iterate through the filtered kits and render their child components
|
36
|
+
kits.each do |kit|
|
37
|
+
kit["components"].each do |component|
|
38
|
+
# Check if the component is compatible with the specified type
|
39
|
+
rendered_html += render_pb_doc_kit(component["name"], type, limit_examples, true, dark_mode) if component["platforms"].include?(type)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# Return the rendered HTML as safe HTML
|
44
|
+
rendered_html.html_safe
|
40
45
|
end
|
41
46
|
|
42
47
|
def get_kits(type = "rails")
|
@@ -67,33 +72,10 @@ module Playbook
|
|
67
72
|
|
68
73
|
# rubocop:disable Style/OptionalBooleanParameter
|
69
74
|
def render_pb_doc_kit(kit_name, type, limit_examples, code = true, dark_mode = false)
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
# Check if parent_kit is not nil
|
76
|
-
# Filter components based on the specified type
|
77
|
-
components = parent_kit["components"].select { |component| component["platforms"].include?(type) }
|
78
|
-
|
79
|
-
# If it's a parent with components, accumulate the UI content for child components
|
80
|
-
if components.any?
|
81
|
-
component_content = components.map do |component|
|
82
|
-
component_name = component["name"]
|
83
|
-
title = pb_doc_render_clickable_title(component_name, type) # Use component_name for the title
|
84
|
-
|
85
|
-
# Render the component UI content with the same styles/tags as the parent
|
86
|
-
component_ui = raw("<div class='pb--docItem-ui'>
|
87
|
-
#{pb_kit(kit: component_name, type: type, show_code: code, limit_examples: limit_examples, dark_mode: dark_mode)}
|
88
|
-
</div>")
|
89
|
-
|
90
|
-
# Combine the component name and component UI content
|
91
|
-
"#{title}#{component_ui}"
|
92
|
-
end.join.to_s
|
93
|
-
end
|
94
|
-
|
95
|
-
# Return the component_content
|
96
|
-
component_content.to_s
|
75
|
+
title = pb_doc_render_clickable_title(kit_name, type)
|
76
|
+
ui = raw("<div class='pb--docItem-ui'>
|
77
|
+
#{pb_kit(kit: kit_name, type: type, show_code: code, limit_examples: limit_examples, dark_mode: dark_mode)}</div>")
|
78
|
+
title + ui
|
97
79
|
end
|
98
80
|
|
99
81
|
# rubocop:enable Style/OptionalBooleanParameter
|
@@ -115,23 +97,24 @@ module Playbook
|
|
115
97
|
end
|
116
98
|
end
|
117
99
|
|
118
|
-
|
100
|
+
# Modify the method to accept kit_name
|
101
|
+
def pb_doc_render_clickable_title(kit_name, type)
|
119
102
|
url = "#"
|
120
103
|
begin
|
121
104
|
url = case type
|
122
105
|
when "react"
|
123
|
-
kit_show_reacts_path(kit
|
106
|
+
kit_show_reacts_path(kit_name) # Use kit_name instead of kit
|
124
107
|
when "swift"
|
125
|
-
kit_show_swift_path(kit
|
108
|
+
kit_show_swift_path(kit_name) # Use kit_name instead of kit
|
126
109
|
else
|
127
|
-
kit_show_path(kit
|
110
|
+
kit_show_path(kit_name) # Use kit_name instead of kit
|
128
111
|
end
|
129
112
|
# FIXME: this is here because this helper generates a link for playbook website,
|
130
113
|
# but shouldn't do anything when used elsewhere
|
131
114
|
rescue
|
132
|
-
puts "Kit Path Not
|
115
|
+
puts "Kit Path Not Available"
|
133
116
|
end
|
134
|
-
render inline: "<a href='#{url}'>#{pb_rails(:title, props: { text: pb_kit_title(
|
117
|
+
render inline: "<a href='#{url}'>#{pb_rails(:title, props: { text: pb_kit_title(kit_name), tag: 'h3', size: 2 })}</a>"
|
135
118
|
end
|
136
119
|
end
|
137
120
|
end
|
data/lib/playbook/version.rb
CHANGED