2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-11 19:15:31 +08:00
|
|
|
module TopicsHelper
|
2017-04-10 23:29:03 +05:30
|
|
|
include ApplicationHelper
|
2013-02-11 19:15:31 +08:00
|
|
|
|
|
|
|
def render_topic_title(topic)
|
2017-07-28 10:20:09 +09:00
|
|
|
link_to(Emoji.gsub_emoji_to_unicode(topic.title), topic.relative_url)
|
2013-02-11 19:15:31 +08:00
|
|
|
end
|
2013-02-11 19:18:17 +08:00
|
|
|
|
2015-02-13 19:34:22 +08:00
|
|
|
def categories_breadcrumb(topic)
|
2015-06-03 18:13:33 +10:00
|
|
|
breadcrumb = []
|
2015-02-13 19:34:22 +08:00
|
|
|
|
|
|
|
category = topic.category
|
2015-06-03 18:13:33 +10:00
|
|
|
if category && !category.uncategorized?
|
2015-02-13 19:34:22 +08:00
|
|
|
if (parent = category.parent_category)
|
|
|
|
breadcrumb.push url: parent.url, name: parent.name
|
|
|
|
end
|
|
|
|
breadcrumb.push url: category.url, name: category.name
|
|
|
|
end
|
2016-04-25 15:55:15 -04:00
|
|
|
|
2015-06-03 19:06:55 +10:00
|
|
|
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
|
2015-02-13 19:34:22 +08:00
|
|
|
end
|
|
|
|
|
2013-02-11 19:15:31 +08:00
|
|
|
end
|