Skip to content
Snippets Groups Projects
Commit ac2b56e1 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

confirm dialog functionality

parent 7026acdd
No related branches found
No related tags found
1 merge request!173Resolve "create a confirm button when removing data overlay"
......@@ -247,6 +247,35 @@ GuiConnector.prototype.info = function (message) {
};
GuiConnector.prototype.showConfirmationDialog = function (params) {
var message = params.message;
var title = params.title;
if (title === undefined) {
title = "Confirm";
}
return new Promise(function (resolve) {
$('<div></div>').appendTo('body')
.html('<div><h6>' + message + '</h6></div>')
.dialog({
modal: true, title: title, zIndex: 10000, autoOpen: true,
width: 'auto', resizable: false,
buttons: {
Yes: function () {
$(this).dialog("close");
resolve(true);
},
No: function () {
$(this).dialog("close");
resolve(false);
}
},
close: function (event, ui) {
$(this).remove();
}
});
});
};
GuiConnector.prototype.destroy = function () {
var self = returnThisOrSingleton(this);
......
......@@ -42,14 +42,14 @@ describe('GuiConnector', function () {
var connector = new (GuiConnector.constructor)();
ServerConnector.getSessionData().setLogin("testUser");
var message = connector.getErrorMessageForError(new SecurityError());
assert.ok(message.indexOf("ask your administrator")>=0);
assert.ok(message.indexOf("ask your administrator") >= 0);
connector.destroy();
});
it('SecurityError when not logged in', function () {
var connector = new (GuiConnector.constructor)();
ServerConnector.getSessionData().setLogin("anonymous");
var message = connector.getErrorMessageForError(new SecurityError());
assert.ok(message.indexOf("to access this resource")>=0);
assert.ok(message.indexOf("to access this resource") >= 0);
connector.destroy();
});
});
......@@ -91,4 +91,30 @@ describe('GuiConnector', function () {
});
});
describe('showConfirmationDialog', function () {
it('when answer is Yes', function () {
var connector = new (GuiConnector.constructor)();
// click Yes button in coming ms
setTimeout(function () {
$("button:contains(Yes)").click()
}, 50);
return connector.showConfirmationDialog({message: "hi there", title: "some"}).then(function (result) {
assert.ok(result);
});
});
it('when answer is No', function () {
var connector = new (GuiConnector.constructor)();
// click Yes button in coming ms
setTimeout(function () {
$("button:contains(No)").click()
}, 50);
return connector.showConfirmationDialog({message: "hi there", title: "some"}).then(function (result) {
assert.notOk(result);
});
});
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment