notion_rails 0.2.2 → 0.2.3
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/notion_rails/base_block.rb +3 -3
- data/lib/notion_rails/renderers.rb +10 -21
- data/lib/notion_rails/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: 7d8520fa8311a89b08c67281c8b2facb0083c983924064f8a73fd99845d45888
|
4
|
+
data.tar.gz: 51463269664f950db99b64211544d851d442e966160d96f36cc01d158fe7e457
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09ab69fb89468ff1713d2433cac98c1777f0c4ab1dde081fc56f79352813c74b987e475408ffacc2379f3a4055681641babf0abb3f847e9550b27da3e7182049'
|
7
|
+
data.tar.gz: 72ed0bce7de6e8b055c588f155504a16e1a27925fe06b851c70971dcdd3dbadaee93a9ed56a6ec4be584283ef9b26493b89f48150da6d2a85d6ff387e2a5ff81
|
@@ -66,9 +66,9 @@ module NotionRails
|
|
66
66
|
render_numbered_list_item(rich_text, @siblings, @children, class: options[:numbered_list_item])
|
67
67
|
when 'quote' then render_quote(rich_text, class: options[:quote])
|
68
68
|
when 'callout' then render_callout(rich_text, icon, class: options[:callout])
|
69
|
-
when 'code' then render_code(rich_text, class:
|
70
|
-
when 'image' then render_image(*multi_media)
|
71
|
-
when 'video' then render_video(*multi_media)
|
69
|
+
when 'code' then render_code(rich_text, class: options[:code], language: @properties['language'])
|
70
|
+
when 'image' then render_image(*multi_media, class: options[:image])
|
71
|
+
when 'video' then render_video(*multi_media, class: options[:video])
|
72
72
|
else
|
73
73
|
'Error'
|
74
74
|
end
|
@@ -80,21 +80,18 @@ module NotionRails
|
|
80
80
|
|
81
81
|
def render_code(rich_text_array, options = {})
|
82
82
|
# TODO: render captions
|
83
|
-
pre_options = options
|
84
|
-
pre_options[:class] = "border-2 p-6 rounded #{pre_options[:class]}"
|
85
83
|
content_tag(:div, class: 'mt-4', data: { controller: 'highlight' }) do
|
86
84
|
content_tag(:div, data: { highlight_target: 'source' }) do
|
87
|
-
content_tag(:pre,
|
85
|
+
content_tag(:pre, class: "border-2 p-6 rounded w-full overflow-x-auto language-#{options[:language]}",
|
86
|
+
**options) do
|
88
87
|
text_renderer(rich_text_array, options)
|
89
88
|
end
|
90
89
|
end
|
91
90
|
end
|
92
91
|
end
|
93
92
|
|
94
|
-
def render_bulleted_list_item(rich_text_array,
|
95
|
-
|
96
|
-
pre_options[:class] = "list-disc break-words #{pre_options[:class]}"
|
97
|
-
content_tag(:ul, pre_options) do
|
93
|
+
def render_bulleted_list_item(rich_text_array, _siblings, children, options = {})
|
94
|
+
content_tag(:ul, class: 'list-disc break-words', **options.except(:class)) do
|
98
95
|
content = content_tag(:li, options) do
|
99
96
|
text_renderer(rich_text_array)
|
100
97
|
end
|
@@ -109,9 +106,7 @@ module NotionRails
|
|
109
106
|
end
|
110
107
|
|
111
108
|
def render_numbered_list_item(rich_text_array, siblings, children, options = {})
|
112
|
-
|
113
|
-
pre_options[:class] = "list-decimal #{pre_options[:class]}"
|
114
|
-
content_tag(:ol, pre_options) do
|
109
|
+
content_tag(:ol, class: 'list-decimal', **options.except(:class)) do
|
115
110
|
render_list_items(:numbered_list_item, rich_text_array, siblings, children, options)
|
116
111
|
end
|
117
112
|
end
|
@@ -135,13 +130,9 @@ module NotionRails
|
|
135
130
|
end
|
136
131
|
|
137
132
|
def render_quote(rich_text_array, options = {})
|
138
|
-
|
139
|
-
pre_options = options.dup
|
140
|
-
div_options[:class] = "mt-4 #{options[:class]}"
|
141
|
-
content_tag(:div, div_options) do
|
142
|
-
pre_options[:class] = "border-l-4 border-black px-5 py-1 #{options[:class]}"
|
133
|
+
content_tag(:div, class: 'mt-4', **options) do
|
143
134
|
content_tag(:cite) do
|
144
|
-
content_tag(:p,
|
135
|
+
content_tag(:p, class: 'border-l-4 border-black px-5 py-1', **options) do
|
145
136
|
text_renderer(rich_text_array)
|
146
137
|
end
|
147
138
|
end
|
@@ -149,16 +140,14 @@ module NotionRails
|
|
149
140
|
end
|
150
141
|
|
151
142
|
def render_callout(rich_text_array, icon, options = {})
|
152
|
-
|
153
|
-
pre_options[:class] = "p-4 rounded bg-neutral-200 mt-4 #{pre_options[:class]}"
|
154
|
-
content_tag(:div, pre_options) do
|
143
|
+
content_tag(:div, class: 'p-4 rounded bg-neutral-200 mt-4', **options) do
|
155
144
|
content = tag.span(icon, class: 'pr-2')
|
156
145
|
content += text_renderer(rich_text_array)
|
157
146
|
content
|
158
147
|
end
|
159
148
|
end
|
160
149
|
|
161
|
-
def render_image(src,
|
150
|
+
def render_image(src, _expiry_time, caption, _type, options = {})
|
162
151
|
content_tag(:figure, options) do
|
163
152
|
content = tag.img(src: src, alt: '')
|
164
153
|
content += tag.figcaption(text_renderer(caption))
|
@@ -166,7 +155,7 @@ module NotionRails
|
|
166
155
|
end
|
167
156
|
end
|
168
157
|
|
169
|
-
def render_video(src,
|
158
|
+
def render_video(src, _expiry_time, caption, type, options = {})
|
170
159
|
content_tag(:figure, options) do
|
171
160
|
content = if type == 'file'
|
172
161
|
video_tag(src, controls: true)
|
data/lib/notion_rails/version.rb
CHANGED