2013-03-01 12:45:25 -05:00
|
|
|
/**
|
|
|
|
A view to display a site setting with edit controls
|
|
|
|
|
|
|
|
@class SiteSettingView
|
|
|
|
@extends Discourse.View
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
|
|
|
**/
|
2014-02-16 12:53:18 -05:00
|
|
|
Discourse.SiteSettingView = Discourse.View.extend(Discourse.ScrollTop, {
|
2013-03-01 12:45:25 -05:00
|
|
|
classNameBindings: [':row', ':setting', 'content.overridden'],
|
|
|
|
|
|
|
|
templateName: function() {
|
|
|
|
|
|
|
|
// If we're editing a boolean, return a different template
|
2013-06-11 11:39:55 -04:00
|
|
|
if (this.get('content.type') === 'bool') return 'admin/templates/site_settings/setting_bool';
|
|
|
|
|
|
|
|
// If we're editing an enum field, show a dropdown
|
|
|
|
if (this.get('content.type') === 'enum' ) return 'admin/templates/site_settings/setting_enum';
|
2013-03-01 12:45:25 -05:00
|
|
|
|
|
|
|
// Default to string editor
|
|
|
|
return 'admin/templates/site_settings/setting_string';
|
|
|
|
|
|
|
|
}.property('content.type')
|
|
|
|
|
|
|
|
});
|