Fix Firefox spacebar issue

This commit is contained in:
Sam Potts
2018-08-01 00:37:55 +10:00
parent 3a3358e2b4
commit 56a485bac6
11 changed files with 482 additions and 210 deletions

2
demo/dist/demo.css vendored

File diff suppressed because one or more lines are too long

2
dist/plyr.css vendored

File diff suppressed because one or more lines are too long

47
dist/plyr.js vendored
View File

@ -1565,12 +1565,20 @@ typeof navigator === "object" && (function (global, factory) {
// Setup toggle icon and labels // Setup toggle icon and labels
if (toggle) { if (toggle) {
// Icon // Icon
button.appendChild(controls.createIcon.call(this, iconPressed, { class: 'icon--pressed' })); button.appendChild(controls.createIcon.call(this, iconPressed, {
button.appendChild(controls.createIcon.call(this, icon, { class: 'icon--not-pressed' })); class: 'icon--pressed'
}));
button.appendChild(controls.createIcon.call(this, icon, {
class: 'icon--not-pressed'
}));
// Label/Tooltip // Label/Tooltip
button.appendChild(controls.createLabel.call(this, labelPressed, { class: 'label--pressed' })); button.appendChild(controls.createLabel.call(this, labelPressed, {
button.appendChild(controls.createLabel.call(this, label, { class: 'label--not-pressed' })); class: 'label--pressed'
}));
button.appendChild(controls.createLabel.call(this, label, {
class: 'label--not-pressed'
}));
} else { } else {
button.appendChild(controls.createIcon.call(this, icon)); button.appendChild(controls.createIcon.call(this, icon));
button.appendChild(controls.createLabel.call(this, label)); button.appendChild(controls.createLabel.call(this, label));
@ -1687,7 +1695,7 @@ typeof navigator === "object" && (function (global, factory) {
var _this = this; var _this = this;
// Handle space or -> to open menu // Handle space or -> to open menu
on(menuItem, 'keydown', function (event) { on(menuItem, 'keydown keyup', function (event) {
// We only care about space and ⬆️ ⬇️️ ➡️ // We only care about space and ⬆️ ⬇️️ ➡️
if (![32, 38, 39, 40].includes(event.which)) { if (![32, 38, 39, 40].includes(event.which)) {
return; return;
@ -1697,6 +1705,11 @@ typeof navigator === "object" && (function (global, factory) {
event.preventDefault(); event.preventDefault();
event.stopPropagation(); event.stopPropagation();
// We're just here to prevent the keydown bubbling
if (event.type === 'keydown') {
return;
}
var isRadioButton = matches(menuItem, '[role="menuitemradio"]'); var isRadioButton = matches(menuItem, '[role="menuitemradio"]');
// Show the respective menu // Show the respective menu
@ -1781,8 +1794,8 @@ typeof navigator === "object" && (function (global, factory) {
} }
}); });
this.listeners.bind(menuItem, 'click keydown', function (event) { this.listeners.bind(menuItem, 'click keyup', function (event) {
if (event.type === 'keydown' && event.which !== 32) { if (event.type === 'keyup' && event.which !== 32) {
return; return;
} }
@ -1808,7 +1821,7 @@ typeof navigator === "object" && (function (global, factory) {
break; break;
} }
controls.showMenuPanel.call(_this2, 'home', event.type === 'keydown'); controls.showMenuPanel.call(_this2, 'home', event.type === 'keyup');
}, type, false); }, type, false);
controls.bindMenuItemShortcuts.call(this, menuItem, type); controls.bindMenuItemShortcuts.call(this, menuItem, type);
@ -2434,14 +2447,16 @@ typeof navigator === "object" && (function (global, factory) {
// Show the actual popup // Show the actual popup
if (is.element(popup)) { if (is.element(popup)) {
toggleHidden(popup, !show); toggleHidden(popup, !show);
toggleClass(this.elements.container, this.config.classNames.menu.open, show); toggleClass(this.elements.container, this.config.classNames.menu.open, show);
// Focus the first item if key interaction // Focus the first item if key interaction
if (show && is.event(input) && input.type === 'keydown') { if (show && is.event(input) && input.type === 'keyup') {
var pane = Object.values(this.elements.settings.panels).find(function (pane) { var pane = Object.values(this.elements.settings.panels).find(function (pane) {
return !pane.hidden; return !pane.hidden;
}); });
var firstItem = pane.querySelector('[role^="menuitem"]'); var firstItem = pane.querySelector('[role^="menuitem"]');
setFocus.call(this, firstItem, true); setFocus.call(this, firstItem, true);
} }
} }
@ -4500,7 +4515,7 @@ typeof navigator === "object" && (function (global, factory) {
clearTimeout(this.focusTimer); clearTimeout(this.focusTimer);
// Ignore any key other than tab // Ignore any key other than tab
if (event.type === 'keydown' && event.code !== 'Tab') { if (event.type === 'keydown' && event.which !== 9) {
return; return;
} }
@ -4869,17 +4884,19 @@ typeof navigator === "object" && (function (global, factory) {
}); });
// Settings menu - keyboard toggle // Settings menu - keyboard toggle
this.bind(player.elements.buttons.settings, 'keydown', function (event) { this.bind(player.elements.buttons.settings, 'keyup', function (event) {
// We only care about space // We only care about space and return
if (event.which !== 32) { if (event.which !== 32 && event.which !== 13) {
return; return;
} }
// Prevent scroll // Prevent scroll
event.preventDefault(); event.preventDefault();
// Prevent playing video // Prevent playing video (Firefox)
event.stopPropagation(); if (event.which === 32) {
event.stopPropagation();
}
// Toggle menu // Toggle menu
controls.toggleMenu.call(player, event); controls.toggleMenu.call(player, event);

2
dist/plyr.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/plyr.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

539
src/js/controls.js vendored
View File

@ -23,7 +23,9 @@ const controls = {
// Get icon URL // Get icon URL
getIconUrl() { getIconUrl() {
const url = new URL(this.config.iconUrl, window.location); const url = new URL(this.config.iconUrl, window.location);
const cors = url.host !== window.location.host || (browser.isIE && !window.svg4everybody); const cors =
url.host !== window.location.host ||
(browser.isIE && !window.svg4everybody);
return { return {
url: this.config.iconUrl, url: this.config.iconUrl,
@ -34,37 +36,82 @@ const controls = {
// Find the UI controls // Find the UI controls
findElements() { findElements() {
try { try {
this.elements.controls = getElement.call(this, this.config.selectors.controls.wrapper); this.elements.controls = getElement.call(
this,
this.config.selectors.controls.wrapper,
);
// Buttons // Buttons
this.elements.buttons = { this.elements.buttons = {
play: getElements.call(this, this.config.selectors.buttons.play), play: getElements.call(
pause: getElement.call(this, this.config.selectors.buttons.pause), this,
restart: getElement.call(this, this.config.selectors.buttons.restart), this.config.selectors.buttons.play,
rewind: getElement.call(this, this.config.selectors.buttons.rewind), ),
fastForward: getElement.call(this, this.config.selectors.buttons.fastForward), pause: getElement.call(
this,
this.config.selectors.buttons.pause,
),
restart: getElement.call(
this,
this.config.selectors.buttons.restart,
),
rewind: getElement.call(
this,
this.config.selectors.buttons.rewind,
),
fastForward: getElement.call(
this,
this.config.selectors.buttons.fastForward,
),
mute: getElement.call(this, this.config.selectors.buttons.mute), mute: getElement.call(this, this.config.selectors.buttons.mute),
pip: getElement.call(this, this.config.selectors.buttons.pip), pip: getElement.call(this, this.config.selectors.buttons.pip),
airplay: getElement.call(this, this.config.selectors.buttons.airplay), airplay: getElement.call(
settings: getElement.call(this, this.config.selectors.buttons.settings), this,
captions: getElement.call(this, this.config.selectors.buttons.captions), this.config.selectors.buttons.airplay,
fullscreen: getElement.call(this, this.config.selectors.buttons.fullscreen), ),
settings: getElement.call(
this,
this.config.selectors.buttons.settings,
),
captions: getElement.call(
this,
this.config.selectors.buttons.captions,
),
fullscreen: getElement.call(
this,
this.config.selectors.buttons.fullscreen,
),
}; };
// Progress // Progress
this.elements.progress = getElement.call(this, this.config.selectors.progress); this.elements.progress = getElement.call(
this,
this.config.selectors.progress,
);
// Inputs // Inputs
this.elements.inputs = { this.elements.inputs = {
seek: getElement.call(this, this.config.selectors.inputs.seek), seek: getElement.call(this, this.config.selectors.inputs.seek),
volume: getElement.call(this, this.config.selectors.inputs.volume), volume: getElement.call(
this,
this.config.selectors.inputs.volume,
),
}; };
// Display // Display
this.elements.display = { this.elements.display = {
buffer: getElement.call(this, this.config.selectors.display.buffer), buffer: getElement.call(
currentTime: getElement.call(this, this.config.selectors.display.currentTime), this,
duration: getElement.call(this, this.config.selectors.display.duration), this.config.selectors.display.buffer,
),
currentTime: getElement.call(
this,
this.config.selectors.display.currentTime,
),
duration: getElement.call(
this,
this.config.selectors.display.duration,
),
}; };
// Seek tooltip // Seek tooltip
@ -77,7 +124,10 @@ const controls = {
return true; return true;
} catch (error) { } catch (error) {
// Log it // Log it
this.debug.warn('It looks like there is a problem with your custom controls HTML', error); this.debug.warn(
'It looks like there is a problem with your custom controls HTML',
error,
);
// Restore native video controls // Restore native video controls
this.toggleNativeControls(true); this.toggleNativeControls(true);
@ -90,7 +140,9 @@ const controls = {
createIcon(type, attributes) { createIcon(type, attributes) {
const namespace = 'http://www.w3.org/2000/svg'; const namespace = 'http://www.w3.org/2000/svg';
const iconUrl = controls.getIconUrl.call(this); const iconUrl = controls.getIconUrl.call(this);
const iconPath = `${!iconUrl.cors ? iconUrl.url : ''}#${this.config.iconPrefix}`; const iconPath = `${!iconUrl.cors ? iconUrl.url : ''}#${
this.config.iconPrefix
}`;
// Create <svg> // Create <svg>
const icon = document.createElementNS(namespace, 'svg'); const icon = document.createElementNS(namespace, 'svg');
@ -112,7 +164,11 @@ const controls = {
if ('href' in use) { if ('href' in use) {
use.setAttributeNS('http://www.w3.org/1999/xlink', 'href', path); use.setAttributeNS('http://www.w3.org/1999/xlink', 'href', path);
} else { } else {
use.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', path); use.setAttributeNS(
'http://www.w3.org/1999/xlink',
'xlink:href',
path,
);
} }
// Add <use> to <svg> // Add <use> to <svg>
@ -131,7 +187,9 @@ const controls = {
const text = universals[type] || i18n.get(type, this.config); const text = universals[type] || i18n.get(type, this.config);
const attributes = Object.assign({}, attr, { const attributes = Object.assign({}, attr, {
class: [attr.class, this.config.classNames.hidden].filter(Boolean).join(' '), class: [attr.class, this.config.classNames.hidden]
.filter(Boolean)
.join(' '),
}); });
return createElement('span', attributes, text); return createElement('span', attributes, text);
}, },
@ -218,7 +276,9 @@ const controls = {
break; break;
case 'play-large': case 'play-large':
attributes.class += ` ${this.config.classNames.control}--overlaid`; attributes.class += ` ${
this.config.classNames.control
}--overlaid`;
type = 'play'; type = 'play';
label = 'play'; label = 'play';
icon = 'play'; icon = 'play';
@ -232,19 +292,41 @@ const controls = {
// Setup toggle icon and labels // Setup toggle icon and labels
if (toggle) { if (toggle) {
// Icon // Icon
button.appendChild(controls.createIcon.call(this, iconPressed, { class: 'icon--pressed' })); button.appendChild(
button.appendChild(controls.createIcon.call(this, icon, { class: 'icon--not-pressed' })); controls.createIcon.call(this, iconPressed, {
class: 'icon--pressed',
}),
);
button.appendChild(
controls.createIcon.call(this, icon, {
class: 'icon--not-pressed',
}),
);
// Label/Tooltip // Label/Tooltip
button.appendChild(controls.createLabel.call(this, labelPressed, { class: 'label--pressed' })); button.appendChild(
button.appendChild(controls.createLabel.call(this, label, { class: 'label--not-pressed' })); controls.createLabel.call(this, labelPressed, {
class: 'label--pressed',
}),
);
button.appendChild(
controls.createLabel.call(this, label, {
class: 'label--not-pressed',
}),
);
} else { } else {
button.appendChild(controls.createIcon.call(this, icon)); button.appendChild(controls.createIcon.call(this, icon));
button.appendChild(controls.createLabel.call(this, label)); button.appendChild(controls.createLabel.call(this, label));
} }
// Merge attributes // Merge attributes
extend(attributes, getAttributesFromSelector(this.config.selectors.buttons[type], attributes)); extend(
attributes,
getAttributesFromSelector(
this.config.selectors.buttons[type],
attributes,
),
);
setAttributes(button, attributes); setAttributes(button, attributes);
@ -344,12 +426,16 @@ const controls = {
// Create time display // Create time display
createTime(type) { createTime(type) {
const attributes = getAttributesFromSelector(this.config.selectors.display[type]); const attributes = getAttributesFromSelector(
this.config.selectors.display[type],
);
const container = createElement( const container = createElement(
'div', 'div',
extend(attributes, { extend(attributes, {
class: `${this.config.classNames.display.time} ${attributes.class ? attributes.class : ''}`.trim(), class: `${this.config.classNames.display.time} ${
attributes.class ? attributes.class : ''
}`.trim(),
'aria-label': i18n.get(type, this.config), 'aria-label': i18n.get(type, this.config),
}), }),
'00:00', '00:00',
@ -364,55 +450,82 @@ const controls = {
// Bind keyboard shortcuts for a menu item // Bind keyboard shortcuts for a menu item
bindMenuItemShortcuts(menuItem, type) { bindMenuItemShortcuts(menuItem, type) {
// Handle space or -> to open menu // Handle space or -> to open menu
on(menuItem, 'keydown', event => { on(
// We only care about space and ⬆️ ⬇️️ ➡️ menuItem,
if (![32,38,39,40].includes(event.which)) { 'keydown keyup',
return; event => {
} // We only care about space and ⬆️ ⬇️️ ➡️
if (![32, 38, 39, 40].includes(event.which)) {
// Prevent play / seek return;
event.preventDefault();
event.stopPropagation();
const isRadioButton = matches(menuItem, '[role="menuitemradio"]');
// Show the respective menu
if (!isRadioButton && [32,39].includes(event.which)) {
controls.showMenuPanel.call(this, type, true);
} else {
let target;
if (event.which !== 32) {
if (event.which === 40 || isRadioButton && event.which === 39) {
target = menuItem.nextElementSibling;
if (!is.element(target)) {
target = menuItem.parentNode.firstElementChild;
}
} else {
target = menuItem.previousElementSibling;
if (!is.element(target)) {
target = menuItem.parentNode.lastElementChild;
}
}
setFocus.call(this, target, true);
} }
}
}, false); // Prevent play / seek
event.preventDefault();
event.stopPropagation();
// We're just here to prevent the keydown bubbling
if (event.type === 'keydown') {
return;
}
const isRadioButton = matches(
menuItem,
'[role="menuitemradio"]',
);
// Show the respective menu
if (!isRadioButton && [32, 39].includes(event.which)) {
controls.showMenuPanel.call(this, type, true);
} else {
let target;
if (event.which !== 32) {
if (
event.which === 40 ||
(isRadioButton && event.which === 39)
) {
target = menuItem.nextElementSibling;
if (!is.element(target)) {
target = menuItem.parentNode.firstElementChild;
}
} else {
target = menuItem.previousElementSibling;
if (!is.element(target)) {
target = menuItem.parentNode.lastElementChild;
}
}
setFocus.call(this, target, true);
}
}
},
false,
);
}, },
// Create a settings menu item // Create a settings menu item
createMenuItem({ value, list, type, title, badge = null, checked = false }) { createMenuItem({
const attributes = getAttributesFromSelector(this.config.selectors.inputs[type]); value,
list,
type,
title,
badge = null,
checked = false,
}) {
const attributes = getAttributesFromSelector(
this.config.selectors.inputs[type],
);
const menuItem = createElement( const menuItem = createElement(
'button', 'button',
extend(attributes, { extend(attributes, {
type: 'button', type: 'button',
role: 'menuitemradio', role: 'menuitemradio',
class: `${this.config.classNames.control} ${attributes.class ? attributes.class : ''}`.trim(), class: `${this.config.classNames.control} ${
attributes.class ? attributes.class : ''
}`.trim(),
'aria-checked': checked, 'aria-checked': checked,
value, value,
}), }),
@ -440,18 +553,23 @@ const controls = {
if (checked) { if (checked) {
Array.from(menuItem.parentNode.children) Array.from(menuItem.parentNode.children)
.filter(node => matches(node, '[role="menuitemradio"]')) .filter(node => matches(node, '[role="menuitemradio"]'))
.forEach(node => node.setAttribute('aria-checked', 'false')); .forEach(node =>
node.setAttribute('aria-checked', 'false'),
);
} }
menuItem.setAttribute('aria-checked', checked ? 'true' : 'false'); menuItem.setAttribute(
'aria-checked',
checked ? 'true' : 'false',
);
}, },
}); });
this.listeners.bind( this.listeners.bind(
menuItem, menuItem,
'click keydown', 'click keyup',
event => { event => {
if (event.type === 'keydown' && event.which !== 32) { if (event.type === 'keyup' && event.which !== 32) {
return; return;
} }
@ -477,7 +595,11 @@ const controls = {
break; break;
} }
controls.showMenuPanel.call(this, 'home', event.type === 'keydown'); controls.showMenuPanel.call(
this,
'home',
event.type === 'keyup',
);
}, },
type, type,
false, false,
@ -520,12 +642,17 @@ const controls = {
// Update range // Update range
if (is.element(this.elements.inputs.volume)) { if (is.element(this.elements.inputs.volume)) {
controls.setRange.call(this, this.elements.inputs.volume, this.muted ? 0 : this.volume); controls.setRange.call(
this,
this.elements.inputs.volume,
this.muted ? 0 : this.volume,
);
} }
// Update mute state // Update mute state
if (is.element(this.elements.buttons.mute)) { if (is.element(this.elements.buttons.mute)) {
this.elements.buttons.mute.pressed = this.muted || this.volume === 0; this.elements.buttons.mute.pressed =
this.muted || this.volume === 0;
} }
}, },
@ -552,7 +679,9 @@ const controls = {
const setProgress = (target, input) => { const setProgress = (target, input) => {
const value = is.number(input) ? input : 0; const value = is.number(input) ? input : 0;
const progress = is.element(target) ? target : this.elements.display.buffer; const progress = is.element(target)
? target
: this.elements.display.buffer;
// Update value and label // Update value and label
if (is.element(progress)) { if (is.element(progress)) {
@ -576,7 +705,11 @@ const controls = {
// Set seek range value only if it's a 'natural' time event // Set seek range value only if it's a 'natural' time event
if (event.type === 'timeupdate') { if (event.type === 'timeupdate') {
controls.setRange.call(this, this.elements.inputs.seek, value); controls.setRange.call(
this,
this.elements.inputs.seek,
value,
);
} }
break; break;
@ -584,7 +717,10 @@ const controls = {
// Check buffer status // Check buffer status
case 'playing': case 'playing':
case 'progress': case 'progress':
setProgress(this.elements.display.buffer, this.buffered * 100); setProgress(
this.elements.display.buffer,
this.buffered * 100,
);
break; break;
@ -612,7 +748,9 @@ const controls = {
const format = i18n.get('seekLabel', this.config); const format = i18n.get('seekLabel', this.config);
range.setAttribute( range.setAttribute(
'aria-valuetext', 'aria-valuetext',
format.replace('{currentTime}', currentTime).replace('{duration}', duration), format
.replace('{currentTime}', currentTime)
.replace('{duration}', duration),
); );
} else if (matches(range, this.config.selectors.inputs.volume)) { } else if (matches(range, this.config.selectors.inputs.volume)) {
const percent = range.value * 100; const percent = range.value * 100;
@ -662,7 +800,10 @@ const controls = {
if (is.event(event)) { if (is.event(event)) {
percent = 100 / clientRect.width * (event.pageX - clientRect.left); percent = 100 / clientRect.width * (event.pageX - clientRect.left);
} else if (hasClass(this.elements.display.seekTooltip, visible)) { } else if (hasClass(this.elements.display.seekTooltip, visible)) {
percent = parseFloat(this.elements.display.seekTooltip.style.left, 10); percent = parseFloat(
this.elements.display.seekTooltip.style.left,
10,
);
} else { } else {
return; return;
} }
@ -675,14 +816,21 @@ const controls = {
} }
// Display the time a click would seek to // Display the time a click would seek to
controls.updateTimeDisplay.call(this, this.elements.display.seekTooltip, this.duration / 100 * percent); controls.updateTimeDisplay.call(
this,
this.elements.display.seekTooltip,
this.duration / 100 * percent,
);
// Set position // Set position
this.elements.display.seekTooltip.style.left = `${percent}%`; this.elements.display.seekTooltip.style.left = `${percent}%`;
// Show/hide the tooltip // Show/hide the tooltip
// If the event is a moues in/out and percentage is inside bounds // If the event is a moues in/out and percentage is inside bounds
if (is.event(event) && ['mouseenter', 'mouseleave'].includes(event.type)) { if (
is.event(event) &&
['mouseenter', 'mouseleave'].includes(event.type)
) {
toggle(event.type === 'mouseenter'); toggle(event.type === 'mouseenter');
} }
}, },
@ -690,7 +838,9 @@ const controls = {
// Handle time change event // Handle time change event
timeUpdate(event) { timeUpdate(event) {
// Only invert if only one time element is displayed and used for both duration and currentTime // Only invert if only one time element is displayed and used for both duration and currentTime
const invert = !is.element(this.elements.display.duration) && this.config.invertTime; const invert =
!is.element(this.elements.display.duration) &&
this.config.invertTime;
// Duration // Duration
controls.updateTimeDisplay.call( controls.updateTimeDisplay.call(
@ -712,7 +862,10 @@ const controls = {
// Show the duration on metadataloaded or durationchange events // Show the duration on metadataloaded or durationchange events
durationUpdate() { durationUpdate() {
// Bail if no UI or durationchange event triggered after playing/seek when invertTime is false // Bail if no UI or durationchange event triggered after playing/seek when invertTime is false
if (!this.supported.ui || (!this.config.invertTime && this.currentTime)) { if (
!this.supported.ui ||
(!this.config.invertTime && this.currentTime)
) {
return; return;
} }
@ -720,7 +873,7 @@ const controls = {
// https://github.com/video-dev/hls.js/blob/5820d29d3c4c8a46e8b75f1e3afa3e68c1a9a2db/src/controller/buffer-controller.js#L415 // https://github.com/video-dev/hls.js/blob/5820d29d3c4c8a46e8b75f1e3afa3e68c1a9a2db/src/controller/buffer-controller.js#L415
// https://github.com/google/shaka-player/blob/4d889054631f4e1cf0fbd80ddd2b71887c02e232/lib/media/streaming_engine.js#L1062 // https://github.com/google/shaka-player/blob/4d889054631f4e1cf0fbd80ddd2b71887c02e232/lib/media/streaming_engine.js#L1062
// https://github.com/Dash-Industry-Forum/dash.js/blob/69859f51b969645b234666800d4cb596d89c602d/src/dash/models/DashManifestModel.js#L338 // https://github.com/Dash-Industry-Forum/dash.js/blob/69859f51b969645b234666800d4cb596d89c602d/src/dash/models/DashManifestModel.js#L338
if (this.duration >= 2**32) { if (this.duration >= 2 ** 32) {
toggleHidden(this.elements.display.currentTime, true); toggleHidden(this.elements.display.currentTime, true);
toggleHidden(this.elements.progress, true); toggleHidden(this.elements.progress, true);
return; return;
@ -728,7 +881,10 @@ const controls = {
// Update ARIA values // Update ARIA values
if (is.element(this.elements.inputs.seek)) { if (is.element(this.elements.inputs.seek)) {
this.elements.inputs.seek.setAttribute('aria-valuemax', this.duration); this.elements.inputs.seek.setAttribute(
'aria-valuemax',
this.duration,
);
} }
// If there's a spot to display duration // If there's a spot to display duration
@ -736,12 +892,20 @@ const controls = {
// If there's only one time display, display duration there // If there's only one time display, display duration there
if (!hasDuration && this.config.displayDuration && this.paused) { if (!hasDuration && this.config.displayDuration && this.paused) {
controls.updateTimeDisplay.call(this, this.elements.display.currentTime, this.duration); controls.updateTimeDisplay.call(
this,
this.elements.display.currentTime,
this.duration,
);
} }
// If there's a duration element, update content // If there's a duration element, update content
if (hasDuration) { if (hasDuration) {
controls.updateTimeDisplay.call(this, this.elements.display.duration, this.duration); controls.updateTimeDisplay.call(
this,
this.elements.display.duration,
this.duration,
);
} }
// Update the tooltip (if visible) // Update the tooltip (if visible)
@ -770,8 +934,13 @@ const controls = {
} }
// Unsupported value // Unsupported value
if (!is.empty(this.options[setting]) && !this.options[setting].includes(value)) { if (
this.debug.warn(`Unsupported value of '${value}' for ${setting}`); !is.empty(this.options[setting]) &&
!this.options[setting].includes(value)
) {
this.debug.warn(
`Unsupported value of '${value}' for ${setting}`,
);
return; return;
} }
@ -793,7 +962,9 @@ const controls = {
} }
// Update the label // Update the label
const label = this.elements.settings.buttons[setting].querySelector(`.${this.config.classNames.menu.value}`); const label = this.elements.settings.buttons[setting].querySelector(
`.${this.config.classNames.menu.value}`,
);
label.innerHTML = controls.getLabel.call(this, setting, value); label.innerHTML = controls.getLabel.call(this, setting, value);
// Find the radio option and check it // Find the radio option and check it
@ -808,11 +979,16 @@ const controls = {
getLabel(setting, value) { getLabel(setting, value) {
switch (setting) { switch (setting) {
case 'speed': case 'speed':
return value === 1 ? i18n.get('normal', this.config) : `${value}&times;`; return value === 1
? i18n.get('normal', this.config)
: `${value}&times;`;
case 'quality': case 'quality':
if (is.number(value)) { if (is.number(value)) {
const label = i18n.get(`qualityLabel.${value}`, this.config); const label = i18n.get(
`qualityLabel.${value}`,
this.config,
);
if (!label.length) { if (!label.length) {
return `${value}p`; return `${value}p`;
@ -839,15 +1015,20 @@ const controls = {
} }
const type = 'quality'; const type = 'quality';
const list = this.elements.settings.panels.quality.querySelector('[role="menu"]'); const list = this.elements.settings.panels.quality.querySelector(
'[role="menu"]',
);
// Set options if passed and filter based on uniqueness and config // Set options if passed and filter based on uniqueness and config
if (is.array(options)) { if (is.array(options)) {
this.options.quality = dedupe(options).filter(quality => this.config.quality.options.includes(quality)); this.options.quality = dedupe(options).filter(quality =>
this.config.quality.options.includes(quality),
);
} }
// Toggle the pane and tab // Toggle the pane and tab
const toggle = !is.empty(this.options.quality) && this.options.quality.length > 1; const toggle =
!is.empty(this.options.quality) && this.options.quality.length > 1;
controls.toggleMenuButton.call(this, type, toggle); controls.toggleMenuButton.call(this, type, toggle);
// Empty the menu // Empty the menu
@ -947,7 +1128,9 @@ const controls = {
// TODO: Captions or language? Currently it's mixed // TODO: Captions or language? Currently it's mixed
const type = 'captions'; const type = 'captions';
const list = this.elements.settings.panels.captions.querySelector('[role="menu"]'); const list = this.elements.settings.panels.captions.querySelector(
'[role="menu"]',
);
const tracks = captions.getTracks.call(this); const tracks = captions.getTracks.call(this);
const toggle = Boolean(tracks.length); const toggle = Boolean(tracks.length);
@ -970,7 +1153,9 @@ const controls = {
value, value,
checked: this.captions.toggled && this.currentTrack === value, checked: this.captions.toggled && this.currentTrack === value,
title: captions.getLabel.call(this, track), title: captions.getLabel.call(this, track),
badge: track.language && controls.createBadge.call(this, track.language.toUpperCase()), badge:
track.language &&
controls.createBadge.call(this, track.language.toUpperCase()),
list, list,
type: 'language', type: 'language',
})); }));
@ -998,7 +1183,9 @@ const controls = {
} }
const type = 'speed'; const type = 'speed';
const list = this.elements.settings.panels.speed.querySelector('[role="menu"]'); const list = this.elements.settings.panels.speed.querySelector(
'[role="menu"]',
);
// Set the speed options // Set the speed options
if (is.array(options)) { if (is.array(options)) {
@ -1008,10 +1195,13 @@ const controls = {
} }
// Set options if passed and filter based on config // Set options if passed and filter based on config
this.options.speed = this.options.speed.filter(speed => this.config.speed.options.includes(speed)); this.options.speed = this.options.speed.filter(speed =>
this.config.speed.options.includes(speed),
);
// Toggle the pane and tab // Toggle the pane and tab
const toggle = !is.empty(this.options.speed) && this.options.speed.length > 1; const toggle =
!is.empty(this.options.speed) && this.options.speed.length > 1;
controls.toggleMenuButton.call(this, type, toggle); controls.toggleMenuButton.call(this, type, toggle);
// Empty the menu // Empty the menu
@ -1041,7 +1231,9 @@ const controls = {
// Check if we need to hide/show the settings menu // Check if we need to hide/show the settings menu
checkMenu() { checkMenu() {
const { buttons } = this.elements.settings; const { buttons } = this.elements.settings;
const visible = !is.empty(buttons) && Object.values(buttons).some(button => !button.hidden); const visible =
!is.empty(buttons) &&
Object.values(buttons).some(button => !button.hidden);
toggleHidden(this.elements.settings.menu, !visible); toggleHidden(this.elements.settings.menu, !visible);
}, },
@ -1056,10 +1248,13 @@ const controls = {
return; return;
} }
const show = is.boolean(input) ? input : is.element(popup) && popup.hasAttribute('hidden'); const show = is.boolean(input)
? input
: is.element(popup) && popup.hasAttribute('hidden');
if (is.event(input)) { if (is.event(input)) {
const isMenuItem = is.element(popup) && popup.contains(input.target); const isMenuItem =
is.element(popup) && popup.contains(input.target);
const isButton = input.target === this.elements.buttons.settings; const isButton = input.target === this.elements.buttons.settings;
// If the click was inside the form or if the click // If the click was inside the form or if the click
@ -1083,12 +1278,20 @@ const controls = {
// Show the actual popup // Show the actual popup
if (is.element(popup)) { if (is.element(popup)) {
toggleHidden(popup, !show); toggleHidden(popup, !show);
toggleClass(this.elements.container, this.config.classNames.menu.open, show);
toggleClass(
this.elements.container,
this.config.classNames.menu.open,
show,
);
// Focus the first item if key interaction // Focus the first item if key interaction
if (show && is.event(input) && input.type === 'keydown') { if (show && is.event(input) && input.type === 'keyup') {
const pane = Object.values(this.elements.settings.panels).find(pane => !pane.hidden); const pane = Object.values(this.elements.settings.panels).find(
pane => !pane.hidden,
);
const firstItem = pane.querySelector('[role^="menuitem"]'); const firstItem = pane.querySelector('[role^="menuitem"]');
setFocus.call(this, firstItem, true); setFocus.call(this, firstItem, true);
} }
} }
@ -1119,7 +1322,9 @@ const controls = {
// Show a panel in the menu // Show a panel in the menu
showMenuPanel(type = '', tabFocus = false) { showMenuPanel(type = '', tabFocus = false) {
const target = document.getElementById(`plyr-settings-${this.id}-${type}`); const target = document.getElementById(
`plyr-settings-${this.id}-${type}`,
);
// Nothing to show, bail // Nothing to show, bail
if (!is.element(target)) { if (!is.element(target)) {
@ -1128,7 +1333,9 @@ const controls = {
// Hide all other panels // Hide all other panels
const container = target.parentNode; const container = target.parentNode;
const current = Array.from(container.children).find(node => !node.hidden); const current = Array.from(container.children).find(
node => !node.hidden,
);
// If we can do fancy animations, we'll animate the height/width // If we can do fancy animations, we'll animate the height/width
if (support.transitions && !support.reducedMotion) { if (support.transitions && !support.reducedMotion) {
@ -1142,7 +1349,10 @@ const controls = {
// Restore auto height/width // Restore auto height/width
const restore = event => { const restore = event => {
// We're only bothered about height and width on the container // We're only bothered about height and width on the container
if (event.target !== container || !['width', 'height'].includes(event.propertyName)) { if (
event.target !== container ||
!['width', 'height'].includes(event.propertyName)
) {
return; return;
} }
@ -1182,7 +1392,10 @@ const controls = {
} }
// Create the container // Create the container
const container = createElement('div', getAttributesFromSelector(this.config.selectors.controls.wrapper)); const container = createElement(
'div',
getAttributesFromSelector(this.config.selectors.controls.wrapper),
);
// Restart button // Restart button
if (this.config.controls.includes('restart')) { if (this.config.controls.includes('restart')) {
@ -1201,12 +1414,17 @@ const controls = {
// Fast forward button // Fast forward button
if (this.config.controls.includes('fast-forward')) { if (this.config.controls.includes('fast-forward')) {
container.appendChild(controls.createButton.call(this, 'fast-forward')); container.appendChild(
controls.createButton.call(this, 'fast-forward'),
);
} }
// Progress // Progress
if (this.config.controls.includes('progress')) { if (this.config.controls.includes('progress')) {
const progress = createElement('div', getAttributesFromSelector(this.config.selectors.progress)); const progress = createElement(
'div',
getAttributesFromSelector(this.config.selectors.progress),
);
// Seek range slider // Seek range slider
progress.appendChild( progress.appendChild(
@ -1240,7 +1458,9 @@ const controls = {
// Media current time display // Media current time display
if (this.config.controls.includes('current-time')) { if (this.config.controls.includes('current-time')) {
container.appendChild(controls.createTime.call(this, 'currentTime')); container.appendChild(
controls.createTime.call(this, 'currentTime'),
);
} }
// Media duration display // Media duration display
@ -1288,7 +1508,10 @@ const controls = {
} }
// Settings button / menu // Settings button / menu
if (this.config.controls.includes('settings') && !is.empty(this.config.settings)) { if (
this.config.controls.includes('settings') &&
!is.empty(this.config.settings)
) {
const control = createElement('div', { const control = createElement('div', {
class: 'plyr__menu', class: 'plyr__menu',
hidden: '', hidden: '',
@ -1330,13 +1553,20 @@ const controls = {
// TODO: bundle this with the createMenuItem helper and bindings // TODO: bundle this with the createMenuItem helper and bindings
const menuItem = createElement( const menuItem = createElement(
'button', 'button',
extend(getAttributesFromSelector(this.config.selectors.buttons.settings), { extend(
type: 'button', getAttributesFromSelector(
class: `${this.config.classNames.control} ${this.config.classNames.control}--forward`, this.config.selectors.buttons.settings,
role: 'menuitem', ),
'aria-haspopup': true, {
hidden: '', type: 'button',
}), class: `${this.config.classNames.control} ${
this.config.classNames.control
}--forward`,
role: 'menuitem',
'aria-haspopup': true,
hidden: '',
},
),
); );
// Bind menu shortcuts for keyboard users // Bind menu shortcuts for keyboard users
@ -1347,7 +1577,11 @@ const controls = {
controls.showMenuPanel.call(this, type, false); controls.showMenuPanel.call(this, type, false);
}); });
const flex = createElement('span', null, i18n.get(type, this.config)); const flex = createElement(
'span',
null,
i18n.get(type, this.config),
);
const value = createElement('span', { const value = createElement('span', {
class: this.config.classNames.menu.value, class: this.config.classNames.menu.value,
@ -1369,7 +1603,9 @@ const controls = {
// Back button // Back button
const backButton = createElement('button', { const backButton = createElement('button', {
type: 'button', type: 'button',
class: `${this.config.classNames.control} ${this.config.classNames.control}--back`, class: `${this.config.classNames.control} ${
this.config.classNames.control
}--back`,
}); });
// Visible label // Visible label
@ -1395,19 +1631,24 @@ const controls = {
); );
// Go back via keyboard // Go back via keyboard
on(pane, 'keydown', event => { on(
// We only care about <- pane,
if (event.which !== 37) { 'keydown',
return; event => {
} // We only care about <-
if (event.which !== 37) {
return;
}
// Prevent seek // Prevent seek
event.preventDefault(); event.preventDefault();
event.stopPropagation(); event.stopPropagation();
// Show the respective menu // Show the respective menu
controls.showMenuPanel.call(this, 'home', true); controls.showMenuPanel.call(this, 'home', true);
}, false); },
false,
);
// Go back via button click // Go back via button click
on(backButton, 'click', () => { on(backButton, 'click', () => {
@ -1450,18 +1691,25 @@ const controls = {
// Toggle fullscreen button // Toggle fullscreen button
if (this.config.controls.includes('fullscreen')) { if (this.config.controls.includes('fullscreen')) {
container.appendChild(controls.createButton.call(this, 'fullscreen')); container.appendChild(
controls.createButton.call(this, 'fullscreen'),
);
} }
// Larger overlaid play button // Larger overlaid play button
if (this.config.controls.includes('play-large')) { if (this.config.controls.includes('play-large')) {
this.elements.container.appendChild(controls.createButton.call(this, 'play-large')); this.elements.container.appendChild(
controls.createButton.call(this, 'play-large'),
);
} }
this.elements.controls = container; this.elements.controls = container;
if (this.isHTML5) { if (this.isHTML5) {
controls.setQualityMenu.call(this, html5.getQualityOptions.call(this)); controls.setQualityMenu.call(
this,
html5.getQualityOptions.call(this),
);
} }
controls.setSpeedMenu.call(this); controls.setSpeedMenu.call(this);
@ -1496,7 +1744,10 @@ const controls = {
}; };
let update = true; let update = true;
if (is.string(this.config.controls) || is.element(this.config.controls)) { if (
is.string(this.config.controls) ||
is.element(this.config.controls)
) {
// String or HTMLElement passed as the option // String or HTMLElement passed as the option
container = this.config.controls; container = this.config.controls;
} else if (is.function(this.config.controls)) { } else if (is.function(this.config.controls)) {
@ -1542,7 +1793,9 @@ const controls = {
// Inject to custom location // Inject to custom location
if (is.string(this.config.selectors.controls.container)) { if (is.string(this.config.selectors.controls.container)) {
target = document.querySelector(this.config.selectors.controls.container); target = document.querySelector(
this.config.selectors.controls.container,
);
} }
// Inject into the container by default // Inject into the container by default
@ -1551,7 +1804,9 @@ const controls = {
} }
// Inject controls HTML (needs to be before captions, hence "afterbegin") // Inject controls HTML (needs to be before captions, hence "afterbegin")
const insertMethod = is.element(container) ? 'insertAdjacentElement' : 'insertAdjacentHTML'; const insertMethod = is.element(container)
? 'insertAdjacentElement'
: 'insertAdjacentHTML';
target[insertMethod]('afterbegin', container); target[insertMethod]('afterbegin', container);
// Find the elements if need be // Find the elements if need be
@ -1567,7 +1822,9 @@ const controls = {
// Setup tooltips // Setup tooltips
if (this.config.tooltips.controls) { if (this.config.tooltips.controls) {
const { classNames, selectors } = this.config; const { classNames, selectors } = this.config;
const selector = `${selectors.controls.wrapper} ${selectors.labels} .${classNames.hidden}`; const selector = `${selectors.controls.wrapper} ${
selectors.labels
} .${classNames.hidden}`;
const labels = getElements.call(this, selector); const labels = getElements.call(this, selector);
Array.from(labels).forEach(label => { Array.from(labels).forEach(label => {

View File

@ -6,14 +6,7 @@ import controls from './controls';
import ui from './ui'; import ui from './ui';
import { repaint } from './utils/animation'; import { repaint } from './utils/animation';
import browser from './utils/browser'; import browser from './utils/browser';
import { import { getElement, getElements, hasClass, matches, toggleClass, toggleHidden } from './utils/elements';
getElement,
getElements,
hasClass,
matches,
toggleClass,
toggleHidden,
} from './utils/elements';
import { on, once, toggleListener, triggerEvent } from './utils/events'; import { on, once, toggleListener, triggerEvent } from './utils/events';
import is from './utils/is'; import is from './utils/is';
@ -235,7 +228,7 @@ class Listeners {
clearTimeout(this.focusTimer); clearTimeout(this.focusTimer);
// Ignore any key other than tab // Ignore any key other than tab
if (event.type === 'keydown' && event.code !== 'Tab') { if (event.type === 'keydown' && event.which !== 9) {
return; return;
} }
@ -699,18 +692,20 @@ class Listeners {
// Settings menu - keyboard toggle // Settings menu - keyboard toggle
this.bind( this.bind(
player.elements.buttons.settings, player.elements.buttons.settings,
'keydown', 'keyup',
event => { event => {
// We only care about space // We only care about space and return
if (event.which !== 32) { if (event.which !== 32 && event.which !== 13) {
return; return;
} }
// Prevent scroll // Prevent scroll
event.preventDefault(); event.preventDefault();
// Prevent playing video // Prevent playing video (Firefox)
event.stopPropagation(); if (event.which === 32) {
event.stopPropagation();
}
// Toggle menu // Toggle menu
controls.toggleMenu.call(player, event); controls.toggleMenu.call(player, event);

View File

@ -41,7 +41,7 @@
display: none; display: none;
} }
// Audio styles // Audio control
.plyr--audio .plyr__control { .plyr--audio .plyr__control {
&.plyr__tab-focus, &.plyr__tab-focus,
&:hover, &:hover,
@ -51,6 +51,21 @@
} }
} }
// Video control
.plyr--video .plyr__control {
svg {
filter: drop-shadow(0 1px 1px rgba(#000, 0.15));
}
// Hover and tab focus
&.plyr__tab-focus,
&:hover,
&[aria-expanded='true'] {
background: $plyr-video-control-bg-hover;
color: $plyr-video-control-color-hover;
}
}
// Large play button (video only) // Large play button (video only)
.plyr__control--overlaid { .plyr__control--overlaid {
background: rgba($plyr-video-control-bg-hover, 0.8); background: rgba($plyr-video-control-bg-hover, 0.8);

View File

@ -32,6 +32,14 @@
margin-left: ($plyr-control-spacing / 2); margin-left: ($plyr-control-spacing / 2);
} }
&:empty {
display: none;
~ .plyr__captions {
transform: translateY(0);
}
}
@media (min-width: $plyr-bp-sm) { @media (min-width: $plyr-bp-sm) {
> .plyr__control, > .plyr__control,
.plyr__progress, .plyr__progress,
@ -48,6 +56,14 @@
} }
} }
// Audio controls
.plyr--audio .plyr__controls {
background: $plyr-audio-controls-bg;
border-radius: inherit;
color: $plyr-audio-control-color;
padding: $plyr-control-spacing;
}
// Video controls // Video controls
.plyr--video .plyr__controls { .plyr--video .plyr__controls {
background: linear-gradient( background: linear-gradient(
@ -64,32 +80,10 @@
position: absolute; position: absolute;
right: 0; right: 0;
transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
z-index: 2; z-index: 3;
.plyr__control {
svg {
filter: drop-shadow(0 1px 1px rgba(#000, 0.15));
}
// Hover and tab focus
&.plyr__tab-focus,
&:hover,
&[aria-expanded='true'] {
background: $plyr-video-control-bg-hover;
color: $plyr-video-control-color-hover;
}
}
} }
// Audio controls // Hide video controls
.plyr--audio .plyr__controls {
background: $plyr-audio-controls-bg;
border-radius: inherit;
color: $plyr-audio-control-color;
padding: $plyr-control-spacing;
}
// Hide controls
.plyr--video.plyr--hide-controls .plyr__controls { .plyr--video.plyr--hide-controls .plyr__controls {
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
@ -109,11 +103,3 @@
.plyr--fullscreen-enabled [data-plyr='fullscreen'] { .plyr--fullscreen-enabled [data-plyr='fullscreen'] {
display: inline-block; display: inline-block;
} }
.plyr__controls:empty {
display: none;
~ .plyr__captions {
transform: translateY(0);
}
}

View File

@ -39,7 +39,8 @@
> div { > div {
overflow: hidden; overflow: hidden;
transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1); transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
} }
// Arrow // Arrow
@ -73,7 +74,8 @@
color: $plyr-menu-color; color: $plyr-menu-color;
display: flex; display: flex;
font-size: $plyr-font-size-menu; font-size: $plyr-font-size-menu;
padding: ceil($plyr-control-padding / 2) ceil($plyr-control-padding * 1.5); padding: ceil($plyr-control-padding / 2)
ceil($plyr-control-padding * 1.5);
user-select: none; user-select: none;
width: 100%; width: 100%;