X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/add32a4fe97255a4db0627a8550f4c37fa0ee4ca..88a7ca5625344e31538600d251ab227824582467:/lib/rich_text.rb diff --git a/lib/rich_text.rb b/lib/rich_text.rb index edfa535f4..03800725a 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -3,6 +3,8 @@ module RichText "Business Description:", "Additional Keywords:" ].freeze + MAX_DESCRIPTION_LENGTH = 500 + def self.new(format, text) case format when "html" then HTML.new(text || "") @@ -53,6 +55,14 @@ module RichText nil end + def image_alt + nil + end + + def description + nil + end + protected def simple_format(text) @@ -92,9 +102,18 @@ module RichText end def image - return @image if defined? @image + @image_element = first_image_element(document.root) unless defined? @image_element + @image_element.attr["src"] if @image_element + end + + def image_alt + @image_element = first_image_element(document.root) unless defined? @image_element + @image_element.attr["alt"] if @image_element + end - @image = first_image_element(document.root)&.attr&.[]("src") + def description + @paragraph_element = first_paragraph_element(document.root) unless defined? @paragraph_element + truncated_text_content(@paragraph_element) if @paragraph_element end private @@ -112,9 +131,40 @@ module RichText end end + def first_paragraph_element(element) + return element if paragraph?(element) + + element.children.find do |child| + nested_paragraph = first_paragraph_element(child) + break nested_paragraph if nested_paragraph + end + end + + def truncated_text_content(element) + text = "" + + append_text = lambda do |child| + if child.type == :text + text << child.value + else + child.children.each do |c| + append_text.call(c) + break if text.length > MAX_DESCRIPTION_LENGTH + end + end + end + append_text.call(element) + + text.truncate(MAX_DESCRIPTION_LENGTH) + end + def image?(element) element.type == :img || (element.type == :html_element && element.value == "img") end + + def paragraph?(element) + element.type == :p || (element.type == :html_element && element.value == "p") + end end class Text < Base