mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:21:35 +08:00
36 lines
890 B
JavaScript
36 lines
890 B
JavaScript
/**
|
|
This is the itemController for `Discourse.AdminBadgesController`. Its main purpose
|
|
is to indicate which badge was selected.
|
|
|
|
@class AdminBadgeController
|
|
@extends Discourse.ObjectController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
|
|
export default Discourse.ObjectController.extend({
|
|
/**
|
|
Whether this badge has been selected.
|
|
|
|
@property selected
|
|
@type {Boolean}
|
|
**/
|
|
selected: Discourse.computed.propertyEqual('model.name', 'parentController.selectedItem.name'),
|
|
|
|
/**
|
|
Show the displayName only if it is different from the name.
|
|
|
|
@property showDisplayName
|
|
@type {Boolean}
|
|
**/
|
|
showDisplayName: Discourse.computed.propertyNotEqual('selectedItem.name', 'selectedItem.displayName'),
|
|
|
|
/**
|
|
Don't allow editing if this is a system badge.
|
|
|
|
@property readOnly
|
|
@type {Boolean}
|
|
**/
|
|
readOnly: Ember.computed.alias('model.system')
|
|
});
|