FIX: Don't disable details when below truncate limit

This commit is contained in:
Robin Ward 2017-12-20 15:44:36 -05:00
parent 7e3c4b4b2f
commit 21e1b05c7e
2 changed files with 21 additions and 5 deletions

View File

@ -19,6 +19,7 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
@remap_emoji = options[:remap_emoji] == true
@start_excerpt = false
@summary_contents = ""
@detail_contents = ""
end
def self.get_excerpt(html, length, options)
@ -110,8 +111,10 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
@in_spoiler = true
end
when "details"
@detail_contents = ""
@in_details = true
when "summary"
@summary_contents = ""
@in_summary = true
end
end
@ -133,12 +136,15 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
@in_quote = false
when "details"
@in_details = false
full = "<details><summary>#{clean(@summary_contents)}</summary>#{clean(@detail_contents)}</details>"
if @current_length + full.length > @length
@excerpt << "<details class='disabled'><summary>#{@summary_contents[0..@length]}</summary></details>"
else
@excerpt << full
end
when "summary"
@in_summary = false
if @summary_contents.present?
@excerpt << "<details class='disabled'><summary>#{@summary_contents[0..@length]}</summary></details>"
end
@summary_contents = ""
when "div", "span"
throw :done if @start_excerpt
characters("</span>", false, false, false) if @in_spoiler
@ -146,6 +152,10 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
end
end
def clean(str)
ERB::Util.html_escape(str.strip)
end
def characters(string, truncate = true, count_it = true, encode = true)
return if @in_quote
@ -154,6 +164,8 @@ class ExcerptParser < Nokogiri::XML::SAX::Document
if @in_details
if @in_summary
@summary_contents << string
else
@detail_contents << string
end
return
end

View File

@ -385,10 +385,14 @@ describe PrettyText do
expect(PrettyText.excerpt("<span class='spoiler'>spoiler</div>", 100)).to match_html "<span class='spoiler'>spoiler</span>"
end
it "should keep details" do
it "should keep details if too long" do
expect(PrettyText.excerpt("<details><summary>expand</summary><p>hello</p></details>", 30)).to match_html "<details class='disabled'><summary>expand</summary></details>"
end
it "doesn't disable details if short enough" do
expect(PrettyText.excerpt("<details><summary>expand</summary><p>hello</p></details>", 60)).to match_html "<details><summary>expand</summary>hello</details>"
end
it "should remove meta informations" do
expect(PrettyText.excerpt(wrapped_image, 100)).to match_html "<a href='//localhost:3000/uploads/default/4399/33691397e78b4d75.png' class='lightbox' title='Screen Shot 2014-04-14 at 9.47.10 PM.png'>[image]</a>"
end