jellyfish-web/src/components/confirm/confirm.js

40 lines
1,003 B
JavaScript
Raw Normal View History

define(['dialog', 'globalize'], function (dialog, globalize) {
'use strict';
return function (text, title) {
2018-10-23 01:05:09 +03:00
var options;
if (typeof text === 'string') {
options = {
title: title,
text: text
};
} else {
options = text;
}
2018-10-23 01:05:09 +03:00
var items = [];
items.push({
name: options.cancelText || globalize.translate('ButtonCancel'),
id: 'cancel',
type: options.primary === 'cancel' ? 'submit' : 'cancel'
});
items.push({
name: options.confirmText || globalize.translate('ButtonOk'),
id: 'ok',
type: options.primary === 'cancel' ? 'cancel' : 'submit'
});
options.buttons = items;
return dialog(options).then(function (result) {
if (result === 'ok') {
return Promise.resolve();
}
return Promise.reject();
});
};
2018-10-23 01:05:09 +03:00
});