2013-02-11 19:15:31 +08:00
|
|
|
module TopicsHelper
|
2017-04-11 01:59:03 +08:00
|
|
|
include ApplicationHelper
|
2013-02-11 19:15:31 +08:00
|
|
|
|
|
|
|
def render_topic_title(topic)
|
2017-07-28 09:20:09 +08: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 16:13:33 +08:00
|
|
|
breadcrumb = []
|
2015-02-13 19:34:22 +08:00
|
|
|
|
|
|
|
category = topic.category
|
2015-06-03 16:13:33 +08: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-26 03:55:15 +08:00
|
|
|
|
2015-06-03 17:06:55 +08: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
|