mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
282f53f0cd
Allows theme authors to specify custom theme settings for the theme. Centralizes the theme/site settings into a single construct
30 lines
833 B
JavaScript
30 lines
833 B
JavaScript
export default Ember.Mixin.create({
|
|
overridden: function() {
|
|
let val = this.get('value'),
|
|
defaultVal = this.get('default');
|
|
|
|
if (val === null) val = '';
|
|
if (defaultVal === null) defaultVal = '';
|
|
|
|
return val.toString() !== defaultVal.toString();
|
|
}.property('value', 'default'),
|
|
|
|
validValues: function() {
|
|
const vals = [],
|
|
translateNames = this.get('translate_names');
|
|
|
|
this.get('valid_values').forEach(v => {
|
|
if (v.name && v.name.length > 0 && translateNames) {
|
|
vals.addObject({ name: I18n.t(v.name), value: v.value });
|
|
} else {
|
|
vals.addObject(v);
|
|
}
|
|
});
|
|
return vals;
|
|
}.property('valid_values'),
|
|
|
|
allowsNone: function() {
|
|
if ( _.indexOf(this.get('valid_values'), '') >= 0 ) return 'admin.settings.none';
|
|
}.property('valid_values')
|
|
});
|