Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bdaaa43f
Commit
bdaaa43f
authored
Mar 06, 2018
by
Shah El-Rahman
Committed by
Phil Hughes
Mar 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "Group Leave action is broken on Groups Dashboard and Homepage"
parent
4cb348c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
33 deletions
+36
-33
app/assets/javascripts/groups/components/app.vue
app/assets/javascripts/groups/components/app.vue
+5
-5
spec/javascripts/groups/components/app_spec.js
spec/javascripts/groups/components/app_spec.js
+31
-28
No files found.
app/assets/javascripts/groups/components/app.vue
View file @
bdaaa43f
...
...
@@ -152,14 +152,14 @@ export default {
showLeaveGroupModal
(
group
,
parentGroup
)
{
this
.
targetGroup
=
group
;
this
.
targetParentGroup
=
parentGroup
;
this
.
update
Modal
=
true
;
this
.
show
Modal
=
true
;
this
.
groupLeaveConfirmationMessage
=
s__
(
`GroupsTree|Are you sure you want to leave the "
${
group
.
fullName
}
" group?`
);
},
hideLeaveGroupModal
()
{
this
.
update
Modal
=
false
;
this
.
show
Modal
=
false
;
},
leaveGroup
()
{
this
.
update
Modal
=
false
;
this
.
show
Modal
=
false
;
this
.
targetGroup
.
isBeingRemoved
=
true
;
this
.
service
.
leaveGroup
(
this
.
targetGroup
.
leavePath
)
.
then
(
res
=>
res
.
json
())
...
...
@@ -208,9 +208,9 @@ export default {
:page-info=
"pageInfo"
/>
<modal
v-show=
"showModal"
:primary-button-label=
"__('Leave')"
v-if=
"showModal"
kind=
"warning"
:primary-button-label=
"__('Leave')"
:title=
"__('Are you sure?')"
:text=
"groupLeaveConfirmationMessage"
@
cancel=
"hideLeaveGroupModal"
...
...
spec/javascripts/groups/components/app_spec.js
View file @
bdaaa43f
...
...
@@ -129,7 +129,7 @@ describe('AppComponent', () => {
vm
.
fetchGroups
({});
setTimeout
(()
=>
{
expect
(
vm
.
isLoading
).
toBe
Falsy
(
);
expect
(
vm
.
isLoading
).
toBe
(
false
);
expect
(
$
.
scrollTo
).
toHaveBeenCalledWith
(
0
);
expect
(
window
.
Flash
).
toHaveBeenCalledWith
(
'
An error occurred. Please try again.
'
);
done
();
...
...
@@ -144,10 +144,10 @@ describe('AppComponent', () => {
spyOn
(
vm
,
'
updateGroups
'
).
and
.
callThrough
();
vm
.
fetchAllGroups
();
expect
(
vm
.
isLoading
).
toBe
Truthy
(
);
expect
(
vm
.
isLoading
).
toBe
(
true
);
expect
(
vm
.
fetchGroups
).
toHaveBeenCalled
();
setTimeout
(()
=>
{
expect
(
vm
.
isLoading
).
toBe
Falsy
(
);
expect
(
vm
.
isLoading
).
toBe
(
false
);
expect
(
vm
.
updateGroups
).
toHaveBeenCalled
();
done
();
},
0
);
...
...
@@ -181,7 +181,7 @@ describe('AppComponent', () => {
spyOn
(
$
,
'
scrollTo
'
);
vm
.
fetchPage
(
2
,
null
,
null
,
true
);
expect
(
vm
.
isLoading
).
toBe
Truthy
(
);
expect
(
vm
.
isLoading
).
toBe
(
true
);
expect
(
vm
.
fetchGroups
).
toHaveBeenCalledWith
({
page
:
2
,
filterGroupsBy
:
null
,
...
...
@@ -190,7 +190,7 @@ describe('AppComponent', () => {
archived
:
true
,
});
setTimeout
(()
=>
{
expect
(
vm
.
isLoading
).
toBe
Falsy
(
);
expect
(
vm
.
isLoading
).
toBe
(
false
);
expect
(
$
.
scrollTo
).
toHaveBeenCalledWith
(
0
);
expect
(
utils
.
mergeUrlParams
).
toHaveBeenCalledWith
({
page
:
2
},
jasmine
.
any
(
String
));
expect
(
window
.
history
.
replaceState
).
toHaveBeenCalledWith
({
...
...
@@ -216,7 +216,7 @@ describe('AppComponent', () => {
spyOn
(
vm
.
store
,
'
setGroupChildren
'
);
vm
.
toggleChildren
(
groupItem
);
expect
(
groupItem
.
isChildrenLoading
).
toBe
Truthy
(
);
expect
(
groupItem
.
isChildrenLoading
).
toBe
(
true
);
expect
(
vm
.
fetchGroups
).
toHaveBeenCalledWith
({
parentId
:
groupItem
.
id
,
});
...
...
@@ -232,7 +232,7 @@ describe('AppComponent', () => {
vm
.
toggleChildren
(
groupItem
);
expect
(
vm
.
fetchGroups
).
not
.
toHaveBeenCalled
();
expect
(
groupItem
.
isOpen
).
toBe
Truthy
(
);
expect
(
groupItem
.
isOpen
).
toBe
(
true
);
});
it
(
'
should collapse group if it is already expanded
'
,
()
=>
{
...
...
@@ -241,16 +241,16 @@ describe('AppComponent', () => {
vm
.
toggleChildren
(
groupItem
);
expect
(
vm
.
fetchGroups
).
not
.
toHaveBeenCalled
();
expect
(
groupItem
.
isOpen
).
toBe
Falsy
(
);
expect
(
groupItem
.
isOpen
).
toBe
(
false
);
});
it
(
'
should set `isChildrenLoading` back to `false` if load request fails
'
,
(
done
)
=>
{
spyOn
(
vm
,
'
fetchGroups
'
).
and
.
returnValue
(
returnServicePromise
({},
true
));
vm
.
toggleChildren
(
groupItem
);
expect
(
groupItem
.
isChildrenLoading
).
toBe
Truthy
(
);
expect
(
groupItem
.
isChildrenLoading
).
toBe
(
true
);
setTimeout
(()
=>
{
expect
(
groupItem
.
isChildrenLoading
).
toBe
Falsy
(
);
expect
(
groupItem
.
isChildrenLoading
).
toBe
(
false
);
done
();
},
0
);
});
...
...
@@ -268,10 +268,10 @@ describe('AppComponent', () => {
it
(
'
updates props which show modal confirmation dialog
'
,
()
=>
{
const
group
=
Object
.
assign
({},
mockParentGroupItem
);
expect
(
vm
.
updateModal
).
toBeFalsy
(
);
expect
(
vm
.
showModal
).
toBe
(
false
);
expect
(
vm
.
groupLeaveConfirmationMessage
).
toBe
(
''
);
vm
.
showLeaveGroupModal
(
group
,
mockParentGroupItem
);
expect
(
vm
.
updateModal
).
toBeTruthy
(
);
expect
(
vm
.
showModal
).
toBe
(
true
);
expect
(
vm
.
groupLeaveConfirmationMessage
).
toBe
(
`Are you sure you want to leave the "
${
group
.
fullName
}
" group?`
);
});
});
...
...
@@ -280,9 +280,9 @@ describe('AppComponent', () => {
it
(
'
hides modal confirmation which is shown before leaving the group
'
,
()
=>
{
const
group
=
Object
.
assign
({},
mockParentGroupItem
);
vm
.
showLeaveGroupModal
(
group
,
mockParentGroupItem
);
expect
(
vm
.
updateModal
).
toBeTruthy
(
);
expect
(
vm
.
showModal
).
toBe
(
true
);
vm
.
hideLeaveGroupModal
();
expect
(
vm
.
updateModal
).
toBeFalsy
(
);
expect
(
vm
.
showModal
).
toBe
(
false
);
});
});
...
...
@@ -307,8 +307,8 @@ describe('AppComponent', () => {
spyOn
(
$
,
'
scrollTo
'
);
vm
.
leaveGroup
();
expect
(
vm
.
updateModal
).
toBeFalsy
(
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
Truthy
(
);
expect
(
vm
.
showModal
).
toBe
(
false
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
(
true
);
expect
(
vm
.
service
.
leaveGroup
).
toHaveBeenCalledWith
(
vm
.
targetGroup
.
leavePath
);
setTimeout
(()
=>
{
expect
(
$
.
scrollTo
).
toHaveBeenCalledWith
(
0
);
...
...
@@ -325,12 +325,12 @@ describe('AppComponent', () => {
spyOn
(
window
,
'
Flash
'
);
vm
.
leaveGroup
();
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
Truthy
(
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
(
true
);
expect
(
vm
.
service
.
leaveGroup
).
toHaveBeenCalledWith
(
childGroupItem
.
leavePath
);
setTimeout
(()
=>
{
expect
(
vm
.
store
.
removeGroup
).
not
.
toHaveBeenCalled
();
expect
(
window
.
Flash
).
toHaveBeenCalledWith
(
message
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
Falsy
(
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
(
false
);
done
();
},
0
);
});
...
...
@@ -342,12 +342,12 @@ describe('AppComponent', () => {
spyOn
(
window
,
'
Flash
'
);
vm
.
leaveGroup
(
childGroupItem
,
groupItem
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
Truthy
(
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
(
true
);
expect
(
vm
.
service
.
leaveGroup
).
toHaveBeenCalledWith
(
childGroupItem
.
leavePath
);
setTimeout
(()
=>
{
expect
(
vm
.
store
.
removeGroup
).
not
.
toHaveBeenCalled
();
expect
(
window
.
Flash
).
toHaveBeenCalledWith
(
message
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
Falsy
(
);
expect
(
vm
.
targetGroup
.
isBeingRemoved
).
toBe
(
false
);
done
();
},
0
);
});
...
...
@@ -379,10 +379,10 @@ describe('AppComponent', () => {
it
(
'
should set `isSearchEmpty` prop based on groups count
'
,
()
=>
{
vm
.
updateGroups
(
mockGroups
);
expect
(
vm
.
isSearchEmpty
).
toBe
Falsy
(
);
expect
(
vm
.
isSearchEmpty
).
toBe
(
false
);
vm
.
updateGroups
([]);
expect
(
vm
.
isSearchEmpty
).
toBe
Truthy
(
);
expect
(
vm
.
isSearchEmpty
).
toBe
(
true
);
});
});
});
...
...
@@ -473,13 +473,16 @@ describe('AppComponent', () => {
});
});
it
(
'
renders modal confirmation dialog
'
,
()
=>
{
it
(
'
renders modal confirmation dialog
'
,
(
done
)
=>
{
vm
.
groupLeaveConfirmationMessage
=
'
Are you sure you want to leave the "foo" group?
'
;
vm
.
updateModal
=
true
;
vm
.
showModal
=
true
;
Vue
.
nextTick
(()
=>
{
const
modalDialogEl
=
vm
.
$el
.
querySelector
(
'
.modal
'
);
expect
(
modalDialogEl
).
not
.
toBe
(
null
);
expect
(
modalDialogEl
.
querySelector
(
'
.modal-title
'
).
innerText
.
trim
()).
toBe
(
'
Are you sure?
'
);
expect
(
modalDialogEl
.
querySelector
(
'
.btn.btn-warning
'
).
innerText
.
trim
()).
toBe
(
'
Leave
'
);
done
();
});
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment