mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
91 lines
2.3 KiB
JavaScript
91 lines
2.3 KiB
JavaScript
define(['jQuery'], function ($) {
|
|
'use strict';
|
|
|
|
function reload(page, providerId) {
|
|
|
|
page.querySelector('.txtDevicePath').value = '';
|
|
|
|
if (providerId) {
|
|
ApiClient.getNamedConfiguration("livetv").then(function (config) {
|
|
|
|
var info = config.TunerHosts.filter(function (i) {
|
|
return i.Id == providerId;
|
|
})[0];
|
|
|
|
page.querySelector('.txtDevicePath').value = info.Url || '';
|
|
});
|
|
}
|
|
}
|
|
|
|
function submitForm(page) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var info = {
|
|
Type: 'm3u',
|
|
Url: page.querySelector('.txtDevicePath').value
|
|
};
|
|
|
|
var id = getParameterByName('id');
|
|
|
|
if (id) {
|
|
info.Id = id;
|
|
}
|
|
|
|
ApiClient.ajax({
|
|
type: "POST",
|
|
url: ApiClient.getUrl('LiveTv/TunerHosts'),
|
|
data: JSON.stringify(info),
|
|
contentType: "application/json"
|
|
|
|
}).then(function () {
|
|
|
|
Dashboard.processServerConfigurationUpdateResult();
|
|
Dashboard.navigate('livetvstatus.html');
|
|
|
|
}, function () {
|
|
Dashboard.hideLoadingMsg();
|
|
Dashboard.alert({
|
|
message: Globalize.translate('ErrorSavingTvProvider')
|
|
});
|
|
});
|
|
|
|
}
|
|
|
|
$(document).on('pageinit', "#liveTvTunerProviderM3UPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('form', page).on('submit', function () {
|
|
submitForm(page);
|
|
return false;
|
|
});
|
|
|
|
$('#btnSelectPath', page).on("click.selectDirectory", function () {
|
|
|
|
require(['directorybrowser'], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
includeFiles: true,
|
|
callback: function (path) {
|
|
if (path) {
|
|
$('.txtDevicePath', page).val(path);
|
|
}
|
|
picker.close();
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
}).on('pageshow', "#liveTvTunerProviderM3UPage", function () {
|
|
|
|
var providerId = getParameterByName('id');
|
|
var page = this;
|
|
reload(page, providerId);
|
|
});
|
|
|
|
}); |