1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js

172 lines
5.6 KiB
JavaScript
Raw Normal View History

2016-10-21 00:28:32 -04:00
define(['browser', 'dom', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom) {
2016-10-06 00:28:10 -04:00
'use strict';
2016-06-13 15:02:48 -04:00
var EmbySliderPrototype = Object.create(HTMLInputElement.prototype);
var supportsNativeProgressStyle = browser.firefox || browser.edge || browser.msie;
var supportsValueSetOverride = false;
if (Object.getOwnPropertyDescriptor && Object.defineProperty) {
var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value');
// descriptor returning null in webos
if (descriptor && descriptor.configurable) {
supportsValueSetOverride = true;
}
}
function updateValues(range, backgroundLower, backgroundUpper) {
2016-07-06 13:44:44 -04:00
var value = range.value;
requestAnimationFrame(function () {
2016-06-13 15:02:48 -04:00
2016-07-06 13:44:44 -04:00
if (backgroundLower) {
var fraction = (value - range.min) / (range.max - range.min);
2016-11-27 00:00:20 -05:00
if (browser.noFlex) {
backgroundLower.style['-webkit-flex'] = fraction;
backgroundUpper.style['-webkit-flex'] = 1 - fraction;
backgroundLower.style['-webkit-box-flex'] = fraction;
backgroundUpper.style['-webkit-box-flex'] = 1 - fraction;
}
2016-07-06 13:44:44 -04:00
backgroundLower.style.flex = fraction;
backgroundUpper.style.flex = 1 - fraction;
}
});
2016-06-13 15:02:48 -04:00
}
2016-11-05 13:39:12 -04:00
function updateBubble(range, value, bubble, bubbleText) {
2016-07-06 13:44:44 -04:00
2016-06-14 02:40:21 -04:00
bubble.style.left = (value - 1) + '%';
if (range.getBubbleText) {
value = range.getBubbleText(value);
}
2016-11-05 13:39:12 -04:00
bubbleText.innerHTML = value;
2016-06-14 02:40:21 -04:00
}
2016-06-13 15:02:48 -04:00
EmbySliderPrototype.attachedCallback = function () {
2016-10-06 00:28:10 -04:00
if (this.getAttribute('data-embycheckbox') === 'true') {
2016-06-13 15:02:48 -04:00
return;
}
this.setAttribute('data-embycheckbox', 'true');
this.classList.add('mdl-slider');
this.classList.add('mdl-js-slider');
2016-11-27 14:36:56 -05:00
if (browser.noFlex) {
2016-11-30 14:50:39 -05:00
this.classList.add('slider-no-webkit-thumb');
2016-11-27 14:36:56 -05:00
}
2016-06-13 15:02:48 -04:00
var containerElement = this.parentNode;
containerElement.classList.add('mdl-slider__container');
2016-06-14 02:40:21 -04:00
var htmlToInsert = '';
2016-06-13 15:02:48 -04:00
if (!supportsNativeProgressStyle) {
2016-06-14 02:40:21 -04:00
htmlToInsert += '<div class="mdl-slider__background-flex"><div class="mdl-slider__background-lower"></div><div class="mdl-slider__background-upper"></div></div>';
2016-06-13 15:02:48 -04:00
}
2016-11-05 13:39:12 -04:00
htmlToInsert += '<div class="sliderBubble hide"><h1 class="sliderBubbleText"></h1></div>';
2016-06-14 02:40:21 -04:00
containerElement.insertAdjacentHTML('beforeend', htmlToInsert);
2016-06-13 15:02:48 -04:00
var backgroundLower = containerElement.querySelector('.mdl-slider__background-lower');
var backgroundUpper = containerElement.querySelector('.mdl-slider__background-upper');
2016-06-14 02:40:21 -04:00
var sliderBubble = containerElement.querySelector('.sliderBubble');
2016-11-05 13:39:12 -04:00
var sliderBubbleText = containerElement.querySelector('.sliderBubbleText');
2016-06-13 15:02:48 -04:00
2016-07-06 13:44:44 -04:00
var hasHideClass = sliderBubble.classList.contains('hide');
2016-10-21 00:28:32 -04:00
dom.addEventListener(this, 'input', function (e) {
2016-06-13 15:02:48 -04:00
this.dragging = true;
2016-10-27 13:29:40 -04:00
2016-11-05 13:39:12 -04:00
updateBubble(this, this.value, sliderBubble, sliderBubbleText);
2016-10-27 13:29:40 -04:00
if (hasHideClass) {
sliderBubble.classList.remove('hide');
hasHideClass = false;
}
2016-10-21 00:28:32 -04:00
}, {
passive: true
2016-10-09 00:58:57 -04:00
});
2016-10-21 00:28:32 -04:00
dom.addEventListener(this, 'change', function () {
2016-10-09 00:58:57 -04:00
this.dragging = false;
updateValues(this, backgroundLower, backgroundUpper);
2016-10-27 13:29:40 -04:00
sliderBubble.classList.add('hide');
hasHideClass = true;
2016-10-21 00:28:32 -04:00
}, {
passive: true
2016-10-09 00:58:57 -04:00
});
2016-10-21 00:28:32 -04:00
// In firefox this feature disrupts the ability to move the slider
if (!browser.firefox) {
dom.addEventListener(this, 'mousemove', function (e) {
2016-10-27 13:29:40 -04:00
if (!this.dragging) {
var rect = this.getBoundingClientRect();
var clientX = e.clientX;
var bubbleValue = (clientX - rect.left) / rect.width;
bubbleValue *= 100;
2016-11-05 13:39:12 -04:00
updateBubble(this, Math.round(bubbleValue), sliderBubble, sliderBubbleText);
2016-10-27 13:29:40 -04:00
if (hasHideClass) {
sliderBubble.classList.remove('hide');
hasHideClass = false;
}
2016-10-21 00:28:32 -04:00
}
2016-10-27 13:29:40 -04:00
2016-10-21 00:28:32 -04:00
}, {
passive: true
});
dom.addEventListener(this, 'mouseleave', function () {
sliderBubble.classList.add('hide');
hasHideClass = true;
}, {
passive: true
});
}
2016-06-13 15:02:48 -04:00
if (!supportsNativeProgressStyle) {
if (supportsValueSetOverride) {
this.addEventListener('valueset', function () {
updateValues(this, backgroundLower, backgroundUpper);
});
} else {
startInterval(this, backgroundLower, backgroundUpper);
}
}
};
function startInterval(range, backgroundLower, backgroundUpper) {
var interval = range.interval;
if (interval) {
clearInterval(interval);
}
range.interval = setInterval(function () {
updateValues(range, backgroundLower, backgroundUpper);
}, 100);
}
EmbySliderPrototype.detachedCallback = function () {
var interval = this.interval;
if (interval) {
clearInterval(interval);
}
this.interval = null;
};
document.registerElement('emby-slider', {
prototype: EmbySliderPrototype,
extends: 'input'
});
});