2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-11 05:15:31 -06:00
|
|
|
module TopicsHelper
|
2017-04-10 12:59:03 -05:00
|
|
|
include ApplicationHelper
|
2013-02-11 05:15:31 -06:00
|
|
|
|
|
|
|
def render_topic_title(topic)
|
2017-07-21 13:24:28 -05:00
|
|
|
link_to(Emoji.gsub_emoji_to_unicode(topic.title), topic.relative_url)
|
2013-02-11 05:15:31 -06:00
|
|
|
end
|
2013-02-11 05:18:17 -06:00
|
|
|
|
2015-02-13 05:34:22 -06:00
|
|
|
def categories_breadcrumb(topic)
|
2015-06-03 03:13:33 -05:00
|
|
|
breadcrumb = []
|
2015-02-13 05:34:22 -06:00
|
|
|
category = topic.category
|
2020-01-21 15:27:21 -06:00
|
|
|
|
2015-06-03 03:13:33 -05:00
|
|
|
if category && !category.uncategorized?
|
2020-04-29 13:40:21 -05:00
|
|
|
breadcrumb.push(url: category.url, name: category.name, color: category.color)
|
2020-01-21 15:27:21 -06:00
|
|
|
while category = category.parent_category
|
2020-04-29 13:40:21 -05:00
|
|
|
breadcrumb.prepend(url: category.url, name: category.name, color: category.color)
|
2015-02-13 05:34:22 -06:00
|
|
|
end
|
|
|
|
end
|
2016-04-25 14:55:15 -05:00
|
|
|
|
2015-06-03 04:06:55 -05:00
|
|
|
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
|
2015-02-13 05:34:22 -06:00
|
|
|
end
|
2013-02-11 05:15:31 -06:00
|
|
|
end
|