mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
d1f3fffe2f
* refactor: move/rename BanUserButton file * refactor: move/rename Chart file * refactor: update generic component filenames to PascalCase * refactor: update config component filenames to PascalCase * refactor: update AdminLayout component filename to PascalCase * refactor: update/move VideoJS component * chore(eslint): disable bad react/require-default-props rule * refactor: normalize ActionButton component * refactor: normalize ActionButtonRow component * refactor: normalize FollowButton component * refactor: normalize NotifyButton component * refactor: normalize ChatActionMessage component * refactor: normalize ChatContainer component * refactor: normalize ChatJoinMessage component * refactor: normalize ChatModerationActionMenu component * refactor: normalize ChatModerationDetailsModal component * refactor: normalize ChatModeratorNotification component * refactor: normalize ChatSocialMessage component * refactor: normalize ChatSystemMessage component * refactor: normalize ChatTextField component * refactor: normalize ChatUserBadge component * refactor: normalize ChatUserMessage component * refactor: normalize ContentHeader component * refactor: normalize OwncastLogo component * refactor: normalize UserDropdown component * chore(eslint): modify react/function-component-definition rule * refactor: normalize CodecSelector component * refactor: update a bunch of functional components using eslint * refactor: update a bunch of functional components using eslint, pt2 * refactor: update a bunch of functional components using eslint, pt3 * refactor: replace all component->component default imports with named imports * refactor: replace all component-stories->component default imports with named imports * refactor: remove default exports from most components * chore(eslint): add eslint config files for the components and pages dirs * fix: use-before-define error in ChatContainer * Fix ChatContainer import * Only process .tsx files in Next builds Co-authored-by: Gabe Kangas <gabek@real-ity.com>
109 lines
3.3 KiB
TypeScript
109 lines
3.3 KiB
TypeScript
export function createVideoSettingsMenuButton(player, videojs, qualities, latencyItemPressed): any {
|
|
const VjsMenuItem = videojs.getComponent('MenuItem');
|
|
const MenuItem = videojs.getComponent('MenuItem');
|
|
const MenuButtonClass = videojs.getComponent('MenuButton');
|
|
|
|
class MenuSeparator extends VjsMenuItem {
|
|
// eslint-disable-next-line no-useless-constructor
|
|
constructor(p: any, options: { selectable: boolean }) {
|
|
super(p, options);
|
|
}
|
|
|
|
createEl(tag = 'button', props = {}, attributes = {}) {
|
|
const el = super.createEl(tag, props, attributes);
|
|
el.innerHTML = '<hr style="opacity: 0.3; margin-left: 10px; margin-right: 10px;" />';
|
|
return el;
|
|
}
|
|
}
|
|
|
|
const lowLatencyItem = new MenuItem(player, {
|
|
selectable: true,
|
|
});
|
|
lowLatencyItem.setAttribute('class', 'latency-toggle-item');
|
|
lowLatencyItem.on('click', () => {
|
|
latencyItemPressed();
|
|
});
|
|
|
|
const separator = new MenuSeparator(player, {
|
|
selectable: false,
|
|
});
|
|
|
|
const MenuButton = videojs.extend(MenuButtonClass, {
|
|
// The `init()` method will also work for constructor logic here, but it is
|
|
// deprecated. If you provide an `init()` method, it will override the
|
|
// `constructor()` method!
|
|
constructor() {
|
|
MenuButtonClass.call(this, player);
|
|
},
|
|
|
|
createItems() {
|
|
const tech = player.tech({ IWillNotUseThisInPlugins: true });
|
|
|
|
const defaultAutoItem = new MenuItem(player, {
|
|
selectable: true,
|
|
label: 'Auto',
|
|
});
|
|
|
|
const items = qualities.map(item => {
|
|
const newMenuItem = new MenuItem(player, {
|
|
selectable: true,
|
|
label: item.name,
|
|
});
|
|
|
|
// Quality selected
|
|
newMenuItem.on('click', () => {
|
|
// If for some reason tech doesn't exist, then don't do anything
|
|
if (!tech) {
|
|
console.warn('Invalid attempt to access null player tech');
|
|
return;
|
|
}
|
|
// Only enable this single, selected representation.
|
|
tech.vhs.representations().forEach((rep, index) => {
|
|
rep.enabled(index === item.index);
|
|
});
|
|
newMenuItem.selected(false);
|
|
});
|
|
|
|
return newMenuItem;
|
|
});
|
|
|
|
defaultAutoItem.on('click', () => {
|
|
// Re-enable all representations.
|
|
tech.vhs.representations().forEach(rep => {
|
|
rep.enabled(true);
|
|
});
|
|
defaultAutoItem.selected(false);
|
|
});
|
|
|
|
const supportsLatencyCompensator = !!tech && !!tech.vhs;
|
|
|
|
// Only show the quality selector if there is more than one option.
|
|
if (qualities.length < 2 && supportsLatencyCompensator) {
|
|
return [lowLatencyItem];
|
|
}
|
|
|
|
if (qualities.length > 1 && supportsLatencyCompensator) {
|
|
return [defaultAutoItem, ...items, separator, lowLatencyItem];
|
|
}
|
|
if (!supportsLatencyCompensator && qualities.length === 1) {
|
|
return [];
|
|
}
|
|
|
|
return [defaultAutoItem, ...items];
|
|
},
|
|
});
|
|
|
|
// If none of the settings in this menu are applicable then don't show it.
|
|
const tech = player.tech({ IWillNotUseThisInPlugins: true });
|
|
|
|
if (qualities.length < 2 && (!tech || !tech.vhs)) {
|
|
return;
|
|
}
|
|
|
|
const menuButton = new MenuButton();
|
|
menuButton.addClass('vjs-quality-selector');
|
|
|
|
// eslint-disable-next-line consistent-return
|
|
return menuButton;
|
|
}
|
|
export default createVideoSettingsMenuButton;
|