2015-04-19 08:54:20 -07:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
|
|
|
|
var view = LibraryBrowser.getDefaultItemsView('Poster', 'Poster');
|
|
|
|
|
|
|
|
|
|
// The base query options
|
|
|
|
|
var query = {
|
|
|
|
|
|
|
|
|
|
SortBy: "SortName",
|
|
|
|
|
SortOrder: "Ascending",
|
|
|
|
|
Fields: "PrimaryImageAspectRatio,SortName,SyncInfo",
|
|
|
|
|
StartIndex: 0,
|
|
|
|
|
ImageTypeLimit: 1,
|
|
|
|
|
EnableImageTypes: "Primary"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function getSavedQueryKey() {
|
|
|
|
|
|
|
|
|
|
return 'photos' + (query.ParentId || '');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reloadItems(page) {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
|
|
|
|
|
|
|
|
|
|
// Scroll back up so they can see the results from the beginning
|
|
|
|
|
$(document).scrollTop(0);
|
|
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
var pagingHtml = LibraryBrowser.getQueryPagingHtml({
|
|
|
|
|
startIndex: query.StartIndex,
|
|
|
|
|
limit: query.Limit,
|
|
|
|
|
totalRecordCount: result.TotalRecordCount,
|
|
|
|
|
viewButton: false,
|
|
|
|
|
showLimit: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.listTopPaging', page).html(pagingHtml).trigger('create');
|
|
|
|
|
|
|
|
|
|
updateFilterControls(page);
|
|
|
|
|
|
2015-04-22 06:28:45 -07:00
|
|
|
|
var defaultAction = query.MediaTypes == 'Photo' ? 'photoslideshow' : null;
|
|
|
|
|
|
2015-04-19 08:54:20 -07:00
|
|
|
|
// Poster
|
|
|
|
|
html = LibraryBrowser.getPosterViewHtml({
|
|
|
|
|
items: result.Items,
|
|
|
|
|
shape: "auto",
|
|
|
|
|
context: getParameterByName('context') || 'photos',
|
|
|
|
|
showTitle: false,
|
|
|
|
|
centerText: true,
|
2015-04-22 06:28:45 -07:00
|
|
|
|
lazy: true,
|
|
|
|
|
defaultAction: defaultAction
|
2015-04-19 08:54:20 -07:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var elem = $('#items', page).html(html).lazyChildren();
|
|
|
|
|
|
|
|
|
|
$(pagingHtml).appendTo(elem).trigger('create');
|
|
|
|
|
|
|
|
|
|
$('.btnNextPage', page).on('click', function () {
|
|
|
|
|
query.StartIndex += query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.btnPreviousPage', page).on('click', function () {
|
|
|
|
|
query.StartIndex -= query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
LibraryBrowser.saveQueryValues(getSavedQueryKey(), query);
|
|
|
|
|
|
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateFilterControls(page) {
|
|
|
|
|
|
|
|
|
|
// Reset form values using the last used query
|
|
|
|
|
$('.radioSortBy', page).each(function () {
|
|
|
|
|
|
|
|
|
|
this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('.radioSortOrder', page).each(function () {
|
|
|
|
|
|
|
|
|
|
this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('.chkStandardFilter', page).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.Filters || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var filtersLoaded;
|
|
|
|
|
function reloadFiltersIfNeeded(page) {
|
|
|
|
|
|
|
|
|
|
if (!filtersLoaded) {
|
|
|
|
|
|
|
|
|
|
filtersLoaded = true;
|
|
|
|
|
|
|
|
|
|
QueryFilters.loadFilters(page, Dashboard.getCurrentUserId(), query, function () {
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setQueryPerContext(page) {
|
|
|
|
|
|
|
|
|
|
var context = getParameterByName('context');
|
|
|
|
|
|
|
|
|
|
$('.libraryViewNav a', page).removeClass('ui-btn-active');
|
|
|
|
|
|
|
|
|
|
if (context == 'photos-photos') {
|
|
|
|
|
query.Recursive = true;
|
|
|
|
|
query.MediaTypes = 'Photo';
|
|
|
|
|
$('.lnkPhotos', page).addClass('ui-btn-active');
|
|
|
|
|
}
|
|
|
|
|
else if (context == 'photos-videos') {
|
|
|
|
|
query.Recursive = true;
|
|
|
|
|
query.MediaTypes = 'Video';
|
|
|
|
|
$('.lnkVideos', page).addClass('ui-btn-active');
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
query.Recursive = false;
|
|
|
|
|
query.MediaTypes = null;
|
|
|
|
|
$('.lnkPhotoAlbums', page).addClass('ui-btn-active');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.ParentId = getParameterByName('parentId') || LibraryMenu.getTopParentId();
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-22 06:28:45 -07:00
|
|
|
|
function startSlideshow(page, index) {
|
|
|
|
|
|
|
|
|
|
index += (query.StartIndex || 0);
|
|
|
|
|
|
|
|
|
|
var userId = Dashboard.getCurrentUserId();
|
|
|
|
|
|
|
|
|
|
var localQuery = $.extend({}, query);
|
|
|
|
|
localQuery.StartIndex = 0;
|
|
|
|
|
localQuery.Limit = null;
|
|
|
|
|
localQuery.MediaTypes = "Photo";
|
|
|
|
|
localQuery.Recursive = true;
|
|
|
|
|
localQuery.Filters = "IsNotFolder";
|
|
|
|
|
|
|
|
|
|
ApiClient.getItems(userId, localQuery).done(function (result) {
|
|
|
|
|
|
|
|
|
|
showSlideshow(page, result.Items, index);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showSlideshow(page, items, index) {
|
|
|
|
|
|
|
|
|
|
var slideshowItems = items.map(function (item) {
|
|
|
|
|
|
|
|
|
|
var imgUrl = ApiClient.getScaledImageUrl(item.Id, {
|
|
|
|
|
|
|
|
|
|
tag: item.ImageTags.Primary,
|
|
|
|
|
type: 'Primary'
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
title: item.Name,
|
|
|
|
|
href: imgUrl
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
index = Math.max(index || 0, 0);
|
|
|
|
|
|
2015-05-08 20:48:43 -07:00
|
|
|
|
Dashboard.loadSwipebox().done(function() {
|
|
|
|
|
|
|
|
|
|
$.swipebox(slideshowItems, {
|
|
|
|
|
initialIndexOnArray: index,
|
|
|
|
|
hideBarsDelay: 30000
|
|
|
|
|
});
|
2015-04-22 06:28:45 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-19 08:54:20 -07:00
|
|
|
|
$(document).on('pageinit', "#photosPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
$('.viewPanel', page).on('panelopen', function () {
|
|
|
|
|
|
|
|
|
|
reloadFiltersIfNeeded(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.radioSortBy', this).on('click', function () {
|
|
|
|
|
query.SortBy = this.getAttribute('data-sortby');
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.radioSortOrder', this).on('click', function () {
|
|
|
|
|
query.SortOrder = this.getAttribute('data-sortorder');
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.chkStandardFilter', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.Filters || "";
|
|
|
|
|
|
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.Filters = filters;
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#radioBasicFilters', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.basicFilters', page).show();
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#radioAdvancedFilters', this).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.advancedFilters', page).show();
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#selectPageSize', page).on('change', function () {
|
|
|
|
|
query.Limit = parseInt(this.value);
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2015-04-22 06:28:45 -07:00
|
|
|
|
$('.itemsContainer', page).on('photoslideshow', function (e, index) {
|
|
|
|
|
startSlideshow(page, index);
|
|
|
|
|
});
|
|
|
|
|
|
2015-04-19 08:54:20 -07:00
|
|
|
|
}).on('pagebeforeshow', "#photosPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
setQueryPerContext(page);
|
|
|
|
|
|
|
|
|
|
var limit = LibraryBrowser.getDefaultPageSize();
|
|
|
|
|
|
|
|
|
|
// If the default page size has changed, the start index will have to be reset
|
|
|
|
|
if (limit != query.Limit) {
|
|
|
|
|
query.Limit = limit;
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var viewKey = getSavedQueryKey();
|
|
|
|
|
|
|
|
|
|
LibraryBrowser.loadSavedQueryValues(viewKey, query);
|
|
|
|
|
QueryFilters.onPageShow(page, query);
|
|
|
|
|
|
|
|
|
|
LibraryBrowser.getSavedViewSetting(viewKey).done(function (val) {
|
|
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
$('#selectView', page).val(val).selectmenu('refresh').trigger('change');
|
|
|
|
|
} else {
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}).on('pageshow', "#photosPage", function () {
|
|
|
|
|
|
|
|
|
|
updateFilterControls(this);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})(jQuery, document);
|