jellyfin-web/dashboard-ui/scripts/directorybrowser.js

232 lines
7.4 KiB
JavaScript
Raw Normal View History

(function (window, document, $) {
function refreshDirectoryBrowser(page, path, fileOptions) {
2013-09-06 13:25:03 -07:00
Dashboard.showLoadingMsg();
2013-09-06 13:25:03 -07:00
if (path) {
$('.networkHeadline').hide();
} else {
$('.networkHeadline').show();
}
var promise;
var parentPathPromise = null;
2013-09-06 13:25:03 -07:00
if (path === "Network") {
promise = ApiClient.getNetworkDevices();
}
else if (path) {
promise = ApiClient.getDirectoryContents(path, fileOptions);
parentPathPromise = ApiClient.getParentPath(path);
} else {
promise = ApiClient.getDrives();
}
if (!parentPathPromise) {
parentPathPromise = $.Deferred();
parentPathPromise.resolveWith(null, []);
parentPathPromise = parentPathPromise.promise();
}
$.when(promise, parentPathPromise).done(function (response1, response2) {
var folders = response1[0];
var parentPath = response2 && response2.length ? response2[0] || '' : '';
$('#txtDirectoryPickerPath', page).val(path || "");
var html = '';
if (path) {
html += '<li><a class="lnkPath lnkDirectory" data-path="' + parentPath + '" href="#">..</a></li>';
}
for (var i = 0, length = folders.length; i < length; i++) {
var folder = folders[i];
var cssClass = folder.Type == "File" ? "lnkPath lnkFile" : "lnkPath lnkDirectory";
html += '<li><a class="' + cssClass + '" data-type="' + folder.Type + '" data-path="' + folder.Path + '" href="#">' + folder.Name + '</a></li>';
}
2013-09-06 13:25:03 -07:00
if (!path) {
2014-06-24 14:45:21 -07:00
html += '<li><a class="lnkPath lnkDirectory" data-path="Network" href="#">' + Globalize.translate('ButtonNetwork') + '</a></li>';
2013-09-06 13:25:03 -07:00
}
$('#ulDirectoryPickerList', page).html(html).listview('refresh');
Dashboard.hideLoadingMsg();
}).fail(function () {
$('#txtDirectoryPickerPath', page).val("");
$('#ulDirectoryPickerList', page).html('').listview('refresh');
Dashboard.hideLoadingMsg();
});
}
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
var systemInfo;
function getSystemInfo() {
2015-07-27 09:21:18 -07:00
var deferred = DeferredBuilder.Deferred();
2015-07-27 09:21:18 -07:00
if (systemInfo) {
deferred.resolveWith(null, [systemInfo]);
} else {
ApiClient.getPublicSystemInfo().done(function (info) {
2015-07-27 09:21:18 -07:00
systemInfo = info;
deferred.resolveWith(null, [systemInfo]);
});
}
2015-07-27 09:21:18 -07:00
return deferred.promise();
}
2015-07-27 09:21:18 -07:00
function show(directoryBrowser, page, options, systemInfo) {
2015-07-27 09:21:18 -07:00
options = options || {};
2015-07-27 09:21:18 -07:00
var fileOptions = {
includeDirectories: true
};
if (options.includeDirectories != null) {
fileOptions.includeDirectories = options.includeDirectories;
}
2015-07-27 09:21:18 -07:00
if (options.includeFiles != null) {
fileOptions.includeFiles = options.includeFiles;
}
2015-07-27 09:21:18 -07:00
options.header = options.header || Globalize.translate('HeaderSelectPath');
options.instruction = options.instruction || "";
2015-07-27 09:21:18 -07:00
var html = '<div data-role="popup" id="popupDirectoryPicker" class="popup" style="min-width:65%;">';
2015-07-27 09:21:18 -07:00
html += '<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">';
html += '<h3>' + options.header + '</h3>';
html += '</div>';
2015-07-27 09:21:18 -07:00
html += '<div data-role="content" class="ui-content">';
html += '<form>';
2014-06-24 14:45:21 -07:00
2015-07-27 09:21:18 -07:00
var instruction = options.instruction ? options.instruction + '<br/><br/>' : '';
2014-01-29 22:20:18 -07:00
2015-07-27 09:21:18 -07:00
html += '<p class="directoryPickerHeadline">';
html += instruction;
html += Globalize.translate('MessageDirectoryPickerInstruction')
.replace('{0}', '<b>\\\\server</b>')
.replace('{1}', '<b>\\\\192.168.1.101</b>');
2015-07-27 09:21:18 -07:00
if (systemInfo.OperatingSystem.toLowerCase() == 'bsd') {
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
html += '<br/>';
html += '<br/>';
html += Globalize.translate('MessageDirectoryPickerBSDInstruction');
html += '<br/>';
html += '<a href="http://doc.freenas.org/9.3/freenas_jails.html#add-storage" target="_blank">' + Globalize.translate('ButtonMoreInformation') + '</a>';
}
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
html += '</p>';
2015-07-27 09:21:18 -07:00
html += '<div style="margin:20px 0 0;">';
html += '<label for="txtDirectoryPickerPath" class="lblDirectoryPickerPath">' + Globalize.translate('LabelCurrentPath') + '</label>';
2015-09-05 21:53:37 -07:00
html += '<div><input id="txtDirectoryPickerPath" name="txtDirectoryPickerPath" type="text" required="required" style="font-weight:bold;width:82%;display:inline-block;" />';
2015-09-06 12:09:36 -07:00
html += '<paper-icon-button icon="refresh" class="btnRefreshDirectories" title="' + Globalize.translate('ButtonRefresh') + '"></paper-icon-button>';
2015-07-27 09:21:18 -07:00
html += '</div>';
2015-09-05 21:53:37 -07:00
html += '</div>';
2015-07-27 09:21:18 -07:00
html += '<div style="height: 180px; overflow-y: auto;">';
html += '<ul id="ulDirectoryPickerList" data-role="listview" data-inset="true" data-auto-enhanced="false"></ul>';
2015-07-27 09:21:18 -07:00
html += '</div>';
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
html += '<p>';
html += '<button type="submit" data-theme="b" data-icon="check" data-mini="true">' + Globalize.translate('ButtonOk') + '</button>';
html += '<button type="button" data-icon="delete" onclick="$(this).parents(\'.popup\').popup(\'close\');" data-mini="true">' + Globalize.translate('ButtonCancel') + '</button>';
html += '</p>';
html += '</form>';
html += '</div>';
html += '</div>';
2015-07-27 09:21:18 -07:00
$(page).append(html);
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
var popup = $('#popupDirectoryPicker').popup().trigger('create').on("popupafteropen", function () {
2015-07-27 09:21:18 -07:00
$('#popupDirectoryPicker input:first', this).focus();
2015-07-27 09:21:18 -07:00
}).popup("open").on("popupafterclose", function () {
2015-07-27 09:21:18 -07:00
$('form', this).off("submit");
2015-07-27 09:21:18 -07:00
$(this).off("click").off("change").off("popupafterclose").remove();
2013-09-06 13:25:03 -07:00
2015-07-27 09:21:18 -07:00
}).on("click", ".lnkPath", function () {
2015-07-27 09:21:18 -07:00
var path = this.getAttribute('data-path');
2015-07-27 09:21:18 -07:00
if ($(this).hasClass('lnkFile')) {
$('#txtDirectoryPickerPath', page).val(path);
} else {
refreshDirectoryBrowser(page, path, fileOptions);
2015-07-27 09:21:18 -07:00
}
2015-07-27 09:21:18 -07:00
}).on("click", ".btnRefreshDirectories", function () {
2015-07-27 09:21:18 -07:00
var path = $('#txtDirectoryPickerPath', page).val();
2015-07-27 09:21:18 -07:00
refreshDirectoryBrowser(page, path, fileOptions);
}).on("change", "#txtDirectoryPickerPath", function () {
refreshDirectoryBrowser(page, this.value, fileOptions);
});
var txtCurrentPath = $('#txtDirectoryPickerPath', popup);
if (options.path) {
txtCurrentPath.val(options.path);
}
$('form', popup).on('submit', function () {
if (options.callback) {
options.callback($('#txtDirectoryPickerPath', this).val());
}
2015-07-27 09:21:18 -07:00
return false;
});
2015-07-27 09:21:18 -07:00
refreshDirectoryBrowser(page, txtCurrentPath.val());
}
2015-07-27 09:21:18 -07:00
window.DirectoryBrowser = function (page) {
2015-07-27 09:21:18 -07:00
var self = this;
self.show = function (options) {
2015-07-27 09:21:18 -07:00
getSystemInfo().done(function (systemInfo) {
2015-08-31 21:15:10 -07:00
require(['jqmpopup'], function() {
show(self, page, options, systemInfo);
});
2015-07-27 09:21:18 -07:00
});
};
2013-09-06 13:25:03 -07:00
self.close = function () {
$('#popupDirectoryPicker', page).popup("close");
};
};
})(window, document, jQuery);