FEATURE: support category/subcategory name in new-topic route

This commit is contained in:
Arpit Jalan
2015-05-06 18:12:35 +05:30
parent 8f706f11cb
commit 6cc092d54c
4 changed files with 22 additions and 4 deletions
@@ -441,6 +441,23 @@ export default DiscourseController.extend({
if (opts.topicCategoryId) {
this.set('model.categoryId', opts.topicCategoryId);
} else if (opts.topicCategory) {
const splitCategory = opts.topicCategory.split("/");
let category;
if (!splitCategory[1]) {
category = this.site.get('categories').findProperty('nameLower', splitCategory[0].toLowerCase());
} else {
const categories = Discourse.Category.list();
const mainCategory = categories.findProperty('nameLower', splitCategory[0].toLowerCase());
category = categories.find(function(item) {
return item && item.get('nameLower') === splitCategory[1].toLowerCase() && item.get('parent_category_id') === mainCategory.id;
});
}
if (category) {
this.set('model.categoryId', category.get('id'));
}
}
if (opts.topicBody) {