(function ($, document, window) { var query = { StartIndex: 0, Limit: 50 }; var currentResult; function showStatusMessage(id) { var item = currentResult.Items.filter(function (i) { return i.Id == id; })[0]; Dashboard.alert({ title: getStatusText(item, false), message: item.StatusMessage }); } function deleteOriginalFile(page, id) { var item = currentResult.Items.filter(function (i) { return i.Id == id; })[0]; var message = 'The following file will be deleted:

' + item.OriginalPath + '

Are you sure you wish to proceed?

'; Dashboard.confirm(message, "Delete File", function (confirmResult) { if (confirmResult) { Dashboard.showLoadingMsg(); ApiClient.deleteOriginalFileFromOrganizationResult(id).done(function () { Dashboard.hideLoadingMsg(); reloadItems(page); }); } }); } function organizeFile(page, id) { var item = currentResult.Items.filter(function (i) { return i.Id == id; })[0]; var message = 'The following file will be moved from:

' + item.OriginalPath + '

to:

' + item.TargetPath + '

Are you sure you wish to proceed?

'; Dashboard.confirm(message, "Organize File", function (confirmResult) { if (confirmResult) { Dashboard.showLoadingMsg(); ApiClient.performOrganization(id).done(function () { Dashboard.hideLoadingMsg(); reloadItems(page); }); } }); } function reloadItems(page) { Dashboard.showLoadingMsg(); ApiClient.getFileOrganizationResults(query).done(function (result) { currentResult = result; renderResults(page, result); Dashboard.hideLoadingMsg(); }); } function getStatusText(item, enhance) { var status = item.Status; var color = null; if (status == 'SkippedTrial') { status = 'Trial'; } else if (status == 'SkippedExisting') { status = 'Skipped'; } else if (status == 'Failure') { color = '#cc0000'; status = 'Failed'; } if (status == 'Success') { color = 'green'; status = 'Success'; } if (enhance && enhance) { if (item.StatusMessage) { return '' + status + ''; } else { return '' + status + ''; } } return status; } function renderResults(page, result) { var rows = result.Items.map(function (item) { var html = ''; html += ''; html += ''; var date = parseISO8601Date(item.Date, { toLocal: true }); html += date.toLocaleDateString(); html += ''; html += ''; html += item.OriginalFileName || ''; html += ''; html += ''; html += item.TargetPath || ''; html += ''; html += ''; html += getStatusText(item, true); html += ''; html += ''; if (item.Status == 'SkippedTrial' || item.Status == 'SkippedExisting') { html += ''; } else { html += ''; } if (item.Status != 'Success') { html += ''; } html += ''; html += ''; return html; }).join(''); var elem = $('.resultBody', page).html(rows).parents('.tblOrganizationResults').table("refresh").trigger('create'); $('.btnShowStatusMessage', elem).on('click', function () { var id = this.getAttribute('data-resultid'); showStatusMessage(id); }); $('.btnProcessResult', elem).on('click', function () { var id = this.getAttribute('data-resultid'); organizeFile(page, id); }); $('.btnDeleteResult', elem).on('click', function () { var id = this.getAttribute('data-resultid'); deleteOriginalFile(page, id); }); var pagingHtml = LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, false, [], false); $('.listTopPaging', page).html(pagingHtml).trigger('create'); if (result.TotalRecordCount > query.Limit && result.TotalRecordCount > 50) { $('.listBottomPaging', page).html(pagingHtml).trigger('create'); } else { $('.listBottomPaging', page).empty(); } $('.selectPage', page).on('change', function () { query.StartIndex = (parseInt(this.value) - 1) * query.Limit; reloadItems(page); }); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; reloadItems(page); }); $('.btnPreviousPage', page).on('click', function () { query.StartIndex -= query.Limit; reloadItems(page); }); } $(document).on('pageshow', "#libraryFileOrganizerLogPage", function () { var page = this; reloadItems(page); }).on('pagehide', "#libraryFileOrganizerLogPage", function () { currentResult = null; }); })(jQuery, document, window);