mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
98 lines
2.5 KiB
JavaScript
98 lines
2.5 KiB
JavaScript
(function (window, document, $) {
|
|
|
|
function getPickerHtml() {
|
|
|
|
var html = '';
|
|
|
|
html += '<a href="#">#</a>';
|
|
html += '<a href="#">A</a>';
|
|
html += '<a href="#">B</a>';
|
|
html += '<a href="#">C</a>';
|
|
html += '<a href="#">D</a>';
|
|
html += '<a href="#">E</a>';
|
|
html += '<a href="#">F</a>';
|
|
html += '<a href="#">G</a>';
|
|
html += '<a href="#">H</a>';
|
|
html += '<a href="#">I</a>';
|
|
html += '<a href="#">J</a>';
|
|
html += '<a href="#">K</a>';
|
|
html += '<a href="#">L</a>';
|
|
html += '<a href="#">M</a>';
|
|
html += '<a href="#">N</a>';
|
|
html += '<a href="#">O</a>';
|
|
html += '<a href="#">P</a>';
|
|
html += '<a href="#">Q</a>';
|
|
html += '<a href="#">R</a>';
|
|
html += '<a href="#">S</a>';
|
|
html += '<a href="#">T</a>';
|
|
html += '<a href="#">U</a>';
|
|
html += '<a href="#">V</a>';
|
|
html += '<a href="#">W</a>';
|
|
html += '<a href="#">X</a>';
|
|
html += '<a href="#">Y</a>';
|
|
html += '<a href="#">Z</a>';
|
|
|
|
return html;
|
|
}
|
|
|
|
$(document).on('pageinitdepends', ".libraryPage", function () {
|
|
|
|
var page = this;
|
|
|
|
var picker = $('.alphabetPicker', page);
|
|
|
|
if (!picker.length) {
|
|
return;
|
|
}
|
|
|
|
$('.itemsContainer', page).addClass('itemsContainerWithAlphaPicker');
|
|
|
|
picker.html(getPickerHtml()).trigger('create').on('click', 'a', function () {
|
|
|
|
var elem = $(this);
|
|
|
|
var isSelected = elem.hasClass('selectedCharacter');
|
|
|
|
$('.selectedCharacter', picker).removeClass('selectedCharacter');
|
|
|
|
if (!isSelected) {
|
|
|
|
elem.addClass('selectedCharacter');
|
|
picker.trigger('alphaselect', [this.innerHTML]);
|
|
} else {
|
|
picker.trigger('alphaclear');
|
|
}
|
|
});
|
|
});
|
|
|
|
$.fn.alphaValue = function (val) {
|
|
|
|
if (val == null) {
|
|
return $('.selectedCharacter', this).html();
|
|
}
|
|
|
|
val = val.toLowerCase();
|
|
|
|
$('.selectedCharacter', this).removeClass('selectedCharacter');
|
|
|
|
$('a', this).each(function () {
|
|
|
|
if (this.innerHTML.toLowerCase() == val) {
|
|
|
|
$(this).addClass('selectedCharacter');
|
|
|
|
} else {
|
|
$(this).removeClass('selectedCharacter');
|
|
}
|
|
|
|
});
|
|
|
|
return this;
|
|
};
|
|
|
|
$.fn.alphaClear = function (val) {
|
|
|
|
return this.alphaValue('');
|
|
};
|
|
|
|
})(window, document, jQuery); |