cloudcmd/lib/client/dialog.js
2015-09-28 11:43:03 -04:00

54 lines
1.5 KiB
JavaScript

/* global DOM */
/* global smalltalk */
(function(DOM) {
'use strict';
DOM.Dialog = Dialog;
function Dialog(prefix, config) {
var self = this;
if (!(this instanceof Dialog))
return new Dialog(config);
load(config.htmlDialogs);
function load(htmlDialogs) {
var names,
name = 'smalltalk',
is = window.Promise,
js = '.min.js',
jsName = is ? js : '.poly' + js,
dir = '/modules/' + name + '/dist/';
if (!htmlDialogs)
jsName = '.native' + jsName;
names = [jsName, '.min.css'].map(function(ext) {
return prefix + dir + name + ext;
});
DOM.load.parallel(names, function() {});
}
this.alert = function(title, message) {
return smalltalk.alert(title, message, {
cancel: false
});
};
this.prompt = function(title, message, value, options) {
return smalltalk.prompt(title, message, value, options);
};
this.confirm = function(title, message, options) {
return smalltalk.confirm(title, message, options);
};
this.alert.noFiles = function(title) {
return self.alert(title, 'No files selected!');
};
}
})(DOM);