2013-04-27 09:05:33 -04:00
|
|
|
|
(function ($, document, window, clearTimeout, setTimeout) {
|
2013-04-26 16:53:54 -04:00
|
|
|
|
|
2013-04-27 09:05:33 -04:00
|
|
|
|
var searchHintTimeout;
|
2013-04-26 16:53:54 -04:00
|
|
|
|
|
2013-04-27 09:05:33 -04:00
|
|
|
|
function clearSearchHintTimeout() {
|
2013-04-26 16:53:54 -04:00
|
|
|
|
|
2013-04-27 09:05:33 -04:00
|
|
|
|
if (searchHintTimeout) {
|
|
|
|
|
|
|
|
|
|
clearTimeout(searchHintTimeout);
|
|
|
|
|
searchHintTimeout = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-25 01:34:50 -05:00
|
|
|
|
function getAdditionalTextLines(hint) {
|
|
|
|
|
|
|
|
|
|
if (hint.Type == "Audio") {
|
|
|
|
|
|
|
|
|
|
return [[hint.AlbumArtist, hint.Album].join(" - ")];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "MusicAlbum") {
|
|
|
|
|
|
|
|
|
|
return [hint.AlbumArtist];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "MusicArtist") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelArtist')];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "Movie") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelMovie')];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "MusicVideo") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelMusicVideo')];
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "Episode") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelEpisode')];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (hint.Type == "Series") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelSeries')];
|
|
|
|
|
}
|
2015-01-25 14:13:04 -05:00
|
|
|
|
else if (hint.Type == "BoxSet") {
|
|
|
|
|
|
|
|
|
|
return [Globalize.translate('LabelCollection')];
|
|
|
|
|
}
|
2015-08-10 13:37:50 -04:00
|
|
|
|
else if (hint.ChannelName) {
|
|
|
|
|
|
|
|
|
|
return [hint.ChannelName];
|
|
|
|
|
}
|
2015-01-25 01:34:50 -05:00
|
|
|
|
|
|
|
|
|
return [hint.Type];
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 12:12:23 -05:00
|
|
|
|
function search() {
|
|
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
2015-05-25 13:32:22 -04:00
|
|
|
|
self.showSearchPanel = function () {
|
2013-12-27 12:12:23 -05:00
|
|
|
|
|
2015-06-08 17:32:20 -04:00
|
|
|
|
showSearchMenu();
|
2013-04-26 16:53:54 -04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
window.Search = new search();
|
2013-04-28 13:21:56 -04:00
|
|
|
|
|
2015-01-21 14:21:19 -05:00
|
|
|
|
function renderSearchResultsInOverlay(elem, hints) {
|
|
|
|
|
|
|
|
|
|
// Massage the objects to look like regular items
|
|
|
|
|
hints = hints.map(function (i) {
|
|
|
|
|
|
|
|
|
|
i.Id = i.ItemId;
|
|
|
|
|
i.ImageTags = {};
|
|
|
|
|
i.UserData = {};
|
|
|
|
|
|
|
|
|
|
if (i.PrimaryImageTag) {
|
|
|
|
|
i.ImageTags.Primary = i.PrimaryImageTag;
|
|
|
|
|
}
|
|
|
|
|
return i;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var html = LibraryBrowser.getPosterViewHtml({
|
|
|
|
|
items: hints,
|
2015-06-02 01:46:06 -04:00
|
|
|
|
shape: "auto",
|
2015-01-23 01:15:15 -05:00
|
|
|
|
lazy: true,
|
2015-01-21 14:21:19 -05:00
|
|
|
|
overlayText: false,
|
2015-01-24 14:03:55 -05:00
|
|
|
|
showTitle: true,
|
2015-01-27 01:50:40 -05:00
|
|
|
|
centerImage: true,
|
2015-08-22 13:55:53 -04:00
|
|
|
|
centerText: true,
|
2015-12-30 15:25:32 -05:00
|
|
|
|
textLines: getAdditionalTextLines,
|
|
|
|
|
overlayPlayButton: true
|
2015-01-21 14:21:19 -05:00
|
|
|
|
});
|
2015-06-28 11:43:49 -04:00
|
|
|
|
|
|
|
|
|
var itemsContainer = elem.querySelector('.itemsContainer');
|
|
|
|
|
itemsContainer.innerHTML = html;
|
2015-06-29 16:38:15 -04:00
|
|
|
|
ImageLoader.lazyChildren(itemsContainer);
|
2015-01-21 14:21:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function requestSearchHintsForOverlay(elem, searchTerm) {
|
|
|
|
|
|
|
|
|
|
var currentTimeout = searchHintTimeout;
|
2015-06-17 21:41:22 -04:00
|
|
|
|
Dashboard.showLoadingMsg();
|
2015-01-21 14:21:19 -05:00
|
|
|
|
|
2015-07-19 23:43:13 -04:00
|
|
|
|
ApiClient.getSearchHints({
|
|
|
|
|
|
|
|
|
|
userId: Dashboard.getCurrentUserId(),
|
|
|
|
|
searchTerm: searchTerm,
|
|
|
|
|
limit: 30
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
}).then(function (result) {
|
2015-01-21 14:21:19 -05:00
|
|
|
|
|
2015-06-17 21:41:22 -04:00
|
|
|
|
if (currentTimeout == searchHintTimeout) {
|
|
|
|
|
renderSearchResultsInOverlay(elem, result.SearchHints);
|
2015-01-21 14:21:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-17 21:41:22 -04:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
2015-12-14 10:43:03 -05:00
|
|
|
|
}, function () {
|
2015-06-17 21:41:22 -04:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
2015-01-21 14:21:19 -05:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateSearchOverlay(elem, searchTerm) {
|
|
|
|
|
|
|
|
|
|
if (!searchTerm) {
|
|
|
|
|
|
|
|
|
|
$('.itemsContainer', elem).empty();
|
|
|
|
|
clearSearchHintTimeout();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clearSearchHintTimeout();
|
|
|
|
|
|
|
|
|
|
searchHintTimeout = setTimeout(function () {
|
|
|
|
|
|
|
|
|
|
requestSearchHintsForOverlay(elem, searchTerm);
|
|
|
|
|
|
2015-08-26 01:10:04 -04:00
|
|
|
|
}, 300);
|
2015-01-21 14:21:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getSearchOverlay(createIfNeeded) {
|
2015-01-21 01:26:16 -05:00
|
|
|
|
|
2015-06-29 16:38:15 -04:00
|
|
|
|
var elem = document.querySelector('.searchResultsOverlay');
|
2015-01-21 01:26:16 -05:00
|
|
|
|
|
2015-06-29 16:38:15 -04:00
|
|
|
|
if (createIfNeeded && !elem) {
|
2015-01-23 01:15:15 -05:00
|
|
|
|
|
2015-09-26 10:51:26 -04:00
|
|
|
|
var html = '<div class="searchResultsOverlay ui-body-b smoothScrollY background-theme-b">';
|
2015-01-23 01:15:15 -05:00
|
|
|
|
|
|
|
|
|
html += '<div class="searchResultsContainer"><div class="itemsContainer"></div></div></div>';
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
elem = $(html).appendTo(document.body)[0];
|
2015-06-29 16:38:15 -04:00
|
|
|
|
$(elem).createCardMenus();
|
2015-01-21 01:26:16 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return elem;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
var isVisible;
|
|
|
|
|
|
2015-01-21 01:26:16 -05:00
|
|
|
|
function onHeaderSearchChange(val) {
|
|
|
|
|
|
2015-06-29 16:38:15 -04:00
|
|
|
|
var elem;
|
|
|
|
|
|
2015-01-21 01:26:16 -05:00
|
|
|
|
if (val) {
|
2015-06-29 16:38:15 -04:00
|
|
|
|
|
|
|
|
|
elem = getSearchOverlay(true);
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
if (!isVisible) {
|
|
|
|
|
fadeIn(elem, 1);
|
|
|
|
|
}
|
|
|
|
|
isVisible = true;
|
|
|
|
|
|
2015-06-28 10:45:21 -04:00
|
|
|
|
document.body.classList.add('bodyWithPopupOpen');
|
2015-01-21 01:26:16 -05:00
|
|
|
|
|
2015-06-29 16:38:15 -04:00
|
|
|
|
updateSearchOverlay(elem, val);
|
|
|
|
|
|
2015-01-21 01:26:16 -05:00
|
|
|
|
} else {
|
2015-06-29 16:38:15 -04:00
|
|
|
|
elem = getSearchOverlay(false);
|
|
|
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
|
updateSearchOverlay(elem, '');
|
2015-12-14 10:43:03 -05:00
|
|
|
|
|
|
|
|
|
if (isVisible) {
|
|
|
|
|
fadeOut(elem, 1);
|
|
|
|
|
isVisible = false;
|
|
|
|
|
}
|
|
|
|
|
document.body.classList.remove('bodyWithPopupOpen');
|
2015-06-29 16:38:15 -04:00
|
|
|
|
}
|
2015-01-21 01:26:16 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
function fadeIn(elem, iterations) {
|
|
|
|
|
|
|
|
|
|
var keyframes = [
|
|
|
|
|
{ opacity: '0', offset: 0 },
|
|
|
|
|
{ opacity: '1', offset: 1 }];
|
|
|
|
|
var timing = { duration: 200, iterations: iterations, fill: 'both' };
|
|
|
|
|
elem.animate(keyframes, timing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function fadeOut(elem, iterations) {
|
|
|
|
|
var keyframes = [
|
|
|
|
|
{ opacity: '1', offset: 0 },
|
|
|
|
|
{ opacity: '0', offset: 1 }];
|
|
|
|
|
var timing = { duration: 600, iterations: iterations, fill: 'both' };
|
|
|
|
|
elem.animate(keyframes, timing).onfinish = function () {
|
|
|
|
|
elem.parentNode.removeChild(elem);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-21 14:21:19 -05:00
|
|
|
|
function bindSearchEvents() {
|
2013-04-27 10:00:22 -04:00
|
|
|
|
|
2015-07-10 10:25:18 -04:00
|
|
|
|
require(['searchmenu'], function () {
|
|
|
|
|
Events.on(SearchMenu, 'closed', closeSearchResults);
|
|
|
|
|
Events.on(SearchMenu, 'change', function (e, value) {
|
2013-04-27 10:00:22 -04:00
|
|
|
|
|
2015-07-10 10:25:18 -04:00
|
|
|
|
onHeaderSearchChange(value);
|
|
|
|
|
});
|
2015-02-14 14:36:40 -05:00
|
|
|
|
});
|
2015-01-24 14:03:55 -05:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-10 10:25:18 -04:00
|
|
|
|
function closeSearchResults() {
|
|
|
|
|
|
2015-01-24 14:03:55 -05:00
|
|
|
|
onHeaderSearchChange('');
|
2015-06-08 17:32:20 -04:00
|
|
|
|
hideSearchMenu();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showSearchMenu() {
|
2015-07-10 10:25:18 -04:00
|
|
|
|
require(['searchmenu'], function () {
|
|
|
|
|
SearchMenu.show();
|
2015-06-08 17:32:20 -04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function hideSearchMenu() {
|
2015-07-10 10:25:18 -04:00
|
|
|
|
require(['searchmenu'], function () {
|
|
|
|
|
SearchMenu.hide();
|
|
|
|
|
});
|
2015-01-21 14:21:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
document.addEventListener('pagebeforehide', closeSearchResults);
|
2015-01-21 14:21:19 -05:00
|
|
|
|
|
2015-12-14 10:43:03 -05:00
|
|
|
|
document.addEventListener('headercreated', function () {
|
2015-01-21 01:26:16 -05:00
|
|
|
|
|
2015-01-21 14:21:19 -05:00
|
|
|
|
bindSearchEvents();
|
2015-01-21 01:26:16 -05:00
|
|
|
|
});
|
2013-04-26 16:53:54 -04:00
|
|
|
|
|
2013-04-27 09:05:33 -04:00
|
|
|
|
})(jQuery, document, window, clearTimeout, setTimeout);
|