This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/controllers/edit-category.js.es6
Robin Ward d2ac5a9ac6 Rename /category/xyz paths to /c/xyz -- @SamSaffron did most of the
work even though I'm merging the patch!
2014-10-16 12:15:31 -04:00

198 lines
6.5 KiB
JavaScript

import ModalFunctionality from 'discourse/mixins/modal-functionality';
import ObjectController from 'discourse/controllers/object';
/**
Modal for editing / creating a category
@class EditCategoryController
@extends ObjectController
@namespace Discourse
@uses ModalFunctionality
@module Discourse
**/
export default ObjectController.extend(ModalFunctionality, {
foregroundColors: ['FFFFFF', '000000'],
categoryUploadUrl: '/category/uploads',
parentCategories: function() {
return Discourse.Category.list().filter(function (c) {
return !c.get('parentCategory');
});
}.property(),
// We can change the parent if there are no children
subCategories: function() {
if (Em.isEmpty(this.get('id'))) { return null; }
return Discourse.Category.list().filterBy('parent_category_id', this.get('id'));
}.property('model.id'),
canSelectParentCategory: Em.computed.not('isUncategorizedCategory'),
onShow: function() {
this.changeSize();
this.titleChanged();
},
changeSize: function() {
if (this.present('description')) {
this.set('controllers.modal.modalClass', 'edit-category-modal full');
} else {
this.set('controllers.modal.modalClass', 'edit-category-modal small');
}
}.observes('description'),
title: function() {
if (this.get('id')) {
return I18n.t("category.edit_long") + " : " + this.get('model.name');
}
return I18n.t("category.create") + (this.get('model.name') ? (" : " + this.get('model.name')) : '');
}.property('id', 'model.name'),
titleChanged: function() {
this.set('controllers.modal.title', this.get('title'));
}.observes('title'),
disabled: function() {
if (this.get('saving') || this.get('deleting')) return true;
if (!this.get('name')) return true;
if (!this.get('color')) return true;
return false;
}.property('saving', 'name', 'color', 'deleting'),
emailInEnabled: Discourse.computed.setting('email_in'),
deleteDisabled: function() {
return (this.get('deleting') || this.get('saving') || false);
}.property('disabled', 'saving', 'deleting'),
colorStyle: function() {
return "background-color: #" + (this.get('color')) + "; color: #" + (this.get('text_color')) + ";";
}.property('color', 'text_color'),
categoryBadgePreview: function() {
var c = Discourse.Category.create({
name: this.get('categoryName'),
color: this.get('color'),
text_color: this.get('text_color'),
parent_category_id: parseInt(this.get('parent_category_id'),10),
read_restricted: this.get('model.read_restricted')
});
return Discourse.HTML.categoryBadge(c, {showParent: true, link: false});
}.property('parent_category_id', 'categoryName', 'color', 'text_color'),
// background colors are available as a pipe-separated string
backgroundColors: function() {
var categories = Discourse.Category.list();
return Discourse.SiteSettings.category_colors.split("|").map(function(i) { return i.toUpperCase(); }).concat(
categories.map(function(c) { return c.color.toUpperCase(); }) ).uniq();
}.property('Discourse.SiteSettings.category_colors'),
usedBackgroundColors: function() {
var categories = Discourse.Category.list();
var currentCat = this.get('model');
return categories.map(function(c) {
// If editing a category, don't include its color:
return (currentCat.get('id') && currentCat.get('color').toUpperCase() === c.color.toUpperCase()) ? null : c.color.toUpperCase();
}, this).compact();
}.property('id', 'color'),
categoryName: function() {
var name = this.get('name') || "";
return name.trim().length > 0 ? name : I18n.t("preview");
}.property('name'),
buttonTitle: function() {
if (this.get('saving')) return I18n.t("saving");
if (this.get('isUncategorizedCategory')) return I18n.t("save");
return (this.get('id') ? I18n.t("category.save") : I18n.t("category.create"));
}.property('saving', 'id'),
deleteButtonTitle: function() {
return I18n.t('category.delete');
}.property(),
showDescription: function() {
return !this.get('isUncategorizedCategory') && this.get('id');
}.property('isUncategorizedCategory', 'id'),
showPositionInput: Discourse.computed.setting('fixed_category_positions'),
actions: {
showCategoryTopic: function() {
this.send('closeModal');
Discourse.URL.routeTo(this.get('topic_url'));
return false;
},
editPermissions: function(){
this.set('editingPermissions', true);
},
addPermission: function(group, permission_id){
this.get('model').addPermission({group_name: group + "", permission: Discourse.PermissionType.create({id: permission_id})});
},
removePermission: function(permission){
this.get('model').removePermission(permission);
},
saveCategory: function() {
var self = this,
model = this.get('model'),
parentCategory = Discourse.Category.list().findBy('id', parseInt(model.get('parent_category_id'), 10));
this.set('saving', true);
model.set('parentCategory', parentCategory);
self.set('saving', false);
this.get('model').save().then(function(result) {
self.send('closeModal');
model.setProperties({slug: result.category.slug, id: result.category.id });
Discourse.URL.redirectTo("/c/" + Discourse.Category.slugFor(model));
}).catch(function(error) {
if (error && error.responseText) {
self.flash($.parseJSON(error.responseText).errors[0]);
} else {
self.flash(I18n.t('generic_error'));
}
self.set('saving', false);
});
},
deleteCategory: function() {
var self = this;
this.set('deleting', true);
this.send('hideModal');
bootbox.confirm(I18n.t("category.delete_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function(result) {
if (result) {
self.get('model').destroy().then(function(){
// success
self.send('closeModal');
Discourse.URL.redirectTo("/categories");
}, function(error){
if (error && error.responseText) {
self.flash($.parseJSON(error.responseText).errors[0]);
} else {
self.flash(I18n.t('generic_error'));
}
self.send('showModal');
self.displayErrors([I18n.t("category.delete_error")]);
self.set('deleting', false);
});
} else {
self.send('showModal');
self.set('deleting', false);
}
});
}
}
});