define(['dialogHelper', 'loading', 'emby-input', 'emby-checkbox', 'paper-icon-button-light'], function (dialogHelper, loading) {
var currentItem;
var currentItemType;
var currentResolve;
var currentReject;
var hasChanges = false;
var currentSearchResult;
function searchForIdentificationResults(page) {
var lookupInfo = {
ProviderIds: {}
};
var i, length;
var identifyField = page.querySelectorAll('.identifyField');
for (i = 0, length = identifyField.length; i < length; i++) {
var value = identifyField[i].value;
if (value) {
if (identifyField[i].type == 'number') {
value = parseInt(value);
}
lookupInfo[identifyField[i].getAttribute('data-lookup')] = value;
}
}
var hasId = false;
var txtLookupId = page.querySelectorAll('.txtLookupId');
for (i = 0, length = txtLookupId.length; i < length; i++) {
var value = txtLookupId[i].value;
if (value) {
hasId = true;
}
lookupInfo.ProviderIds[txtLookupId[i].getAttribute('data-providerkey')] = value;
}
if (!hasId && !lookupInfo.Name) {
require(['toast'], function (toast) {
toast(Globalize.translate('MessagePleaseEnterNameOrId'));
});
return;
}
if (currentItem && currentItem.GameSystem) {
lookupInfo.GameSystem = currentItem.GameSystem;
}
lookupInfo = {
SearchInfo: lookupInfo,
IncludeDisabledProviders: true
};
loading.show();
ApiClient.ajax({
type: "POST",
url: ApiClient.getUrl("Items/RemoteSearch/" + currentItemType),
data: JSON.stringify(lookupInfo),
contentType: "application/json",
dataType: 'json'
}).then(function (results) {
loading.hide();
showIdentificationSearchResults(page, results);
});
}
function showIdentificationSearchResults(page, results) {
page.querySelector('.popupIdentifyForm').classList.add('hide');
page.querySelector('.identificationSearchResults').classList.remove('hide');
page.querySelector('.identifyOptionsForm').classList.add('hide');
var html = '';
var i, length;
for (i = 0, length = results.length; i < length; i++) {
var result = results[i];
html += getSearchResultHtml(result, i);
}
var elem = page.querySelector('.identificationSearchResultList');
elem.innerHTML = html;
function onSearchImageClick() {
var index = parseInt(this.getAttribute('data-index'));
var currentResult = results[index];
if (currentItem != null) {
showIdentifyOptions(page, currentResult);
} else {
finishFindNewDialog(page, currentResult);
}
}
var searchImages = elem.querySelectorAll('.searchImage');
for (i = 0, length = searchImages.length; i < length; i++) {
searchImages[i].addEventListener('click', onSearchImageClick);
}
}
function finishFindNewDialog(dlg, identifyResult) {
currentSearchResult = identifyResult;
hasChanges = true;
loading.hide();
dialogHelper.close(dlg);
}
function showIdentifyOptions(page, identifyResult) {
page.querySelector('.popupIdentifyForm').classList.add('hide');
page.querySelector('.identificationSearchResults').classList.add('hide');
page.querySelector('.identifyOptionsForm').classList.remove('hide');
page.querySelector('#chkIdentifyReplaceImages').checked = true;
currentSearchResult = identifyResult;
var lines = [];
lines.push(identifyResult.Name);
if (identifyResult.ProductionYear) {
lines.push(identifyResult.ProductionYear);
}
if (identifyResult.GameSystem) {
lines.push(identifyResult.GameSystem);
}
var resultHtml = lines.join('
');
if (identifyResult.ImageUrl) {
var displayUrl = getSearchImageDisplayUrl(identifyResult.ImageUrl, identifyResult.SearchProviderName);
resultHtml = '
' + resultHtml;
}
page.querySelector('.selectedSearchResult').innerHTML = resultHtml;
}
function getSearchResultHtml(result, index) {
var html = '';
var cssClass = "card";
if (currentItemType == "Episode") {
cssClass += " backdropCard";
}
else if (currentItemType == "MusicAlbum" || currentItemType == "MusicArtist") {
cssClass += " squareCard";
}
else {
cssClass += " portraitCard";
}
html += '