mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
190 lines
6.8 KiB
JavaScript
190 lines
6.8 KiB
JavaScript
![]() |
import { Events } from 'jellyfin-apiclient';
|
||
|
import SyncPlay from 'SyncPlay';
|
||
|
import loading from '../../loading/loading';
|
||
|
import toast from '../../toast/toast';
|
||
|
import actionsheet from '../../actionSheet/actionSheet';
|
||
|
import globalize from '../../../scripts/globalize';
|
||
|
import playbackPermissionManager from './playbackPermissionManager';
|
||
|
import ServerConnections from '../../ServerConnections';
|
||
|
|
||
|
/**
|
||
|
* Class that manages the SyncPlay group selection menu.
|
||
|
*/
|
||
|
class GroupSelectionMenu {
|
||
|
constructor() {
|
||
|
// Register to SyncPlay events.
|
||
|
this.syncPlayEnabled = false;
|
||
|
Events.on(SyncPlay.Manager, 'enabled', (e, enabled) => {
|
||
|
this.syncPlayEnabled = enabled;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Used when user needs to join a group.
|
||
|
* @param {HTMLElement} button - Element where to place the menu.
|
||
|
* @param {Object} user - Current user.
|
||
|
* @param {Object} apiClient - ApiClient.
|
||
|
*/
|
||
|
showNewJoinGroupSelection(button, user, apiClient) {
|
||
|
const policy = user.localUser ? user.localUser.Policy : {};
|
||
|
|
||
|
apiClient.getSyncPlayGroups().then(function (response) {
|
||
|
response.json().then(function (groups) {
|
||
|
const menuItems = groups.map(function (group) {
|
||
|
return {
|
||
|
name: group.GroupName,
|
||
|
icon: 'person',
|
||
|
id: group.GroupId,
|
||
|
selected: false,
|
||
|
secondaryText: group.Participants.join(', ')
|
||
|
};
|
||
|
});
|
||
|
|
||
|
if (policy.SyncPlayAccess === 'CreateAndJoinGroups') {
|
||
|
menuItems.push({
|
||
|
name: globalize.translate('LabelSyncPlayNewGroup'),
|
||
|
icon: 'add',
|
||
|
id: 'new-group',
|
||
|
selected: true,
|
||
|
secondaryText: globalize.translate('LabelSyncPlayNewGroupDescription')
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (menuItems.length === 0 && policy.SyncPlayAccess === 'JoinGroups') {
|
||
|
toast({
|
||
|
text: globalize.translate('MessageSyncPlayCreateGroupDenied')
|
||
|
});
|
||
|
loading.hide();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const menuOptions = {
|
||
|
title: globalize.translate('HeaderSyncPlaySelectGroup'),
|
||
|
items: menuItems,
|
||
|
positionTo: button,
|
||
|
resolveOnClick: true,
|
||
|
border: true
|
||
|
};
|
||
|
|
||
|
actionsheet.show(menuOptions).then(function (id) {
|
||
|
if (id == 'new-group') {
|
||
|
apiClient.createSyncPlayGroup({
|
||
|
GroupName: globalize.translate('SyncPlayGroupDefaultTitle', user.localUser.Name)
|
||
|
});
|
||
|
} else if (id) {
|
||
|
apiClient.joinSyncPlayGroup({
|
||
|
GroupId: id
|
||
|
});
|
||
|
}
|
||
|
}).catch((error) => {
|
||
|
console.error('SyncPlay: unexpected error listing groups:', error);
|
||
|
});
|
||
|
|
||
|
loading.hide();
|
||
|
});
|
||
|
}).catch(function (error) {
|
||
|
console.error(error);
|
||
|
loading.hide();
|
||
|
toast({
|
||
|
text: globalize.translate('MessageSyncPlayErrorAccessingGroups')
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Used when user has joined a group.
|
||
|
* @param {HTMLElement} button - Element where to place the menu.
|
||
|
* @param {Object} user - Current user.
|
||
|
* @param {Object} apiClient - ApiClient.
|
||
|
*/
|
||
|
showLeaveGroupSelection(button, user, apiClient) {
|
||
|
const groupInfo = SyncPlay.Manager.getGroupInfo();
|
||
|
const menuItems = [];
|
||
|
|
||
|
if (!SyncPlay.Manager.isPlaylistEmpty() && !SyncPlay.Manager.isPlaybackActive()) {
|
||
|
menuItems.push({
|
||
|
name: globalize.translate('LabelSyncPlayResumePlayback'),
|
||
|
icon: 'play_circle_filled',
|
||
|
id: 'resume-playback',
|
||
|
selected: false,
|
||
|
secondaryText: globalize.translate('LabelSyncPlayResumePlaybackDescription')
|
||
|
});
|
||
|
} else if (SyncPlay.Manager.isPlaybackActive()) {
|
||
|
menuItems.push({
|
||
|
name: globalize.translate('LabelSyncPlayHaltPlayback'),
|
||
|
icon: 'pause_circle_filled',
|
||
|
id: 'halt-playback',
|
||
|
selected: false,
|
||
|
secondaryText: globalize.translate('LabelSyncPlayHaltPlaybackDescription')
|
||
|
});
|
||
|
}
|
||
|
|
||
|
menuItems.push({
|
||
|
name: globalize.translate('LabelSyncPlayLeaveGroup'),
|
||
|
icon: 'meeting_room',
|
||
|
id: 'leave-group',
|
||
|
selected: true,
|
||
|
secondaryText: globalize.translate('LabelSyncPlayLeaveGroupDescription')
|
||
|
});
|
||
|
|
||
|
const menuOptions = {
|
||
|
title: groupInfo.GroupName,
|
||
|
items: menuItems,
|
||
|
positionTo: button,
|
||
|
resolveOnClick: true,
|
||
|
border: true
|
||
|
};
|
||
|
|
||
|
actionsheet.show(menuOptions).then(function (id) {
|
||
|
if (id == 'resume-playback') {
|
||
|
SyncPlay.Manager.resumeGroupPlayback(apiClient);
|
||
|
} else if (id == 'halt-playback') {
|
||
|
SyncPlay.Manager.haltGroupPlayback(apiClient);
|
||
|
} else if (id == 'leave-group') {
|
||
|
apiClient.leaveSyncPlayGroup();
|
||
|
}
|
||
|
}).catch((error) => {
|
||
|
console.error('SyncPlay: unexpected error showing group menu:', error);
|
||
|
});
|
||
|
|
||
|
loading.hide();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Shows a menu to handle SyncPlay groups.
|
||
|
* @param {HTMLElement} button - Element where to place the menu.
|
||
|
*/
|
||
|
show(button) {
|
||
|
loading.show();
|
||
|
|
||
|
// TODO: should feature be disabled if playback permission is missing?
|
||
|
playbackPermissionManager.check().then(() => {
|
||
|
console.debug('Playback is allowed.');
|
||
|
}).catch((error) => {
|
||
|
console.error('Playback not allowed!', error);
|
||
|
toast({
|
||
|
text: globalize.translate('MessageSyncPlayPlaybackPermissionRequired')
|
||
|
});
|
||
|
});
|
||
|
|
||
|
const apiClient = ServerConnections.currentApiClient();
|
||
|
ServerConnections.user(apiClient).then((user) => {
|
||
|
if (this.syncPlayEnabled) {
|
||
|
this.showLeaveGroupSelection(button, user, apiClient);
|
||
|
} else {
|
||
|
this.showNewJoinGroupSelection(button, user, apiClient);
|
||
|
}
|
||
|
}).catch((error) => {
|
||
|
console.error(error);
|
||
|
loading.hide();
|
||
|
toast({
|
||
|
text: globalize.translate('MessageSyncPlayNoGroupsAvailable')
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** GroupSelectionMenu singleton. */
|
||
|
const groupSelectionMenu = new GroupSelectionMenu();
|
||
|
export default groupSelectionMenu;
|