mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
156 lines
4.7 KiB
JavaScript
156 lines
4.7 KiB
JavaScript
(function ($, window, document) {
|
|
|
|
function populateRatings(allParentalRatings, page) {
|
|
|
|
var html = "";
|
|
|
|
html += "<option value=''></option>";
|
|
|
|
var ratings = [];
|
|
var i, length, rating;
|
|
|
|
for (i = 0, length = allParentalRatings.length; i < length; i++) {
|
|
|
|
rating = allParentalRatings[i];
|
|
|
|
if (ratings.length) {
|
|
|
|
var lastRating = ratings[ratings.length - 1];
|
|
|
|
if (lastRating.Value === rating.Value) {
|
|
|
|
lastRating.Name += "/" + rating.Name;
|
|
continue;
|
|
}
|
|
|
|
}
|
|
|
|
ratings.push({ Name: rating.Name, Value: rating.Value });
|
|
}
|
|
|
|
for (i = 0, length = ratings.length; i < length; i++) {
|
|
|
|
rating = ratings[i];
|
|
|
|
html += "<option value='" + rating.Value + "'>" + rating.Name + "</option>";
|
|
}
|
|
|
|
$('#selectMaxParentalRating', page).html(html).selectmenu("refresh");
|
|
}
|
|
|
|
function loadUser(page, user, loggedInUser, allParentalRatings) {
|
|
|
|
Dashboard.setPageTitle(user.Name);
|
|
|
|
populateRatings(allParentalRatings, page);
|
|
|
|
var ratingValue = "";
|
|
|
|
if (user.Configuration.MaxParentalRating) {
|
|
|
|
for (var i = 0, length = allParentalRatings.length; i < length; i++) {
|
|
|
|
var rating = allParentalRatings[i];
|
|
|
|
if (user.Configuration.MaxParentalRating >= rating.Value) {
|
|
ratingValue = rating.Value;
|
|
}
|
|
}
|
|
}
|
|
|
|
$('#selectMaxParentalRating', page).val(ratingValue).selectmenu("refresh");
|
|
|
|
$('#chkBlockNotRated', page).checked(user.Configuration.BlockNotRated || false).checkboxradio("refresh");
|
|
|
|
$('#chkHideUnratedMovies', page).checked(user.Configuration.BlockUnratedMovies || false).checkboxradio("refresh");
|
|
$('#chkHideUnratedTrailers', page).checked(user.Configuration.BlockUnratedTrailers || false).checkboxradio("refresh");
|
|
$('#chkHideUnratedSeries', page).checked(user.Configuration.BlockUnratedSeries || false).checkboxradio("refresh");
|
|
$('#chkHideUnratedMusic', page).checked(user.Configuration.BlockUnratedMusic || false).checkboxradio("refresh");
|
|
$('#chkHideUnratedGames', page).checked(user.Configuration.BlockUnratedGames || false).checkboxradio("refresh");
|
|
$('#chkHideUnratedBooks', page).checked(user.Configuration.BlockUnratedBooks || false).checkboxradio("refresh");
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function onSaveComplete(page) {
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
Dashboard.validateCurrentUser(page);
|
|
|
|
Dashboard.alert("Settings saved.");
|
|
}
|
|
|
|
function saveUser(user, page) {
|
|
|
|
user.Configuration.MaxParentalRating = $('#selectMaxParentalRating', page).val() || null;
|
|
|
|
user.Configuration.BlockNotRated = $('#chkBlockNotRated', page).checked();
|
|
|
|
user.Configuration.BlockUnratedMovies = $('#chkHideUnratedMovies', page).checked();
|
|
user.Configuration.BlockUnratedTrailers = $('#chkHideUnratedTrailers', page).checked();
|
|
user.Configuration.BlockUnratedSeries = $('#chkHideUnratedSeries', page).checked();
|
|
user.Configuration.BlockUnratedMusic = $('#chkHideUnratedMusic', page).checked();
|
|
user.Configuration.BlockUnratedGames = $('#chkHideUnratedGames', page).checked();
|
|
user.Configuration.BlockUnratedBooks = $('#chkHideUnratedBooks', page).checked();
|
|
|
|
ApiClient.updateUser(user).done(function () {
|
|
onSaveComplete(page);
|
|
});
|
|
}
|
|
|
|
window.UserParentalControlPage = {
|
|
|
|
onSubmit: function () {
|
|
|
|
var page = $(this).parents('.page');
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var userId = getParameterByName("userId");
|
|
|
|
ApiClient.getUser(userId).done(function (result) {
|
|
saveUser(result, page);
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
};
|
|
|
|
$(document).on('pageshow', "#userParentalControlPage", function () {
|
|
|
|
var page = this;
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var userId = getParameterByName("userId");
|
|
|
|
var promise1;
|
|
|
|
if (!userId) {
|
|
|
|
var deferred = $.Deferred();
|
|
|
|
deferred.resolveWith(null, [{
|
|
Configuration: {}
|
|
}]);
|
|
|
|
promise1 = deferred.promise();
|
|
} else {
|
|
|
|
promise1 = ApiClient.getUser(userId);
|
|
}
|
|
|
|
var promise2 = Dashboard.getCurrentUser();
|
|
|
|
var promise3 = ApiClient.getParentalRatings();
|
|
|
|
$.when(promise1, promise2, promise3).done(function (response1, response2, response3) {
|
|
|
|
loadUser(page, response1[0] || response1, response2[0], response3[0]);
|
|
|
|
});
|
|
});
|
|
|
|
})(jQuery, window, document); |