2013-02-11 06:15:31 -05:00
|
|
|
module TopicsHelper
|
2017-04-10 13:59:03 -04:00
|
|
|
include ApplicationHelper
|
2013-02-11 06:15:31 -05:00
|
|
|
|
|
|
|
def render_topic_title(topic)
|
2017-07-27 21:20:09 -04:00
|
|
|
link_to(Emoji.gsub_emoji_to_unicode(topic.title), topic.relative_url)
|
2013-02-11 06:15:31 -05:00
|
|
|
end
|
2013-02-11 06:18:17 -05:00
|
|
|
|
2015-02-13 06:34:22 -05:00
|
|
|
def categories_breadcrumb(topic)
|
2015-06-03 04:13:33 -04:00
|
|
|
breadcrumb = []
|
2015-02-13 06:34:22 -05:00
|
|
|
|
|
|
|
category = topic.category
|
2015-06-03 04:13:33 -04:00
|
|
|
if category && !category.uncategorized?
|
2015-02-13 06:34:22 -05: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 05:06:55 -04:00
|
|
|
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
|
2015-02-13 06:34:22 -05:00
|
|
|
end
|
|
|
|
|
2013-02-11 06:15:31 -05:00
|
|
|
end
|