Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Gitlab will go in to maintenance on Friday 5:30pm since SIU is doing Isilon maintenance and we use isilon shares on the Gitlab
You are on a read-only GitLab instance.
Show more breadcrumbs
minerva
core
Commits
ac2b56e1
Commit
ac2b56e1
authored
7 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
confirm dialog functionality
parent
7026acdd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!173
Resolve "create a confirm button when removing data overlay"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend-js/src/main/js/GuiConnector.js
+29
-0
29 additions, 0 deletions
frontend-js/src/main/js/GuiConnector.js
frontend-js/src/test/js/GuiConnector-test.js
+28
-2
28 additions, 2 deletions
frontend-js/src/test/js/GuiConnector-test.js
with
57 additions
and
2 deletions
frontend-js/src/main/js/GuiConnector.js
+
29
−
0
View file @
ac2b56e1
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
frontend-js/src/test/js/GuiConnector-test.js
+
28
−
2
View file @
ac2b56e1
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment