mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:03:45 +08:00
Merge pull request #2405 from ligthyear/select2-sitesetting
AdminUI: Use Select2.js for SiteSetting Lists – adds Autocomplete and DnD-Sorting
This commit is contained in:
commit
a1887c97c6
|
@ -2,81 +2,41 @@
|
|||
Provide a nice GUI for a pipe-delimited list in the site settings.
|
||||
|
||||
@param settingValue is a reference to SiteSetting.value.
|
||||
@param choices is a reference to SiteSetting.choices
|
||||
|
||||
@class Discourse.ListSettingComponent
|
||||
@extends Ember.Component
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
|
||||
Discourse.ListSettingComponent = Ember.Component.extend({
|
||||
layoutName: 'components/list-setting',
|
||||
tagName: 'div',
|
||||
|
||||
init: function() {
|
||||
this._super();
|
||||
this.on("focusOut", this.uncacheValue);
|
||||
this.set('children', []);
|
||||
didInsertElement: function(){
|
||||
this.$("input").select2({
|
||||
multiple: false,
|
||||
separator: "|",
|
||||
tokenSeparators: [",", " ", "|"],
|
||||
tags : this.get("choices") || [],
|
||||
width: 'off'
|
||||
}).on("change", function(obj) {
|
||||
this.set("settingValue", obj.val.join("|"));
|
||||
this.refreshSortables();
|
||||
}.bind(this));
|
||||
|
||||
this.refreshSortables();
|
||||
},
|
||||
|
||||
canAddNew: true,
|
||||
refreshOnReset: function() {
|
||||
this.$("input").select2("val", this.get("settingValue").split("|"));
|
||||
}.observes("settingValue"),
|
||||
|
||||
readValues: function() {
|
||||
return this.get('settingValue').split('|');
|
||||
}.property('settingValue'),
|
||||
|
||||
/**
|
||||
Transfer the debounced value into the settingValue parameter.
|
||||
|
||||
This will cause a redraw of the child textboxes.
|
||||
|
||||
@param newFocus {Number|undefined} Which list index to focus on next, or undefined to not refocus
|
||||
**/
|
||||
uncacheValue: function(newFocus) {
|
||||
var oldValue = this.get('settingValue'),
|
||||
newValue = this.get('settingValueCached'),
|
||||
self = this;
|
||||
|
||||
if (newValue !== undefined && newValue !== oldValue) {
|
||||
this.set('settingValue', newValue);
|
||||
}
|
||||
|
||||
if (newFocus !== undefined && newFocus > 0) {
|
||||
Em.run.schedule('afterRender', function() {
|
||||
var children = self.get('children');
|
||||
if (newFocus < children.length) {
|
||||
$(children[newFocus].get('element')).focus();
|
||||
} else if (newFocus === children.length) {
|
||||
$(self.get('element')).children().children('.list-add-value').focus();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
setItemValue: function(index, item) {
|
||||
var values = this.get('readValues');
|
||||
values[index] = item;
|
||||
|
||||
// Remove blank items
|
||||
values = values.filter(function(s) { return s !== ''; });
|
||||
this.setProperties({
|
||||
settingValueCached: values.join('|'),
|
||||
canAddNew: true
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
addNewItem: function() {
|
||||
var newValue = this.get('settingValue') + '|';
|
||||
this.setProperties({
|
||||
settingValue: newValue,
|
||||
settingValueCached: newValue,
|
||||
canAddNew: false
|
||||
});
|
||||
|
||||
var self = this;
|
||||
Em.run.schedule('afterRender', function() {
|
||||
var children = self.get('children');
|
||||
$(children[children.length - 1].get('element')).focus();
|
||||
});
|
||||
}
|
||||
refreshSortables: function() {
|
||||
this.$("ul.select2-choices").sortable().on('sortupdate', function() {
|
||||
this.$("input").select2("onSortEnd");
|
||||
}.bind(this));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
|
|
@ -1,44 +0,0 @@
|
|||
/**
|
||||
One item in a ListSetting.
|
||||
|
||||
@param parent is the ListSettingComponent.
|
||||
|
||||
@class Discourse.ListSettingItemComponent
|
||||
@extends Ember.Component, Ember.TextSupport
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.ListSettingItemComponent = Ember.Component.extend(Ember.TextSupport, {
|
||||
classNames: ['ember-text-field'],
|
||||
tagName: "input",
|
||||
attributeBindings: ['type', 'value', 'size', 'pattern'],
|
||||
|
||||
_initialize: function() {
|
||||
// _parentView is the #each
|
||||
// parent is the ListSettingComponent
|
||||
this.setProperties({
|
||||
value: this.get('_parentView.content'),
|
||||
index: this.get('_parentView.contentIndex')
|
||||
});
|
||||
this.get('parent').get('children')[this.get('index')] = this;
|
||||
}.on('init'),
|
||||
|
||||
markTab: function(e) {
|
||||
var keyCode = e.keyCode || e.which;
|
||||
|
||||
if (keyCode === 9) {
|
||||
this.set('nextIndex', this.get('index') + (e.shiftKey ? -1 : 1));
|
||||
}
|
||||
}.on('keyDown'),
|
||||
|
||||
reloadList: function() {
|
||||
var nextIndex = this.get('nextIndex');
|
||||
this.set('nextIndex', undefined); // one use only
|
||||
this.get('parent').uncacheValue(nextIndex);
|
||||
}.on('focusOut'),
|
||||
|
||||
_elementValueDidChange: function() {
|
||||
this._super();
|
||||
this.get('parent').setItemValue(this.get('index'), this.get('value'));
|
||||
}
|
||||
});
|
|
@ -2,7 +2,7 @@
|
|||
<h3>{{unbound setting}}</h3>
|
||||
</div>
|
||||
<div class="setting-value">
|
||||
{{list-setting settingValue=value}}
|
||||
{{list-setting settingValue=value choices=choices}}
|
||||
<div class='desc'>{{unbound description}}</div>
|
||||
</div>
|
||||
{{#if dirty}}
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
<div class="ac-wrap clearfix input-setting-list">
|
||||
{{#each readValues}}
|
||||
{{list-setting-item parent=view action=update classNames="list-input-item"}}
|
||||
{{/each}}
|
||||
{{#if canAddNew}}
|
||||
<button class="btn no-text list-add-value" {{action addNewItem}}><i class="fa fa-plus"></i></button>
|
||||
{{/if}}
|
||||
<div class="input-setting-list">
|
||||
<input type="text" value="{{unbound settingValue}}">
|
||||
</div>
|
||||
|
|
|
@ -205,30 +205,29 @@
|
|||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
|
||||
.list-input-item {
|
||||
width: 90px;
|
||||
margin: 2px 1px;
|
||||
background-color: $secondary;
|
||||
border: 1px solid scale-color-diff();
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
|
||||
&:focus {
|
||||
border-color: $tertiary;
|
||||
outline: 0;
|
||||
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3), 0 0 8px $tertiary;
|
||||
li.select2-search-choice {
|
||||
cursor: pointer;
|
||||
.select2-search-choice-close {
|
||||
content: "x"
|
||||
}
|
||||
}
|
||||
|
||||
.btn.list-add-value {
|
||||
margin: 0px 3px;
|
||||
padding: 4px 10px;
|
||||
color: $tertiary;
|
||||
li.sortable-placeholder {
|
||||
padding: 3px 5px 3px 18px;
|
||||
margin: 3px 0px 3px 5px;
|
||||
position: relative;
|
||||
line-height: 13px;
|
||||
cursor: default;
|
||||
border: 1px dashed #AAA;
|
||||
border-radius: 3px;
|
||||
background-clip: padding-box;
|
||||
-moz-user-select: none;
|
||||
background-color: none;
|
||||
width: 3em;
|
||||
height: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.desc {
|
||||
padding-top: 3px;
|
||||
|
|
|
@ -58,14 +58,37 @@ basic:
|
|||
refresh: true
|
||||
list: true
|
||||
default: 'latest|new|unread|starred|top|categories'
|
||||
choices:
|
||||
- latest
|
||||
- new
|
||||
- unread
|
||||
- starred
|
||||
- top
|
||||
- categories
|
||||
- read
|
||||
- posted
|
||||
post_menu:
|
||||
client: true
|
||||
list: true
|
||||
default: 'like|edit|flag|delete|share|bookmark|admin|reply'
|
||||
choices:
|
||||
- like
|
||||
- edit
|
||||
- flag
|
||||
- delete
|
||||
- share
|
||||
- bookmark
|
||||
- admin
|
||||
- reply
|
||||
share_links:
|
||||
client: true
|
||||
list: true
|
||||
default: 'twitter|facebook|google+|email'
|
||||
choices:
|
||||
- twitter
|
||||
- facebook
|
||||
- google+
|
||||
- email
|
||||
category_colors:
|
||||
client: true
|
||||
list: true
|
||||
|
|
|
@ -42,6 +42,10 @@ module SiteSettingExtension
|
|||
@lists ||= []
|
||||
end
|
||||
|
||||
def choices
|
||||
@choices ||= {}
|
||||
end
|
||||
|
||||
def hidden_settings
|
||||
@hidden_settings ||= []
|
||||
end
|
||||
|
@ -60,6 +64,11 @@ module SiteSettingExtension
|
|||
enum = opts[:enum]
|
||||
enums[name] = enum.is_a?(String) ? enum.constantize : enum
|
||||
end
|
||||
if opts[:choices]
|
||||
choices.has_key?(name) ?
|
||||
choices[name].concat(opts[:choices]) :
|
||||
choices[name] = opts[:choices]
|
||||
end
|
||||
if opts[:list]
|
||||
lists << name
|
||||
end
|
||||
|
@ -111,12 +120,16 @@ module SiteSettingExtension
|
|||
.map do |s, v|
|
||||
value = send(s)
|
||||
type = types[get_data_type(s, value)]
|
||||
{setting: s,
|
||||
opts = {setting: s,
|
||||
description: description(s),
|
||||
default: v,
|
||||
type: type.to_s,
|
||||
value: value.to_s,
|
||||
category: categories[s]}.merge( type == :enum ? {valid_values: enum_class(s).values, translate_names: enum_class(s).translate_names?} : {})
|
||||
category: categories[s]
|
||||
}
|
||||
opts.merge({valid_values: enum_class(s).values, translate_names: enum_class(s).translate_names?}) if type == :enum
|
||||
opts[:choices] = choices[s] if choices.has_key? s
|
||||
opts
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user