(function ($, document) { // The base query options var query = { SortBy: "SortName", SortOrder: "Ascending", IncludeItemTypes: "BoxSet", Recursive: true, Fields: "PrimaryImageAspectRatio", StartIndex: 0 }; function getSavedQueryKey() { return 'collections' + (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 = ''; $('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create'); updateFilterControls(page); if (result.TotalRecordCount) { html = LibraryBrowser.getPosterViewHtml({ items: result.Items, shape: "portrait", context: 'movies', showTitle: true, centerText: true, lazy: true }); html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount); $('.noItemsMessage', page).hide(); } else { $('.noItemsMessage', page).show(); } $('#items', page).html(html).trigger('create').createPosterItemMenus(); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; reloadItems(page); }); $('.btnPreviousPage', page).on('click', function () { query.StartIndex -= query.Limit; reloadItems(page); }); $('.selectPageSize', page).on('change', function () { query.Limit = parseInt(this.value); query.StartIndex = 0; 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'); $('#chkTrailer', page).checked(query.HasTrailer == true).checkboxradio('refresh'); $('#chkThemeSong', page).checked(query.HasThemeSong == true).checkboxradio('refresh'); $('#chkThemeVideo', page).checked(query.HasThemeVideo == true).checkboxradio('refresh'); $('.alphabetPicker', page).alphaValue(query.NameStartsWithOrGreater); } $(document).on('pageinit', "#boxsetsPage", function () { var page = this; $('.radioSortBy', this).on('click', function () { query.SortBy = this.getAttribute('data-sortby'); reloadItems(page); }); $('.radioSortOrder', this).on('click', function () { query.SortOrder = this.getAttribute('data-sortorder'); 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.StartIndex = 0; query.Filters = filters; reloadItems(page); }); $('#chkTrailer', this).on('change', function () { query.StartIndex = 0; query.HasTrailer = this.checked ? true : null; reloadItems(page); }); $('#chkThemeSong', this).on('change', function () { query.StartIndex = 0; query.HasThemeSong = this.checked ? true : null; reloadItems(page); }); $('#chkThemeVideo', this).on('change', function () { query.StartIndex = 0; query.HasThemeVideo = this.checked ? true : null; reloadItems(page); }); $('.alphabetPicker', this).on('alphaselect', function (e, character) { query.NameStartsWithOrGreater = character; query.StartIndex = 0; reloadItems(page); }).on('alphaclear', function (e) { query.NameStartsWithOrGreater = ''; reloadItems(page); }); }).on('pagebeforeshow', "#boxsetsPage", function () { query.ParentId = LibraryMenu.getTopParentId(); 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; } LibraryBrowser.loadSavedQueryValues(getSavedQueryKey(), query); reloadItems(this); }).on('pageshow', "#boxsetsPage", function () { updateFilterControls(this); }); })(jQuery, document); (function ($, document) { function showNewCollectionPanel(page, items) { $('.fldSelectedItemIds', page).val(items.join(',')); var panel = $('.newCollectionPanel', page).panel('toggle'); populateCollections(panel); } function populateCollections(panel) { var select = $('#selectCollectionToAddTo', panel); if (!select.length) { $('#txtNewCollectionName', panel).val('').focus(); return; } $('.newCollectionInfo', panel).hide(); var options = { Recursive: true, IncludeItemTypes: "BoxSet" }; ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) { var html = ''; html += ''; html += result.Items.map(function (i) { return ''; }); select.html(html).val('').selectmenu('refresh').trigger('change'); }); } $(document).on('pageinit', ".collectionEditorPage", function () { var page = this; $('.btnNewCollection', page).on('click', function () { showNewCollectionPanel(page, []); }); $('#selectCollectionToAddTo', page).on('change', function () { if (this.value) { $('.newCollectionInfo', page).hide(); $('#txtNewCollectionName', page).removeAttr('required'); } else { $('.newCollectionInfo', page).show(); $('#txtNewCollectionName', page).attr('required', 'required'); } }); }).on('pagebeforeshow', ".collectionEditorPage", function () { var page = this; Dashboard.getCurrentUser().done(function (user) { if (user.Configuration.IsAdministrator) { $('.btnNewCollection', page).removeClass('hide'); } else { $('.btnNewCollection', page).addClass('hide'); } }); }); function createCollection(page) { var url = ApiClient.getUrl("Collections", { Name: $('#txtNewCollectionName', page).val(), IsLocked: !$('#chkEnableInternetMetadata', page).checked(), Ids: $('.fldSelectedItemIds', page).val() || '' //ParentId: getParameterByName('parentId') || LibraryMenu.getTopParentId() }); $.ajax({ type: "POST", url: url, dataType: "json" }).done(function (result) { Dashboard.hideLoadingMsg(); var id = result.Id; var destination = 'itemdetails.html?id=' + id; var context = getParameterByName('context'); if (context) { destination += "&context=" + context; } $('.newCollectionPanel', page).panel('toggle'); Dashboard.navigate(destination); }); } function addToCollection(page, id) { var url = ApiClient.getUrl("Collections/" + id + "/Items", { Ids: $('.fldSelectedItemIds', page).val() || '' }); $.ajax({ type: "POST", url: url }).done(function () { Dashboard.hideLoadingMsg(); var destination = 'itemdetails.html?id=' + id; var context = getParameterByName('context'); if (context) { destination += "&context=" + context; } $('.newCollectionPanel', page).panel('toggle'); Dashboard.navigate(destination); }); } window.BoxSetEditor = { showPanel: function (page, items) { showNewCollectionPanel(page, items); }, onNewCollectionSubmit: function () { Dashboard.showLoadingMsg(); var page = $(this).parents('.page'); var collectionId = $('#selectCollectionToAddTo', page).val(); if (collectionId) { addToCollection(page, collectionId); } else { createCollection(page); } return false; } }; })(jQuery, document);