2016-03-23 12:03:17 -07:00
|
|
|
define(['dialogHelper', 'layoutManager', 'dialogText', 'html!./../prompt/icons.html', 'css!./../prompt/style.css', 'paper-button', 'paper-input'], function (dialogHelper, layoutManager, dialogText) {
|
2016-02-26 13:29:27 -07:00
|
|
|
|
|
|
|
return function (options) {
|
|
|
|
|
|
|
|
if (typeof options === 'string') {
|
|
|
|
options = {
|
|
|
|
title: '',
|
|
|
|
text: options
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var dialogOptions = {
|
|
|
|
removeOnClose: true
|
|
|
|
};
|
|
|
|
|
|
|
|
var backButton = false;
|
|
|
|
var raisedButtons = false;
|
|
|
|
|
|
|
|
if (layoutManager.tv) {
|
|
|
|
dialogOptions.size = 'fullscreen';
|
|
|
|
backButton = true;
|
|
|
|
raisedButtons = true;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
dialogOptions.modal = false;
|
|
|
|
dialogOptions.entryAnimationDuration = 160;
|
|
|
|
dialogOptions.exitAnimationDuration = 200;
|
|
|
|
}
|
|
|
|
|
2016-03-23 12:03:17 -07:00
|
|
|
var dlg = dialogHelper.createDialog(dialogOptions);
|
2016-02-26 13:29:27 -07:00
|
|
|
|
|
|
|
dlg.classList.add('promptDialog');
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
html += '<div class="promptDialogContent">';
|
|
|
|
if (backButton) {
|
|
|
|
html += '<paper-icon-button tabindex="-1" icon="dialog:arrow-back" class="btnPromptExit"></paper-icon-button>';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.title) {
|
|
|
|
html += '<h2>';
|
|
|
|
html += options.title;
|
|
|
|
html += '</h2>';
|
|
|
|
}
|
|
|
|
|
2016-04-09 19:27:09 -07:00
|
|
|
var text = options.html || options.text;
|
|
|
|
|
|
|
|
if (text) {
|
2016-02-26 13:29:27 -07:00
|
|
|
|
|
|
|
if (options.title) {
|
|
|
|
html += '<p style="margin-top:2em;">';
|
|
|
|
} else {
|
|
|
|
html += '<p>';
|
|
|
|
}
|
|
|
|
|
2016-04-09 19:27:09 -07:00
|
|
|
html += text;
|
2016-02-26 13:29:27 -07:00
|
|
|
html += '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
var buttonText = options.type == 'error' ? 'Ok' : 'GotIt';
|
|
|
|
if (raisedButtons) {
|
|
|
|
html += '<paper-button raised class="btnSubmit"><iron-icon icon="dialog:check"></iron-icon><span>' + dialogText.get(buttonText) + '</span></paper-button>';
|
|
|
|
} else {
|
|
|
|
html += '<div style="text-align:right;">';
|
|
|
|
html += '<paper-button class="btnSubmit">' + dialogText.get(buttonText) + '</paper-button>';
|
|
|
|
html += '</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
html += '</div>';
|
|
|
|
|
|
|
|
dlg.innerHTML = html;
|
|
|
|
|
|
|
|
document.body.appendChild(dlg);
|
|
|
|
|
|
|
|
dlg.querySelector('.btnSubmit').addEventListener('click', function (e) {
|
|
|
|
|
2016-03-23 12:03:17 -07:00
|
|
|
dialogHelper.close(dlg);
|
2016-02-26 13:29:27 -07:00
|
|
|
});
|
|
|
|
|
2016-03-23 12:03:17 -07:00
|
|
|
return dialogHelper.open(dlg);
|
2016-02-26 13:29:27 -07:00
|
|
|
};
|
|
|
|
});
|