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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3eca01ee926a98e214454e4329988d1e383fafbd21a9b77fc3bbcbcb907e66c5
4
- data.tar.gz: c900f19f3f6c0e8eac48b1890347a8b7305b688a7e77e754c3a7e5a603e45117
3
+ metadata.gz: 7d8520fa8311a89b08c67281c8b2facb0083c983924064f8a73fd99845d45888
4
+ data.tar.gz: 51463269664f950db99b64211544d851d442e966160d96f36cc01d158fe7e457
5
5
  SHA512:
6
- metadata.gz: 93b528ac174dbf02dc3ff4ae6ac8a56aaa2ab4b58e38657ff4832bd47700c4e59ca3da0b98a0c33dd1e01f05c674d018d50b77489831bef9c4c9882df334f665
7
- data.tar.gz: 0d7f23fe9ebaecaed6bb83381d899332459123a3ae07f10ffc6cd2c4dab98b00dde236a330617ce8f23203e54bf81822faa48a2bc7d1c5ced987ac456923238a
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: "#{options[:code]} language-#{@properties["language"]}")
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, pre_options) do
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, siblings, children, options = {})
95
- pre_options = options
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
- pre_options = options
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
- div_options = options.dup
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, pre_options) do
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
- pre_options = options
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, expiry_time, caption, type, options = {})
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, expiry_time, caption, type, options = {})
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NotionRails
4
- VERSION = '0.2.2'
4
+ VERSION = '0.2.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notion_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillermo Aguirre