2014-10-15 20:26:39 -07:00
|
|
|
|
(function ($, document) {
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2015-06-07 14:21:30 -07:00
|
|
|
|
var defaultFirstSection = 'smalllibrarytiles';
|
2015-04-14 20:41:29 -07:00
|
|
|
|
|
2014-06-23 09:05:19 -07:00
|
|
|
|
function getDefaultSection(index) {
|
|
|
|
|
|
|
|
|
|
switch (index) {
|
|
|
|
|
|
|
|
|
|
case 0:
|
2015-04-14 20:41:29 -07:00
|
|
|
|
return defaultFirstSection;
|
2014-06-23 09:05:19 -07:00
|
|
|
|
case 1:
|
|
|
|
|
return 'resume';
|
|
|
|
|
case 2:
|
2014-07-11 19:31:08 -07:00
|
|
|
|
return 'latestmedia';
|
2014-06-23 09:05:19 -07:00
|
|
|
|
case 3:
|
2015-06-25 18:10:56 -07:00
|
|
|
|
return 'latesttvrecordings';
|
2014-06-23 09:05:19 -07:00
|
|
|
|
default:
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-24 18:14:24 -07:00
|
|
|
|
function loadSection(page, user, displayPreferences, index) {
|
|
|
|
|
|
|
|
|
|
var userId = user.Id;
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
|
|
|
|
var section = displayPreferences.CustomPrefs['home' + index] || getDefaultSection(index);
|
|
|
|
|
|
2015-04-11 14:34:05 -07:00
|
|
|
|
if (section == 'folders') {
|
2015-04-14 20:41:29 -07:00
|
|
|
|
section = defaultFirstSection;
|
2015-04-11 14:34:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-14 18:58:06 -07:00
|
|
|
|
var showLibraryTileNames = displayPreferences.CustomPrefs.enableLibraryTileNames != '0';
|
|
|
|
|
|
2015-06-28 07:45:21 -07:00
|
|
|
|
var elem = page.querySelector('.section' + index);
|
2014-06-19 21:50:30 -07:00
|
|
|
|
|
2014-05-21 12:33:46 -07:00
|
|
|
|
if (section == 'latestmedia') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadRecentlyAdded(elem, user);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
|
|
|
|
else if (section == 'librarytiles') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLibraryTiles(elem, user, 'backdrop', index, false, showLibraryTileNames);
|
2014-06-07 12:46:24 -07:00
|
|
|
|
}
|
2014-06-24 14:45:21 -07:00
|
|
|
|
else if (section == 'smalllibrarytiles') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLibraryTiles(elem, user, 'homePageSmallBackdrop', index, false, showLibraryTileNames);
|
2014-07-11 19:31:08 -07:00
|
|
|
|
}
|
|
|
|
|
else if (section == 'smalllibrarytiles-automobile') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLibraryTiles(elem, user, 'homePageSmallBackdrop', index, true, showLibraryTileNames);
|
2015-03-13 21:50:23 -07:00
|
|
|
|
}
|
|
|
|
|
else if (section == 'librarytiles-automobile') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLibraryTiles(elem, user, 'backdrop', index, true, showLibraryTileNames);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
2014-06-24 14:45:21 -07:00
|
|
|
|
else if (section == 'librarybuttons') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadlibraryButtons(elem, userId, index);
|
2014-06-24 14:45:21 -07:00
|
|
|
|
}
|
2014-05-21 12:33:46 -07:00
|
|
|
|
else if (section == 'resume') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadResume(elem, userId);
|
2014-06-23 09:05:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (section == 'latesttvrecordings') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLatestLiveTvRecordings(elem, userId);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
2015-04-11 14:34:05 -07:00
|
|
|
|
else if (section == 'latestchannelmedia') {
|
2015-04-12 09:46:29 -07:00
|
|
|
|
return Sections.loadLatestChannelMedia(elem, userId);
|
2014-06-15 16:30:04 -07:00
|
|
|
|
|
2014-05-21 20:35:18 -07:00
|
|
|
|
} else {
|
2014-05-23 18:16:53 -07:00
|
|
|
|
|
2014-05-21 20:35:18 -07:00
|
|
|
|
elem.empty();
|
2015-04-12 09:46:29 -07:00
|
|
|
|
|
|
|
|
|
var deferred = DeferredBuilder.Deferred();
|
|
|
|
|
deferred.resolve();
|
|
|
|
|
return deferred.promise();
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-24 18:14:24 -07:00
|
|
|
|
function loadSections(page, user, displayPreferences) {
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
|
|
|
|
var i, length;
|
2014-06-15 16:30:04 -07:00
|
|
|
|
var sectionCount = 4;
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-06-28 07:45:21 -07:00
|
|
|
|
var elem = page.querySelector('.sections');
|
2014-05-23 18:16:53 -07:00
|
|
|
|
|
2015-06-28 07:45:21 -07:00
|
|
|
|
if (!elem.innerHTML.length) {
|
2014-05-21 20:35:18 -07:00
|
|
|
|
var html = '';
|
|
|
|
|
for (i = 0, length = sectionCount; i < length; i++) {
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2014-05-21 20:35:18 -07:00
|
|
|
|
html += '<div class="homePageSection section' + i + '"></div>';
|
|
|
|
|
}
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-06-28 07:45:21 -07:00
|
|
|
|
elem.innerHTML = html;
|
2014-05-21 20:35:18 -07:00
|
|
|
|
}
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-04-12 09:46:29 -07:00
|
|
|
|
var promises = [];
|
|
|
|
|
|
2014-05-21 12:33:46 -07:00
|
|
|
|
for (i = 0, length = sectionCount; i < length; i++) {
|
|
|
|
|
|
2015-04-12 09:46:29 -07:00
|
|
|
|
promises.push(loadSection(page, user, displayPreferences, i));
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
2015-04-12 09:46:29 -07:00
|
|
|
|
|
|
|
|
|
return $.when(promises);
|
2014-05-21 12:33:46 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 11:04:02 -07:00
|
|
|
|
var homePageDismissValue = '14';
|
2014-09-25 20:47:46 -07:00
|
|
|
|
var homePageTourKey = 'homePageTour';
|
2014-06-07 12:46:24 -07:00
|
|
|
|
|
2014-05-30 14:06:57 -07:00
|
|
|
|
function dismissWelcome(page, userId) {
|
|
|
|
|
|
2015-05-12 21:55:19 -07:00
|
|
|
|
getDisplayPreferences('home', userId).done(function (result) {
|
2014-05-30 14:06:57 -07:00
|
|
|
|
|
2014-09-25 20:47:46 -07:00
|
|
|
|
result.CustomPrefs[homePageTourKey] = homePageDismissValue;
|
2015-05-12 21:55:19 -07:00
|
|
|
|
ApiClient.updateDisplayPreferences('home', result, userId, getDisplayPreferencesAppName());
|
2014-09-25 20:47:46 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
2014-06-07 12:46:24 -07:00
|
|
|
|
|
2015-01-11 11:36:26 -07:00
|
|
|
|
function showWelcomeIfNeeded(page, displayPreferences) {
|
|
|
|
|
|
|
|
|
|
if (displayPreferences.CustomPrefs[homePageTourKey] == homePageDismissValue) {
|
|
|
|
|
$('.welcomeMessage', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
|
2015-06-29 11:45:42 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
|
2015-01-11 11:36:26 -07:00
|
|
|
|
var elem = $('.welcomeMessage', page).show();
|
|
|
|
|
|
|
|
|
|
if (displayPreferences.CustomPrefs[homePageTourKey]) {
|
|
|
|
|
|
|
|
|
|
$('.tourHeader', elem).html(Globalize.translate('HeaderWelcomeBack'));
|
|
|
|
|
$('.tourButtonText', elem).html(Globalize.translate('ButtonTakeTheTourToSeeWhatsNew'));
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
2015-03-21 11:12:12 -07:00
|
|
|
|
$('.tourHeader', elem).html(Globalize.translate('HeaderWelcomeToProjectWebClient'));
|
2015-01-11 11:36:26 -07:00
|
|
|
|
$('.tourButtonText', elem).html(Globalize.translate('ButtonTakeTheTour'));
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-04 11:05:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-25 20:47:46 -07:00
|
|
|
|
function takeTour(page, userId) {
|
|
|
|
|
|
2015-05-08 20:48:43 -07:00
|
|
|
|
Dashboard.loadSwipebox().done(function () {
|
|
|
|
|
|
|
|
|
|
$.swipebox([
|
|
|
|
|
{ href: 'css/images/tour/web/tourcontent.jpg', title: Globalize.translate('WebClientTourContent') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourmovies.jpg', title: Globalize.translate('WebClientTourMovies') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourmouseover.jpg', title: Globalize.translate('WebClientTourMouseOver') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourtaphold.jpg', title: Globalize.translate('WebClientTourTapHold') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourmysync.png', title: Globalize.translate('WebClientTourMySync') },
|
|
|
|
|
{ href: 'css/images/tour/web/toureditor.png', title: Globalize.translate('WebClientTourMetadataManager') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourplaylist.png', title: Globalize.translate('WebClientTourPlaylists') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourcollections.jpg', title: Globalize.translate('WebClientTourCollections') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourusersettings1.png', title: Globalize.translate('WebClientTourUserPreferences1') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourusersettings2.png', title: Globalize.translate('WebClientTourUserPreferences2') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourusersettings3.png', title: Globalize.translate('WebClientTourUserPreferences3') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourusersettings4.png', title: Globalize.translate('WebClientTourUserPreferences4') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourmobile1.jpg', title: Globalize.translate('WebClientTourMobile1') },
|
|
|
|
|
{ href: 'css/images/tour/web/tourmobile2.png', title: Globalize.translate('WebClientTourMobile2') },
|
|
|
|
|
{ href: 'css/images/tour/enjoy.jpg', title: Globalize.translate('MessageEnjoyYourStay') }
|
|
|
|
|
], {
|
|
|
|
|
afterClose: function () {
|
|
|
|
|
dismissWelcome(page, userId);
|
|
|
|
|
$('.welcomeMessage', page).hide();
|
|
|
|
|
},
|
|
|
|
|
hideBarsDelay: 30000
|
|
|
|
|
});
|
2014-05-30 14:06:57 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
$(document).on('pageinitdepends', "#indexPage", function () {
|
2014-05-30 14:06:57 -07:00
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
2015-06-28 07:45:21 -07:00
|
|
|
|
Events.on(page.querySelector('.btnTakeTour'), 'click', function () {
|
2015-05-19 12:15:40 -07:00
|
|
|
|
takeTour(page, Dashboard.getCurrentUserId());
|
2014-05-30 14:06:57 -07:00
|
|
|
|
});
|
|
|
|
|
|
2015-06-18 21:23:55 -07:00
|
|
|
|
}).on('pagebeforeshowready', "#indexPage", function () {
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-06-28 19:05:46 -07:00
|
|
|
|
var args = arguments;
|
2014-05-21 12:33:46 -07:00
|
|
|
|
var page = this;
|
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
if (window.ApiClient) {
|
|
|
|
|
var userId = Dashboard.getCurrentUserId();
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-06-29 11:45:42 -07:00
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
getDisplayPreferences('home', userId).done(function (result) {
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
Dashboard.getCurrentUser().done(function (user) {
|
2015-03-24 18:14:24 -07:00
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
loadSections(page, user, result).done(function () {
|
2015-06-07 14:21:30 -07:00
|
|
|
|
|
|
|
|
|
if (!AppInfo.isNativeApp) {
|
|
|
|
|
showWelcomeIfNeeded(page, result);
|
|
|
|
|
}
|
2015-06-29 11:45:42 -07:00
|
|
|
|
Dashboard.hideLoadingMsg();
|
2015-05-19 12:15:40 -07:00
|
|
|
|
});
|
2015-04-12 09:46:29 -07:00
|
|
|
|
|
2015-05-19 12:15:40 -07:00
|
|
|
|
});
|
2015-03-24 18:14:24 -07:00
|
|
|
|
});
|
2015-05-19 12:15:40 -07:00
|
|
|
|
}
|
2014-05-21 12:33:46 -07:00
|
|
|
|
|
2013-07-23 05:29:28 -07:00
|
|
|
|
});
|
|
|
|
|
|
2015-05-12 21:55:19 -07:00
|
|
|
|
function getDisplayPreferencesAppName() {
|
2015-05-14 19:16:57 -07:00
|
|
|
|
|
2015-05-28 16:37:43 -07:00
|
|
|
|
if (AppInfo.isNativeApp) {
|
2015-05-12 21:55:19 -07:00
|
|
|
|
return 'Emby Mobile';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 'webclient';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDisplayPreferences(key, userId) {
|
|
|
|
|
|
|
|
|
|
return ApiClient.getDisplayPreferences(key, userId, getDisplayPreferencesAppName()).done(function (result) {
|
2015-05-14 19:16:57 -07:00
|
|
|
|
|
2015-05-12 21:55:19 -07:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-25 11:32:58 -07:00
|
|
|
|
})(jQuery, document);
|