Refactor autocomplete and add a simple select one

This commit is contained in:
Yohan Boniface 2014-06-19 00:11:12 +02:00
parent ae27d8d504
commit 9257264b8d
3 changed files with 361 additions and 321 deletions

View file

@ -1,10 +1,8 @@
L.S.AutoComplete = L.Class.extend({
L.S.autoComplete = function (el, options) {
var API = {
options: {
placeholder: "Start typing...",
emptyMessage: "No result",
placeholder: 'Start typing...',
emptyMessage: 'No result',
allowFree: true,
minChar: 2,
maxResults: 5
@ -13,17 +11,17 @@ L.S.autoComplete = function (el, options) {
CACHE: '',
RESULTS: [],
_init: function (el, options) {
initialize: function (el, options) {
this.el = L.DomUtil.get(el);
this.options = L.Util.extend(this.options, options);
L.setOptions(options);
var CURRENT = null;
try {
Object.defineProperty(this, "CURRENT", {
Object.defineProperty(this, 'CURRENT', {
get: function () {
return CURRENT;
},
set: function (index) {
if (typeof index === "object") {
if (typeof index === 'object') {
index = this.resultToIndex(index);
}
CURRENT = index;
@ -39,16 +37,16 @@ L.S.autoComplete = function (el, options) {
this.input = L.DomUtil.element('input', {
type: 'text',
placeholder: this.options.placeholder,
autocomplete: "off"
autocomplete: 'off'
});
L.DomUtil.before(this.el, this.input);
L.DomEvent.on(this.input, "keydown", this.onKeyDown, this);
L.DomEvent.on(this.input, "keyup", this.onKeyUp, this);
L.DomEvent.on(this.input, "blur", this.onBlur, this);
L.DomEvent.on(this.input, 'keydown', this.onKeyDown, this);
L.DomEvent.on(this.input, 'keyup', this.onKeyUp, this);
L.DomEvent.on(this.input, 'blur', this.onBlur, this);
},
createContainer: function () {
this.container = L.DomUtil.element('ul', {className: 'umap-autocomplete'}, document.querySelector('body'));
this.container = L.DomUtil.element('ul', {className: 'umap-autocomplete'}, document.body);
},
resizeContainer: function()
@ -58,9 +56,10 @@ L.S.autoComplete = function (el, options) {
this.container.style.left = l + 'px';
this.container.style.top = t + 'px';
var width = this.options.width ? this.options.width : this.input.offsetWidth - 2;
this.container.style.width = width + "px";
this.container.style.width = width + 'px';
},
onKeyDown: function (e) {
switch (e.keyCode) {
case L.S.Keys.TAB:
@ -70,7 +69,7 @@ L.S.autoComplete = function (el, options) {
}
L.DomEvent.stop(e);
break;
case L.S.Keys.RETURN:
case L.S.Keys.ENTER:
L.DomEvent.stop(e);
this.setChoice();
break;
@ -111,7 +110,7 @@ L.S.autoComplete = function (el, options) {
onKeyUp: function (e) {
var special = [
L.S.Keys.TAB,
L.S.Keys.RETURN,
L.S.Keys.ENTER,
L.S.Keys.LEFT,
L.S.Keys.RIGHT,
L.S.Keys.DOWN,
@ -127,7 +126,7 @@ L.S.autoComplete = function (el, options) {
}
},
onBlur: function (e) {
onBlur: function () {
var self = this;
setTimeout(function () {
self.hide();
@ -144,7 +143,7 @@ L.S.autoComplete = function (el, options) {
hide: function() {
this.clear();
this.container.style.display = 'none';
this.input.value = "";
this.input.value = '';
},
setChoice: function (choice) {
@ -188,11 +187,11 @@ L.S.autoComplete = function (el, options) {
display: item.display,
el: el
};
L.DomEvent.on(el, 'mouseover', function (e) {
L.DomEvent.on(el, 'mouseover', function () {
this.CURRENT = result;
this.highlight();
}, this);
L.DomEvent.on(el, 'mousedown', function (e) {
L.DomEvent.on(el, 'mousedown', function () {
this.setChoice();
}, this);
return result;
@ -212,9 +211,9 @@ L.S.autoComplete = function (el, options) {
handleResults: function(data) {
var self = this;
this.clear();
this.container.style.display = "block";
this.container.style.display = 'block';
this.resizeContainer();
this.forEach(data, function (item, index) {
this.forEach(data, function (item) {
self.RESULTS.push(self.createResult(item));
});
this.CURRENT = 0;
@ -258,29 +257,20 @@ L.S.autoComplete = function (el, options) {
Array.prototype.forEach.call(els, callback);
}
};
});
var MULTISELECT = {
init: function (el, options) {
this._init(el, options);
L.S.AutoComplete.BaseSelect = L.S.AutoComplete.extend({
initialize: function (el, options) {
L.S.AutoComplete.prototype.initialize.call(this, el, options);
if (!this.el) return this;
this.el.style.display = "none";
this.el.style.display = 'none';
this.createInput();
this.createContainer();
this.initSelectedContainer();
},
initSelectedContainer: function (initial) {
this.selected_container = L.DomUtil.after(this.input, L.DomUtil.element('ul', {className: 'umap-multiresult'}));
var self = this;
this.forEach(this.el, function (option) {
if (option.selected) {
self.displaySelected(self.optionToResult(option));
}
});
},
optionToResult: function (option) {
return {
value: option.value,
@ -288,23 +278,11 @@ L.S.autoComplete = function (el, options) {
};
},
displaySelected: function (result) {
var result_el = L.DomUtil.element('li', {}, this.selected_container);
result_el.innerHTML = result.display;
var close = L.DomUtil.element('span', {className: 'close'}, result_el);
close.innerHTML = "×";
L.DomEvent.on(close, 'click', function () {
this.selected_container.removeChild(result_el);
this.unselect(result);
}, this);
this.hide();
},
_do_search: function (val) {
var results = [],
self = this,
count = 0;
this.forEach(this.el, function (item, index) {
this.forEach(this.el, function (item) {
if (item.innerHTML.toLowerCase().indexOf(val.toLowerCase()) !== -1 && !item.selected && count < self.options.maxResults) {
results.push(self.optionToResult(item));
count++;
@ -314,7 +292,7 @@ L.S.autoComplete = function (el, options) {
},
select: function (option) {
this.forEach(this.el, function (item, index) {
this.forEach(this.el, function (item) {
if (item.value == option.value) {
item.selected = true;
}
@ -322,18 +300,72 @@ L.S.autoComplete = function (el, options) {
},
unselect: function (option) {
this.forEach(this.el, function (item, index) {
this.forEach(this.el, function (item) {
if (item.value == option.value) {
item.selected = false;
}
});
}
};
});
this.multiselect = function () {
return L.Util.extend(API, MULTISELECT).init(el, options);
};
return this;
L.S.AutoComplete.MultiSelect = L.S.AutoComplete.BaseSelect.extend({
initSelectedContainer: function () {
this.selected_container = L.DomUtil.after(this.input, L.DomUtil.element('ul', {className: 'umap-multiresult'}));
var self = this;
this.forEach(this.el, function (option) {
if (option.selected) {
self.displaySelected(self.optionToResult(option));
}
});
},
displaySelected: function (result) {
var result_el = L.DomUtil.element('li', {}, this.selected_container);
result_el.innerHTML = result.display;
var close = L.DomUtil.element('span', {className: 'close'}, result_el);
close.innerHTML = '×';
L.DomEvent.on(close, 'click', function () {
this.selected_container.removeChild(result_el);
this.unselect(result);
}, this);
this.hide();
}
});
L.S.AutoComplete.multiSelect = function (el, options) {
return new L.S.AutoComplete.MultiSelect(el, options);
};
L.S.AutoComplete.Select = L.S.AutoComplete.BaseSelect.extend({
initSelectedContainer: function () {
this.selected_container = L.DomUtil.after(this.input, L.DomUtil.element('div', {className: 'umap-singleresult'}));
var self = this;
if (this.el.selectedIndex !== -1) {
self.displaySelected(self.optionToResult(this.el[this.el.selectedIndex]));
}
},
displaySelected: function (result) {
var result_el = L.DomUtil.element('div', {}, this.selected_container);
result_el.innerHTML = result.display;
var close = L.DomUtil.element('span', {className: 'close'}, result_el);
close.innerHTML = '×';
this.input.style.display = 'none';
L.DomEvent.on(close, 'click', function () {
this.selected_container.innerHTML = '';
this.unselect(result);
this.input.style.display = 'block';
}, this);
this.hide();
}
});
L.S.AutoComplete.select = function (el, options) {
return new L.S.AutoComplete.Select(el, options);
};

View file

@ -549,6 +549,10 @@ ul.umap-autocomplete {
background-color: SeaGreen;
cursor: pointer;
}
.umap-singleresult {
margin-bottom: 10px;
}
.umap-singleresult div,
.umap-multiresult li {
width: 100%;
background-color: #e5e5e5;
@ -559,6 +563,7 @@ ul.umap-autocomplete {
.umap-multiresult li + li {
margin-top: 7px;
}
.umap-singleresult div .close,
.umap-multiresult li .close {
float: right;
cursor: pointer;

View file

@ -35,9 +35,12 @@
{% block bottom_js %}
<script type="text/javascript">
L.S.on('ui:ready', function () {
L.S.autoComplete('id_editors', {
L.S.AutoComplete.multiSelect('id_editors', {
placeholder: "{% trans 'Type editors nick to add…' %}"
}).multiselect();
});
L.S.AutoComplete.select('id_owner', {
placeholder: "{% trans 'Type new owner nick…' %}"
});
});
</script>
{% endblock %}