Add description_html field to Category

(cherry picked from commit aa8f15f795)
This commit is contained in:
syeopite 2021-05-08 20:07:07 -07:00
parent ea6434662d
commit 7b60dac526
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82
2 changed files with 5 additions and 0 deletions

View File

@ -256,6 +256,9 @@ private class CategoryParser < ItemParser
badges << {badge["style"].as_s, badge["label"].as_s}
end
# Category description
description_html = item_contents["subtitle"]?.try { |desc| parse_content(desc) } || ""
# Content parsing
contents = [] of SearchItem
@ -278,6 +281,7 @@ private class CategoryParser < ItemParser
Category.new({
title: title,
contents: contents,
description_html: description_html,
browse_endpoint_data: browse_endpoint_data,
badges: badges,
})

View File

@ -232,6 +232,7 @@ class Category
property title : String
property contents : Array(SearchItem)
property browse_endpoint_data : String?
property description_html : String
property badges : Array(Tuple(String, String))?
def to_json(locale, json : JSON::Builder)