1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Migration of toast and upnextdialog to ES6 modules

This commit is contained in:
Cameron 2020-07-27 10:26:09 +01:00
parent 454b81a037
commit b6dfeb59fc
3 changed files with 60 additions and 48 deletions

View file

@ -1,42 +1,40 @@
define(['css!./toast'], function () {
'use strict';
import 'css!./toast';
function remove(elem) {
function remove(elem) {
setTimeout(function () {
elem.parentNode.removeChild(elem);
}, 300);
setTimeout(function () {
elem.parentNode.removeChild(elem);
}, 300);
}
function animateRemove(elem) {
setTimeout(function () {
elem.classList.remove('toastVisible');
remove(elem);
}, 3300);
}
export default function (options) {
if (typeof options === 'string') {
options = {
text: options
};
}
function animateRemove(elem) {
var elem = document.createElement('div');
elem.classList.add('toast');
elem.innerHTML = options.text;
setTimeout(function () {
document.body.appendChild(elem);
elem.classList.remove('toastVisible');
remove(elem);
setTimeout(function () {
elem.classList.add('toastVisible');
}, 3300);
}
animateRemove(elem);
return function (options) {
if (typeof options === 'string') {
options = {
text: options
};
}
var elem = document.createElement('div');
elem.classList.add('toast');
elem.innerHTML = options.text;
document.body.appendChild(elem);
setTimeout(function () {
elem.classList.add('toastVisible');
animateRemove(elem);
}, 300);
};
});
}, 300);
}