Make import paths ES6-compatible

This commit is contained in:
MrTimscampi 2020-08-14 08:46:34 +02:00 committed by vitorsemeano
parent 1a635e2f81
commit bfb8c7c1f6
245 changed files with 2073 additions and 1995 deletions

View file

@ -1,13 +1,14 @@
import globalize from 'globalize';
import serverNotifications from 'serverNotifications';
import loading from 'loading';
import dom from 'dom';
import recordingHelper from 'recordingHelper';
import events from 'events';
import 'paper-icon-button-light';
import 'emby-button';
import 'css!./recordingfields';
import 'flexStyles';
import globalize from '../../scripts/globalize';
import connectionManager from 'jellyfin-apiclient';
import serverNotifications from '../../scripts/serverNotifications';
import loading from '../loading/loading';
import dom from '../../scripts/dom';
import recordingHelper from './recordinghelper';
import events from 'jellyfin-apiclient';
import '../../elements/emby-button/emby-button';
import '../../elements/emby-button/paper-icon-button-light';
import './recordingfields.css';
import '../../assets/css/flexstyles.css';
/*eslint prefer-const: "error"*/
@ -117,7 +118,7 @@ class RecordingEditor {
embed() {
const self = this;
return new Promise(function (resolve, reject) {
import('text!./recordingfields.template.html').then(({default: template}) => {
import('./recordingfields.template.html').then(({default: template}) => {
const options = self.options;
const context = options.parent;
context.innerHTML = globalize.translateHtml(template, 'core');
@ -162,7 +163,7 @@ function onManageRecordingClick(e) {
}
const self = this;
import('recordingEditor').then(({default: recordingEditor}) => {
import('./recordingeditor').then((recordingEditor) => {
recordingEditor.show(self.TimerId, options.serverId, {
enableCancel: false
}).then(function () {
@ -180,7 +181,7 @@ function onManageSeriesRecordingClick(e) {
const self = this;
import('seriesRecordingEditor').then(({default: seriesRecordingEditor}) => {
import('./seriesrecordingeditor').then((seriesRecordingEditor) => {
seriesRecordingEditor.show(self.SeriesTimerId, options.serverId, {
enableCancel: false
@ -225,7 +226,7 @@ function onRecordChange(e) {
}
function sendToast(msg) {
import('toast').then(({default: toast}) => {
import('../toast/toast').then((toast) => {
toast(msg);
});
}