mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
migrate emby-progressbar, itemrefreshindicator, progressring and slider to ES6 modules
This commit is contained in:
parent
1f8ce6e6f4
commit
61af6779e5
5 changed files with 91 additions and 69 deletions
|
@ -132,6 +132,10 @@
|
||||||
"src/controllers/dashboard/logs.js",
|
"src/controllers/dashboard/logs.js",
|
||||||
"src/controllers/user/subtitles.js",
|
"src/controllers/user/subtitles.js",
|
||||||
"src/controllers/dashboard/plugins/repositories.js",
|
"src/controllers/dashboard/plugins/repositories.js",
|
||||||
|
"src/elements/emby-progressbar/emby-progressbar.js",
|
||||||
|
"src/elements/emby-progressring/emby-progressring.js",
|
||||||
|
"src/elements/emby-itemrefreshindicator/emby-itemrefreshindicator.js",
|
||||||
|
"src/elements/emby-slider/emby-slider.js",
|
||||||
"src/plugins/bookPlayer/plugin.js",
|
"src/plugins/bookPlayer/plugin.js",
|
||||||
"src/plugins/bookPlayer/tableOfContents.js",
|
"src/plugins/bookPlayer/tableOfContents.js",
|
||||||
"src/plugins/photoPlayer/plugin.js",
|
"src/plugins/photoPlayer/plugin.js",
|
||||||
|
|
|
@ -1,16 +1,21 @@
|
||||||
define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerElement'], function (EmbyProgressRing, dom, serverNotifications, events) {
|
import EmbyProgressRing from 'emby-progressring';
|
||||||
'use strict';
|
import dom from 'dom';
|
||||||
|
import serverNotifications from 'serverNotifications';
|
||||||
|
import events from 'events';
|
||||||
|
import 'registerElement';
|
||||||
|
|
||||||
|
/* eslint-disable indent */
|
||||||
|
|
||||||
function addNotificationEvent(instance, name, handler) {
|
function addNotificationEvent(instance, name, handler) {
|
||||||
|
|
||||||
var localHandler = handler.bind(instance);
|
const localHandler = handler.bind(instance);
|
||||||
events.on(serverNotifications, name, localHandler);
|
events.on(serverNotifications, name, localHandler);
|
||||||
instance[name] = localHandler;
|
instance[name] = localHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeNotificationEvent(instance, name) {
|
function removeNotificationEvent(instance, name) {
|
||||||
|
|
||||||
var handler = instance[name];
|
const handler = instance[name];
|
||||||
if (handler) {
|
if (handler) {
|
||||||
events.off(serverNotifications, name, handler);
|
events.off(serverNotifications, name, handler);
|
||||||
instance[name] = null;
|
instance[name] = null;
|
||||||
|
@ -19,7 +24,7 @@ define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerEl
|
||||||
|
|
||||||
function onRefreshProgress(e, apiClient, info) {
|
function onRefreshProgress(e, apiClient, info) {
|
||||||
|
|
||||||
var indicator = this;
|
const indicator = this;
|
||||||
|
|
||||||
if (!indicator.itemId) {
|
if (!indicator.itemId) {
|
||||||
indicator.itemId = dom.parentWithAttribute(indicator, 'data-id').getAttribute('data-id');
|
indicator.itemId = dom.parentWithAttribute(indicator, 'data-id').getAttribute('data-id');
|
||||||
|
@ -27,7 +32,7 @@ define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerEl
|
||||||
|
|
||||||
if (info.ItemId === indicator.itemId) {
|
if (info.ItemId === indicator.itemId) {
|
||||||
|
|
||||||
var progress = parseFloat(info.Progress);
|
const progress = parseFloat(info.Progress);
|
||||||
|
|
||||||
if (progress && progress < 100) {
|
if (progress && progress < 100) {
|
||||||
this.classList.remove('hide');
|
this.classList.remove('hide');
|
||||||
|
@ -39,7 +44,7 @@ define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerEl
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var EmbyItemRefreshIndicatorPrototype = Object.create(EmbyProgressRing);
|
let EmbyItemRefreshIndicatorPrototype = Object.create(EmbyProgressRing);
|
||||||
|
|
||||||
EmbyItemRefreshIndicatorPrototype.createdCallback = function () {
|
EmbyItemRefreshIndicatorPrototype.createdCallback = function () {
|
||||||
|
|
||||||
|
@ -74,4 +79,5 @@ define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerEl
|
||||||
prototype: EmbyItemRefreshIndicatorPrototype,
|
prototype: EmbyItemRefreshIndicatorPrototype,
|
||||||
extends: 'div'
|
extends: 'div'
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
/* eslint-enable indent */
|
||||||
|
|
|
@ -1,20 +1,19 @@
|
||||||
define([], function() {
|
/* eslint-disable indent */
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var ProgressBarPrototype = Object.create(HTMLDivElement.prototype);
|
let ProgressBarPrototype = Object.create(HTMLDivElement.prototype);
|
||||||
|
|
||||||
function onAutoTimeProgress() {
|
function onAutoTimeProgress() {
|
||||||
var start = parseInt(this.getAttribute('data-starttime'));
|
const start = parseInt(this.getAttribute('data-starttime'));
|
||||||
var end = parseInt(this.getAttribute('data-endtime'));
|
const end = parseInt(this.getAttribute('data-endtime'));
|
||||||
|
|
||||||
var now = new Date().getTime();
|
const now = new Date().getTime();
|
||||||
var total = end - start;
|
const total = end - start;
|
||||||
var pct = 100 * ((now - start) / total);
|
let pct = 100 * ((now - start) / total);
|
||||||
|
|
||||||
pct = Math.min(100, pct);
|
pct = Math.min(100, pct);
|
||||||
pct = Math.max(0, pct);
|
pct = Math.max(0, pct);
|
||||||
|
|
||||||
var itemProgressBarForeground = this.querySelector('.itemProgressBarForeground');
|
const itemProgressBarForeground = this.querySelector('.itemProgressBarForeground');
|
||||||
itemProgressBarForeground.style.width = pct + '%';
|
itemProgressBarForeground.style.width = pct + '%';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,4 +38,5 @@ define([], function() {
|
||||||
prototype: ProgressBarPrototype,
|
prototype: ProgressBarPrototype,
|
||||||
extends: 'div'
|
extends: 'div'
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
/* eslint-enable indent */
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
define(['require', 'css!./emby-progressring', 'registerElement'], function (require) {
|
import require from 'require';
|
||||||
'use strict';
|
import 'css!./emby-progressring';
|
||||||
|
import 'webcomponents';
|
||||||
|
|
||||||
var EmbyProgressRing = Object.create(HTMLDivElement.prototype);
|
/* eslint-disable indent */
|
||||||
|
|
||||||
|
let EmbyProgressRing = Object.create(HTMLDivElement.prototype);
|
||||||
|
|
||||||
EmbyProgressRing.createdCallback = function () {
|
EmbyProgressRing.createdCallback = function () {
|
||||||
|
|
||||||
this.classList.add('progressring');
|
this.classList.add('progressring');
|
||||||
var instance = this;
|
const instance = this;
|
||||||
|
|
||||||
require(['text!./emby-progressring.template.html'], function (template) {
|
require(['text!./emby-progressring.template.html'], function (template) {
|
||||||
instance.innerHTML = template;
|
instance.innerHTML = template;
|
||||||
|
@ -37,7 +40,7 @@ define(['require', 'css!./emby-progressring', 'registerElement'], function (requ
|
||||||
|
|
||||||
progress = Math.floor(progress);
|
progress = Math.floor(progress);
|
||||||
|
|
||||||
var angle;
|
let angle;
|
||||||
|
|
||||||
if (progress < 25) {
|
if (progress < 25) {
|
||||||
angle = -90 + (progress / 100) * 360;
|
angle = -90 + (progress / 100) * 360;
|
||||||
|
@ -82,7 +85,7 @@ define(['require', 'css!./emby-progressring', 'registerElement'], function (requ
|
||||||
|
|
||||||
EmbyProgressRing.detachedCallback = function () {
|
EmbyProgressRing.detachedCallback = function () {
|
||||||
|
|
||||||
var observer = this.observer;
|
let observer = this.observer;
|
||||||
|
|
||||||
if (observer) {
|
if (observer) {
|
||||||
// later, you can stop observing
|
// later, you can stop observing
|
||||||
|
@ -97,5 +100,6 @@ define(['require', 'css!./emby-progressring', 'registerElement'], function (requ
|
||||||
extends: 'div'
|
extends: 'div'
|
||||||
});
|
});
|
||||||
|
|
||||||
return EmbyProgressRing;
|
export default EmbyProgressRing;
|
||||||
});
|
|
||||||
|
/* eslint-enable indent */
|
||||||
|
|
|
@ -1,15 +1,22 @@
|
||||||
define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom, layoutManager, keyboardnavigation) {
|
import browser from 'browser';
|
||||||
'use strict';
|
import dom from 'dom';
|
||||||
|
import layoutManager from 'layoutManager';
|
||||||
|
import keyboardnavigation from 'keyboardnavigation';
|
||||||
|
import 'css!./emby-slider';
|
||||||
|
import 'webcomponents';
|
||||||
|
import 'emby-input';
|
||||||
|
|
||||||
var EmbySliderPrototype = Object.create(HTMLInputElement.prototype);
|
/* eslint-disable indent */
|
||||||
|
|
||||||
var supportsValueSetOverride = false;
|
let EmbySliderPrototype = Object.create(HTMLInputElement.prototype);
|
||||||
|
|
||||||
var enableWidthWithTransform;
|
let supportsValueSetOverride = false;
|
||||||
|
|
||||||
|
let enableWidthWithTransform;
|
||||||
|
|
||||||
if (Object.getOwnPropertyDescriptor && Object.defineProperty) {
|
if (Object.getOwnPropertyDescriptor && Object.defineProperty) {
|
||||||
|
|
||||||
var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value');
|
const descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value');
|
||||||
// descriptor returning null in webos
|
// descriptor returning null in webos
|
||||||
if (descriptor && descriptor.configurable) {
|
if (descriptor && descriptor.configurable) {
|
||||||
supportsValueSetOverride = true;
|
supportsValueSetOverride = true;
|
||||||
|
@ -24,14 +31,14 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
* @return {number} slider fraction
|
* @return {number} slider fraction
|
||||||
*/
|
*/
|
||||||
function mapClientToFraction(range, clientX) {
|
function mapClientToFraction(range, clientX) {
|
||||||
var rect = range.sliderBubbleTrack.getBoundingClientRect();
|
const rect = range.sliderBubbleTrack.getBoundingClientRect();
|
||||||
|
|
||||||
var fraction = (clientX - rect.left) / rect.width;
|
let fraction = (clientX - rect.left) / rect.width;
|
||||||
|
|
||||||
// Snap to step
|
// Snap to step
|
||||||
var valueRange = range.max - range.min;
|
const valueRange = range.max - range.min;
|
||||||
if (range.step !== 'any' && valueRange !== 0) {
|
if (range.step !== 'any' && valueRange !== 0) {
|
||||||
var step = (range.step || 1) / valueRange;
|
const step = (range.step || 1) / valueRange;
|
||||||
fraction = Math.round(fraction / step) * step;
|
fraction = Math.round(fraction / step) * step;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +53,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
* @return {number} slider value
|
* @return {number} slider value
|
||||||
*/
|
*/
|
||||||
function mapFractionToValue(range, fraction) {
|
function mapFractionToValue(range, fraction) {
|
||||||
var value = (range.max - range.min) * fraction;
|
let value = (range.max - range.min) * fraction;
|
||||||
|
|
||||||
// Snap to step
|
// Snap to step
|
||||||
if (range.step !== 'any') {
|
if (range.step !== 'any') {
|
||||||
|
@ -67,8 +74,8 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
* @return {number} slider fraction
|
* @return {number} slider fraction
|
||||||
*/
|
*/
|
||||||
function mapValueToFraction(range, value) {
|
function mapValueToFraction(range, value) {
|
||||||
var valueRange = range.max - range.min;
|
const valueRange = range.max - range.min;
|
||||||
var fraction = valueRange !== 0 ? (value - range.min) / valueRange : 0;
|
const fraction = valueRange !== 0 ? (value - range.min) / valueRange : 0;
|
||||||
return Math.min(Math.max(fraction, 0), 1);
|
return Math.min(Math.max(fraction, 0), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,18 +91,18 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var range = this;
|
const range = this;
|
||||||
var value = range.value;
|
const value = range.value;
|
||||||
|
|
||||||
// put this on a callback. Doing it within the event sometimes causes the slider to get hung up and not respond
|
// put this on a callback. Doing it within the event sometimes causes the slider to get hung up and not respond
|
||||||
// Keep only one per slider frame request
|
// Keep only one per slider frame request
|
||||||
cancelAnimationFrame(range.updateValuesFrame);
|
cancelAnimationFrame(range.updateValuesFrame);
|
||||||
range.updateValuesFrame = requestAnimationFrame(function () {
|
range.updateValuesFrame = requestAnimationFrame(function () {
|
||||||
|
|
||||||
var backgroundLower = range.backgroundLower;
|
let backgroundLower = range.backgroundLower;
|
||||||
|
|
||||||
if (backgroundLower) {
|
if (backgroundLower) {
|
||||||
var fraction = (value - range.min) / (range.max - range.min);
|
let fraction = (value - range.min) / (range.max - range.min);
|
||||||
|
|
||||||
if (enableWidthWithTransform) {
|
if (enableWidthWithTransform) {
|
||||||
backgroundLower.style.transform = 'scaleX(' + (fraction) + ')';
|
backgroundLower.style.transform = 'scaleX(' + (fraction) + ')';
|
||||||
|
@ -110,10 +117,10 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
function updateBubble(range, value, bubble, bubbleText) {
|
function updateBubble(range, value, bubble, bubbleText) {
|
||||||
|
|
||||||
requestAnimationFrame(function () {
|
requestAnimationFrame(function () {
|
||||||
var bubbleTrackRect = range.sliderBubbleTrack.getBoundingClientRect();
|
const bubbleTrackRect = range.sliderBubbleTrack.getBoundingClientRect();
|
||||||
var bubbleRect = bubble.getBoundingClientRect();
|
const bubbleRect = bubble.getBoundingClientRect();
|
||||||
|
|
||||||
var bubblePos = bubbleTrackRect.width * value / 100;
|
let bubblePos = bubbleTrackRect.width * value / 100;
|
||||||
bubblePos = Math.min(Math.max(bubblePos, bubbleRect.width / 2), bubbleTrackRect.width - bubbleRect.width / 2);
|
bubblePos = Math.min(Math.max(bubblePos, bubbleRect.width / 2), bubbleTrackRect.width - bubbleRect.width / 2);
|
||||||
|
|
||||||
bubble.style.left = bubblePos + 'px';
|
bubble.style.left = bubblePos + 'px';
|
||||||
|
@ -158,10 +165,10 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
this.classList.add('show-focus');
|
this.classList.add('show-focus');
|
||||||
}
|
}
|
||||||
|
|
||||||
var containerElement = this.parentNode;
|
const containerElement = this.parentNode;
|
||||||
containerElement.classList.add('mdl-slider-container');
|
containerElement.classList.add('mdl-slider-container');
|
||||||
|
|
||||||
var htmlToInsert = '';
|
let htmlToInsert = '';
|
||||||
|
|
||||||
htmlToInsert += '<div class="mdl-slider-background-flex-container">';
|
htmlToInsert += '<div class="mdl-slider-background-flex-container">';
|
||||||
htmlToInsert += '<div class="mdl-slider-background-flex">';
|
htmlToInsert += '<div class="mdl-slider-background-flex">';
|
||||||
|
@ -187,9 +194,9 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
this.sliderBubbleTrack = containerElement.querySelector('.sliderBubbleTrack');
|
this.sliderBubbleTrack = containerElement.querySelector('.sliderBubbleTrack');
|
||||||
this.backgroundLower = containerElement.querySelector('.mdl-slider-background-lower');
|
this.backgroundLower = containerElement.querySelector('.mdl-slider-background-lower');
|
||||||
this.backgroundUpper = containerElement.querySelector('.mdl-slider-background-upper');
|
this.backgroundUpper = containerElement.querySelector('.mdl-slider-background-upper');
|
||||||
var sliderBubble = containerElement.querySelector('.sliderBubble');
|
const sliderBubble = containerElement.querySelector('.sliderBubble');
|
||||||
|
|
||||||
var hasHideClass = sliderBubble.classList.contains('hide');
|
let hasHideClass = sliderBubble.classList.contains('hide');
|
||||||
|
|
||||||
dom.addEventListener(this, 'input', function (e) {
|
dom.addEventListener(this, 'input', function (e) {
|
||||||
this.dragging = true;
|
this.dragging = true;
|
||||||
|
@ -198,7 +205,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
updateValues.call(this);
|
updateValues.call(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
var bubbleValue = mapValueToFraction(this, this.value) * 100;
|
const bubbleValue = mapValueToFraction(this, this.value) * 100;
|
||||||
updateBubble(this, bubbleValue, sliderBubble);
|
updateBubble(this, bubbleValue, sliderBubble);
|
||||||
|
|
||||||
if (hasHideClass) {
|
if (hasHideClass) {
|
||||||
|
@ -223,10 +230,11 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
passive: true
|
passive: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* eslint-disable-next-line compat/compat */
|
||||||
dom.addEventListener(this, (window.PointerEvent ? 'pointermove' : 'mousemove'), function (e) {
|
dom.addEventListener(this, (window.PointerEvent ? 'pointermove' : 'mousemove'), function (e) {
|
||||||
|
|
||||||
if (!this.dragging) {
|
if (!this.dragging) {
|
||||||
var bubbleValue = mapClientToFraction(this, e.clientX) * 100;
|
const bubbleValue = mapClientToFraction(this, e.clientX) * 100;
|
||||||
|
|
||||||
updateBubble(this, bubbleValue, sliderBubble);
|
updateBubble(this, bubbleValue, sliderBubble);
|
||||||
|
|
||||||
|
@ -240,6 +248,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
passive: true
|
passive: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* eslint-disable-next-line compat/compat */
|
||||||
dom.addEventListener(this, (window.PointerEvent ? 'pointerleave' : 'mouseleave'), function () {
|
dom.addEventListener(this, (window.PointerEvent ? 'pointerleave' : 'mouseleave'), function () {
|
||||||
sliderBubble.classList.add('hide');
|
sliderBubble.classList.add('hide');
|
||||||
hasHideClass = true;
|
hasHideClass = true;
|
||||||
|
@ -256,7 +265,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
this.touched = true;
|
this.touched = true;
|
||||||
|
|
||||||
var fraction = mapClientToFraction(this, e.targetTouches[0].clientX);
|
const fraction = mapClientToFraction(this, e.targetTouches[0].clientX);
|
||||||
this.value = mapFractionToValue(this, fraction);
|
this.value = mapFractionToValue(this, fraction);
|
||||||
|
|
||||||
this.dispatchEvent(new Event('input', {
|
this.dispatchEvent(new Event('input', {
|
||||||
|
@ -276,7 +285,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var fraction = mapClientToFraction(this, e.targetTouches[0].clientX);
|
const fraction = mapClientToFraction(this, e.targetTouches[0].clientX);
|
||||||
this.value = mapFractionToValue(this, fraction);
|
this.value = mapFractionToValue(this, fraction);
|
||||||
|
|
||||||
this.dispatchEvent(new Event('input', {
|
this.dispatchEvent(new Event('input', {
|
||||||
|
@ -288,7 +297,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
});
|
});
|
||||||
|
|
||||||
dom.addEventListener(this, 'touchend', function (e) {
|
dom.addEventListener(this, 'touchend', function (e) {
|
||||||
var range = this;
|
const range = this;
|
||||||
|
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
range.touched = false;
|
range.touched = false;
|
||||||
|
@ -314,12 +323,12 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
* Keyboard dragging timeout.
|
* Keyboard dragging timeout.
|
||||||
* After this delay "change" event will be fired.
|
* After this delay "change" event will be fired.
|
||||||
*/
|
*/
|
||||||
var KeyboardDraggingTimeout = 1000;
|
const KeyboardDraggingTimeout = 1000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Keyboard dragging timer.
|
* Keyboard dragging timer.
|
||||||
*/
|
*/
|
||||||
var keyboardDraggingTimer;
|
let keyboardDraggingTimer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start keyboard dragging.
|
* Start keyboard dragging.
|
||||||
|
@ -346,7 +355,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
elem.keyboardDragging = false;
|
elem.keyboardDragging = false;
|
||||||
|
|
||||||
var event = new Event('change', {
|
const event = new Event('change', {
|
||||||
bubbles: true,
|
bubbles: true,
|
||||||
cancelable: false
|
cancelable: false
|
||||||
});
|
});
|
||||||
|
@ -364,7 +373,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
elem.value = Math.max(elem.min, Math.min(elem.max, parseFloat(elem.value) + delta));
|
elem.value = Math.max(elem.min, Math.min(elem.max, parseFloat(elem.value) + delta));
|
||||||
|
|
||||||
var event = new Event('input', {
|
const event = new Event('input', {
|
||||||
bubbles: true,
|
bubbles: true,
|
||||||
cancelable: false
|
cancelable: false
|
||||||
});
|
});
|
||||||
|
@ -414,10 +423,10 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
function setRange(elem, startPercent, endPercent) {
|
function setRange(elem, startPercent, endPercent) {
|
||||||
|
|
||||||
var style = elem.style;
|
const style = elem.style;
|
||||||
style.left = Math.max(startPercent, 0) + '%';
|
style.left = Math.max(startPercent, 0) + '%';
|
||||||
|
|
||||||
var widthPercent = endPercent - startPercent;
|
const widthPercent = endPercent - startPercent;
|
||||||
style.width = Math.max(Math.min(widthPercent, 100), 0) + '%';
|
style.width = Math.max(Math.min(widthPercent, 100), 0) + '%';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -438,7 +447,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
EmbySliderPrototype.setBufferedRanges = function (ranges, runtime, position) {
|
EmbySliderPrototype.setBufferedRanges = function (ranges, runtime, position) {
|
||||||
|
|
||||||
var elem = this.backgroundUpper;
|
const elem = this.backgroundUpper;
|
||||||
if (!elem) {
|
if (!elem) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -449,9 +458,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
position = (position / runtime) * 100;
|
position = (position / runtime) * 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var i = 0, length = ranges.length; i < length; i++) {
|
for (const range in ranges) {
|
||||||
|
|
||||||
var range = ranges[i];
|
|
||||||
|
|
||||||
if (position != null) {
|
if (position != null) {
|
||||||
if (position >= range.end) {
|
if (position >= range.end) {
|
||||||
|
@ -468,7 +475,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
EmbySliderPrototype.setIsClear = function (isClear) {
|
EmbySliderPrototype.setIsClear = function (isClear) {
|
||||||
|
|
||||||
var backgroundLower = this.backgroundLower;
|
const backgroundLower = this.backgroundLower;
|
||||||
if (backgroundLower) {
|
if (backgroundLower) {
|
||||||
if (isClear) {
|
if (isClear) {
|
||||||
backgroundLower.classList.add('mdl-slider-background-lower-clear');
|
backgroundLower.classList.add('mdl-slider-background-lower-clear');
|
||||||
|
@ -479,7 +486,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
};
|
};
|
||||||
|
|
||||||
function startInterval(range) {
|
function startInterval(range) {
|
||||||
var interval = range.interval;
|
const interval = range.interval;
|
||||||
if (interval) {
|
if (interval) {
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
}
|
}
|
||||||
|
@ -488,7 +495,7 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
|
|
||||||
EmbySliderPrototype.detachedCallback = function () {
|
EmbySliderPrototype.detachedCallback = function () {
|
||||||
|
|
||||||
var interval = this.interval;
|
const interval = this.interval;
|
||||||
if (interval) {
|
if (interval) {
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
}
|
}
|
||||||
|
@ -501,4 +508,5 @@ define(['browser', 'dom', 'layoutManager', 'keyboardnavigation', 'css!./emby-sli
|
||||||
prototype: EmbySliderPrototype,
|
prototype: EmbySliderPrototype,
|
||||||
extends: 'input'
|
extends: 'input'
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
/* eslint-enable indent */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue