79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
import SelectKitRowComponent from "select-kit/components/select-kit/select-kit-row";
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
import Category from "discourse/models/category";
|
|
import { categoryBadgeHTML } from "discourse/helpers/category-link";
|
|
|
|
export default SelectKitRowComponent.extend({
|
|
layoutName: "select-kit/templates/components/category-row",
|
|
classNames: "category-row",
|
|
|
|
hideParentCategory: Ember.computed.bool("options.hideParentCategory"),
|
|
allowUncategorized: Ember.computed.bool("options.allowUncategorized"),
|
|
categoryLink: Ember.computed.bool("options.categoryLink"),
|
|
|
|
@computed("options.displayCategoryDescription")
|
|
displayCategoryDescription(displayCategoryDescription) {
|
|
if (Ember.isNone(displayCategoryDescription)) {
|
|
return true;
|
|
}
|
|
|
|
return displayCategoryDescription;
|
|
},
|
|
|
|
@computed("computedContent.value", "computedContent.name")
|
|
category(value, name) {
|
|
if (Ember.isEmpty(value)) {
|
|
const uncat = Category.findUncategorized();
|
|
if (uncat && uncat.get("name") === name) {
|
|
return uncat;
|
|
}
|
|
} else {
|
|
return Category.findById(parseInt(value, 10));
|
|
}
|
|
},
|
|
|
|
@computed("category")
|
|
badgeForCategory(category) {
|
|
return categoryBadgeHTML(category, {
|
|
link: this.get("categoryLink"),
|
|
allowUncategorized: this.get("allowUncategorized"),
|
|
hideParent: this.get("hideParentCategory")
|
|
}).htmlSafe();
|
|
},
|
|
|
|
@computed("parentCategory")
|
|
badgeForParentCategory(parentCategory) {
|
|
return categoryBadgeHTML(parentCategory, {link: false}).htmlSafe();
|
|
},
|
|
|
|
@computed("parentCategoryid")
|
|
parentCategory(parentCategoryId) {
|
|
return Category.findById(parentCategoryId);
|
|
},
|
|
|
|
@computed("parentCategoryid")
|
|
hasParentCategory(parentCategoryid) {
|
|
return !Ember.isNone(parentCategoryid);
|
|
},
|
|
|
|
@computed("category")
|
|
parentCategoryid(category) {
|
|
return category.get("parent_category_id");
|
|
},
|
|
|
|
@computed("category.topic_count")
|
|
topicCount(topicCount) {
|
|
return `× ${topicCount}`.htmlSafe();
|
|
},
|
|
|
|
@computed("displayCategoryDescription", "category.description")
|
|
shouldDisplayDescription(displayCategoryDescription, description) {
|
|
return displayCategoryDescription && description && description !== "null";
|
|
},
|
|
|
|
@computed("category.description")
|
|
description(description) {
|
|
return `${description.substr(0, 200)}${description.length > 200 ? '…' : ''}`;
|
|
}
|
|
});
|