mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
124 lines
3.4 KiB
JavaScript
124 lines
3.4 KiB
JavaScript
define(['layoutManager', 'globalize', 'require', 'events', 'browser', 'alphaPicker', 'emby-input', 'flexStyles', 'material-icons', 'css!./searchfields'], function (layoutManager, globalize, require, events, browser, AlphaPicker) {
|
|
'use strict';
|
|
|
|
function onSearchTimeout() {
|
|
|
|
var instance = this;
|
|
var value = instance.nextSearchValue;
|
|
|
|
value = (value || '').trim();
|
|
events.trigger(instance, 'search', [value]);
|
|
}
|
|
|
|
function triggerSearch(instance, value) {
|
|
|
|
if (instance.searchTimeout) {
|
|
clearTimeout(instance.searchTimeout);
|
|
}
|
|
|
|
instance.nextSearchValue = value;
|
|
instance.searchTimeout = setTimeout(onSearchTimeout.bind(instance), 400);
|
|
}
|
|
|
|
function onAlphaValueClicked(e) {
|
|
|
|
var value = e.detail.value;
|
|
var searchFieldsInstance = this;
|
|
|
|
var txtSearch = searchFieldsInstance.options.element.querySelector('.searchfields-txtSearch');
|
|
|
|
if (value === 'backspace') {
|
|
|
|
var val = txtSearch.value;
|
|
txtSearch.value = val.length ? val.substring(0, val.length - 1) : '';
|
|
|
|
} else {
|
|
txtSearch.value += value;
|
|
}
|
|
|
|
txtSearch.dispatchEvent(new CustomEvent('input', {
|
|
bubbles: true
|
|
}));
|
|
}
|
|
|
|
function initAlphaPicker(alphaPickerElement, instance) {
|
|
|
|
instance.alphaPicker = new AlphaPicker({
|
|
element: alphaPickerElement,
|
|
mode: 'keyboard'
|
|
});
|
|
|
|
alphaPickerElement.addEventListener('alphavalueclicked', onAlphaValueClicked.bind(instance));
|
|
}
|
|
|
|
function onSearchInput(e) {
|
|
|
|
var value = e.target.value;
|
|
var searchFieldsInstance = this;
|
|
triggerSearch(searchFieldsInstance, value);
|
|
}
|
|
|
|
function embed(elem, instance, options) {
|
|
|
|
require(['text!./searchfields.template.html'], function (template) {
|
|
|
|
var html = globalize.translateDocument(template, 'core');
|
|
|
|
if (browser.tizen || browser.orsay) {
|
|
html = html.replace('<input ', '<input readonly ');
|
|
}
|
|
|
|
elem.innerHTML = html;
|
|
|
|
elem.classList.add('searchFields');
|
|
|
|
var txtSearch = elem.querySelector('.searchfields-txtSearch');
|
|
|
|
if (layoutManager.tv) {
|
|
var alphaPickerElement = elem.querySelector('.alphaPicker');
|
|
|
|
elem.querySelector('.alphaPicker').classList.remove('hide');
|
|
initAlphaPicker(alphaPickerElement, instance);
|
|
}
|
|
|
|
txtSearch.addEventListener('input', onSearchInput.bind(instance));
|
|
|
|
instance.focus();
|
|
});
|
|
}
|
|
|
|
function SearchFields(options) {
|
|
|
|
this.options = options;
|
|
embed(options.element, this, options);
|
|
}
|
|
|
|
SearchFields.prototype.focus = function () {
|
|
|
|
this.options.element.querySelector('.searchfields-txtSearch').focus();
|
|
};
|
|
|
|
SearchFields.prototype.destroy = function () {
|
|
|
|
var options = this.options;
|
|
if (options) {
|
|
options.element.classList.remove('searchFields');
|
|
}
|
|
this.options = null;
|
|
|
|
var alphaPicker = this.alphaPicker;
|
|
if (alphaPicker) {
|
|
alphaPicker.destroy();
|
|
}
|
|
this.alphaPicker = null;
|
|
|
|
var searchTimeout = this.searchTimeout;
|
|
if (searchTimeout) {
|
|
clearTimeout(searchTimeout);
|
|
}
|
|
this.searchTimeout = null;
|
|
this.nextSearchValue = null;
|
|
};
|
|
|
|
return SearchFields;
|
|
});
|