1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/controllers/dashboard/users/userprofilespage.js

185 lines
6.6 KiB
JavaScript
Raw Normal View History

2020-08-14 08:46:34 +02:00
import loading from '../../../components/loading/loading';
import dom from '../../../scripts/dom';
import globalize from '../../../scripts/globalize';
import { formatDistanceToNow } from 'date-fns';
import { localeWithSuffix } from '../../../scripts/dfnshelper';
import '../../../elements/emby-button/paper-icon-button-light';
import '../../../components/cardbuilder/card.css';
import '../../../elements/emby-button/emby-button';
import '../../../components/indicators/indicators.css';
import '../../../assets/css/flexstyles.scss';
import Dashboard, { pageIdOn } from '../../../scripts/clientUtils';
import confirm from '../../../components/confirm/confirm';
/* eslint-disable indent */
2018-10-23 01:05:09 +03:00
function deleteUser(page, id) {
2020-07-11 14:04:11 +01:00
const msg = globalize.translate('DeleteUserConfirmation');
2019-01-04 12:32:24 +01:00
confirm({
title: globalize.translate('DeleteUser'),
text: msg,
confirmText: globalize.translate('Delete'),
primary: 'delete'
}).then(function () {
loading.show();
ApiClient.deleteUser(id).then(function () {
loadData(page);
2019-01-04 12:32:24 +01:00
});
});
2018-10-23 01:05:09 +03:00
}
function showUserMenu(elem) {
2020-07-11 14:04:11 +01:00
const card = dom.parentWithClass(elem, 'card');
const page = dom.parentWithClass(card, 'page');
const userId = card.getAttribute('data-userid');
const menuItems = [];
2018-10-23 01:05:09 +03:00
menuItems.push({
2020-05-04 12:44:12 +02:00
name: globalize.translate('ButtonOpen'),
id: 'open',
icon: 'mode_edit'
2019-01-04 12:32:24 +01:00
});
menuItems.push({
2020-05-04 12:44:12 +02:00
name: globalize.translate('ButtonLibraryAccess'),
id: 'access',
icon: 'lock'
2019-01-04 12:32:24 +01:00
});
menuItems.push({
2020-05-04 12:44:12 +02:00
name: globalize.translate('ButtonParentalControl'),
id: 'parentalcontrol',
icon: 'person'
2019-01-04 12:32:24 +01:00
});
menuItems.push({
2020-08-13 21:23:51 +09:00
name: globalize.translate('Delete'),
2020-05-04 12:44:12 +02:00
id: 'delete',
icon: 'delete'
2019-01-04 12:32:24 +01:00
});
2020-08-14 08:46:34 +02:00
import('../../../components/actionSheet/actionSheet').then(({default: actionsheet}) => {
2018-10-23 01:05:09 +03:00
actionsheet.show({
items: menuItems,
positionTo: card,
2019-01-04 12:32:24 +01:00
callback: function (id) {
2018-10-23 01:05:09 +03:00
switch (id) {
2020-05-04 12:44:12 +02:00
case 'open':
Dashboard.navigate('useredit.html?userId=' + userId);
2018-10-23 01:05:09 +03:00
break;
2019-01-04 12:32:24 +01:00
2020-05-04 12:44:12 +02:00
case 'access':
Dashboard.navigate('userlibraryaccess.html?userId=' + userId);
2018-10-23 01:05:09 +03:00
break;
2019-01-04 12:32:24 +01:00
2020-05-04 12:44:12 +02:00
case 'parentalcontrol':
Dashboard.navigate('userparentalcontrol.html?userId=' + userId);
2018-10-23 01:05:09 +03:00
break;
2019-01-04 12:32:24 +01:00
2020-05-04 12:44:12 +02:00
case 'delete':
2019-01-04 12:32:24 +01:00
deleteUser(page, userId);
2018-10-23 01:05:09 +03:00
}
}
2019-01-04 12:32:24 +01:00
});
});
2018-10-23 01:05:09 +03:00
}
function getUserHtml(user, addConnectIndicator) {
2020-07-11 14:04:11 +01:00
let html = '';
let cssClass = 'card squareCard scalableCard squareCard-scalable';
2019-01-04 12:32:24 +01:00
if (user.Policy.IsDisabled) {
2020-05-04 12:44:12 +02:00
cssClass += ' grayscale';
2019-01-04 12:32:24 +01:00
}
html += "<div data-userid='" + user.Id + "' class='" + cssClass + "'>";
html += '<div class="cardBox visualCardBox">';
html += '<div class="cardScalable visualCardBox-cardScalable">';
html += '<div class="cardPadder cardPadder-square"></div>';
html += '<a is="emby-linkbutton" class="cardContent" href="useredit.html?userId=' + user.Id + '">';
2020-07-11 14:04:11 +01:00
let imgUrl;
2019-01-04 12:32:24 +01:00
if (user.PrimaryImageTag) {
imgUrl = ApiClient.getUserImageUrl(user.Id, {
width: 300,
tag: user.PrimaryImageTag,
2020-05-04 12:44:12 +02:00
type: 'Primary'
2019-01-04 12:32:24 +01:00
});
}
2020-07-11 14:04:11 +01:00
let imageClass = 'cardImage';
2019-01-04 12:32:24 +01:00
if (user.Policy.IsDisabled) {
2020-05-04 12:44:12 +02:00
imageClass += ' disabledUser';
2019-01-04 12:32:24 +01:00
}
if (imgUrl) {
html += '<div class="' + imageClass + '" style="background-image:url(\'' + imgUrl + "');\">";
} else {
html += '<div class="' + imageClass + ' flex align-items-center justify-content-center">';
2020-04-26 02:37:28 +03:00
html += '<span class="material-icons cardImageIcon person"></span>';
2019-01-04 12:32:24 +01:00
}
2020-05-04 12:44:12 +02:00
html += '</div>';
html += '</a>';
html += '</div>';
2019-01-04 12:32:24 +01:00
html += '<div class="cardFooter visualCardBox-cardFooter">';
html += '<div class="cardText flex align-items-center">';
html += '<div class="flex-grow" style="overflow:hidden;text-overflow:ellipsis;">';
html += user.Name;
2020-05-04 12:44:12 +02:00
html += '</div>';
html += '<button type="button" is="paper-icon-button-light" class="btnUserMenu flex-shrink-zero"><span class="material-icons more_vert"></span></button>';
2020-05-04 12:44:12 +02:00
html += '</div>';
2019-01-04 12:32:24 +01:00
html += '<div class="cardText cardText-secondary">';
2020-07-11 14:04:11 +01:00
const lastSeen = getLastSeenText(user.LastActivityDate);
2020-07-30 16:07:13 +02:00
html += lastSeen != '' ? lastSeen : '&nbsp;';
2020-05-04 12:44:12 +02:00
html += '</div>';
html += '</div>';
html += '</div>';
return html + '</div>';
2018-10-23 01:05:09 +03:00
}
2020-04-02 20:11:10 +02:00
// FIXME: It seems that, sometimes, server sends date in the future, so date-fns displays messages like 'in less than a minute'. We should fix
// how dates are returned by the server when the session is active and show something like 'Active now', instead of past/future sentences
2018-10-23 01:05:09 +03:00
function getLastSeenText(lastActivityDate) {
2019-01-04 12:32:24 +01:00
if (lastActivityDate) {
2020-08-14 08:46:34 +02:00
return globalize.translate('LastSeen', formatDistanceToNow(Date.parse(lastActivityDate), localeWithSuffix));
2019-01-04 12:32:24 +01:00
}
2020-05-04 12:44:12 +02:00
return '';
2018-10-23 01:05:09 +03:00
}
function getUserSectionHtml(users, addConnectIndicator) {
2019-01-04 12:32:24 +01:00
return users.map(function (u__q) {
return getUserHtml(u__q, addConnectIndicator);
2020-05-04 12:44:12 +02:00
}).join('');
2018-10-23 01:05:09 +03:00
}
function renderUsers(page, users) {
2020-05-04 12:44:12 +02:00
page.querySelector('.localUsers').innerHTML = getUserSectionHtml(users, true);
2018-10-23 01:05:09 +03:00
}
function loadData(page) {
2019-01-04 12:32:24 +01:00
loading.show();
ApiClient.getUsers().then(function (users) {
renderUsers(page, users);
loading.hide();
});
2018-10-23 01:05:09 +03:00
}
2020-05-04 12:44:12 +02:00
pageIdOn('pageinit', 'userProfilesPage', function () {
2020-07-11 14:04:11 +01:00
const page = this;
2020-05-04 12:44:12 +02:00
page.querySelector('.btnAddUser').addEventListener('click', function() {
Dashboard.navigate('usernew.html');
});
2020-05-04 12:44:12 +02:00
page.querySelector('.localUsers').addEventListener('click', function (e__e) {
2020-07-11 14:04:11 +01:00
const btnUserMenu = dom.parentWithClass(e__e.target, 'btnUserMenu');
2019-01-04 12:32:24 +01:00
if (btnUserMenu) {
showUserMenu(btnUserMenu);
}
});
});
2020-07-19 16:15:11 +02:00
2020-05-04 12:44:12 +02:00
pageIdOn('pagebeforeshow', 'userProfilesPage', function () {
2019-01-04 12:32:24 +01:00
loadData(this);
});
2020-07-10 13:54:05 +01:00
/* eslint-enable indent */