1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Added ability to favorite item from video playback

This commit is contained in:
fishbigger 2022-11-04 22:43:25 +00:00 committed by Dmitry Lyzo
parent bceed9fbc4
commit a84bee544a
3 changed files with 19 additions and 0 deletions

View file

@ -17,6 +17,7 @@ import keyboardnavigation from '../../../scripts/keyboardNavigation';
import '../../../styles/scrollstyles.scss';
import '../../../elements/emby-slider/emby-slider';
import '../../../elements/emby-button/paper-icon-button-light';
import '../../../elements/emby-ratingbutton/emby-ratingbutton';
import '../../../styles/videoosd.scss';
import ServerConnections from '../../../components/ServerConnections';
import shell from '../../../scripts/shell';
@ -133,6 +134,17 @@ export default function (view) {
programStartDateMs = 0;
programEndDateMs = 0;
}
// Set currently playing item for favorite button
const btnUserRating = view.querySelector('.btnUserRating');
if (itemHelper.canRate(currentItem)) {
btnUserRating.classList.remove('hide');
btnUserRating.setItem(currentItem);
} else {
btnUserRating.classList.add('hide');
btnUserRating.setItem(null);
}
}
function getDisplayTimeWithoutAmPm(date, showSeconds) {