BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
d8403ec1
Commit
d8403ec1
authored
Jun 06, 2017
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor visual adjustments
parent
657bc805
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
80 additions
and
22 deletions
+80
-22
group_folder.vue
app/assets/javascripts/groups/components/group_folder.vue
+1
-1
group_item.vue
app/assets/javascripts/groups/components/group_item.vue
+7
-2
index.js
app/assets/javascripts/groups/index.js
+48
-15
groups_store.js
app/assets/javascripts/groups/stores/groups_store.js
+7
-0
lists.scss
app/assets/stylesheets/framework/lists.scss
+7
-0
membership_actions.rb
app/controllers/concerns/membership_actions.rb
+1
-1
_groups.html.haml
app/views/dashboard/groups/_groups.html.haml
+7
-1
group_item_spec.js
spec/javascripts/groups/group_item_spec.js
+1
-1
groups_spec.js
spec/javascripts/groups/groups_spec.js
+1
-1
No files found.
app/assets/javascripts/groups/components/group_folder.vue
View file @
d8403ec1
...
...
@@ -15,6 +15,6 @@ export default {
<
template
>
<ul
class=
"content-list group-list-tree"
>
<group-item
v-for=
"(group, index) in groups"
:key=
"index"
:group=
"group"
:base
Group=
"baseGroup
"
/>
<group-item
v-for=
"(group, index) in groups"
:key=
"index"
:group=
"group"
:base
-group=
"baseGroup"
:collection=
"groups
"
/>
</ul>
</
template
>
app/assets/javascripts/groups/components/group_item.vue
View file @
d8403ec1
...
...
@@ -12,6 +12,11 @@ export default {
required
:
false
,
default
:
()
=>
({}),
},
collection
:
{
type
:
Object
,
required
:
false
,
default
:
()
=>
({}),
},
},
methods
:
{
onClickRowGroup
(
e
)
{
...
...
@@ -35,7 +40,7 @@ export default {
}
},
leaveGroup
()
{
eventHub
.
$emit
(
'leaveGroup'
,
this
.
group
.
leavePath
);
eventHub
.
$emit
(
'leaveGroup'
,
this
.
group
,
this
.
collection
);
},
},
computed
:
{
...
...
@@ -63,7 +68,7 @@ export default {
if
(
this
.
group
.
isOrphan
)
{
// check if current group is baseGroup
if
(
Object
.
keys
(
this
.
baseGroup
).
length
>
0
)
{
if
(
Object
.
keys
(
this
.
baseGroup
).
length
>
0
&&
this
.
baseGroup
!==
this
.
group
)
{
// Remove baseGroup prefix from our current group.fullName. e.g:
// baseGroup.fullName: `level1`
// group.fullName: `level1 / level2 / level3`
...
...
app/assets/javascripts/groups/index.js
View file @
d8403ec1
/* global Flash */
import
Vue
from
'vue'
;
import
GroupFilterableList
from
'./groups_filterable_list'
;
import
GroupsComponent
from
'./components/groups.vue'
;
...
...
@@ -29,9 +31,16 @@ document.addEventListener('DOMContentLoaded', () => {
return
{
store
:
this
.
store
,
isLoading
:
true
,
state
:
this
.
store
.
state
,
loading
:
true
,
};
},
computed
:
{
isEmpty
()
{
return
Object
.
keys
(
this
.
state
.
groups
).
length
===
0
;
},
},
methods
:
{
fetchGroups
(
parentGroup
)
{
let
parentId
=
null
;
...
...
@@ -43,6 +52,8 @@ document.addEventListener('DOMContentLoaded', () => {
let
filterGroups
=
null
;
let
filterGroupsParam
=
null
;
this
.
isLoading
=
true
;
if
(
parentGroup
)
{
parentId
=
parentGroup
.
id
;
}
...
...
@@ -66,22 +77,26 @@ document.addEventListener('DOMContentLoaded', () => {
getGroups
.
then
((
response
)
=>
{
this
.
updateGroups
(
response
.
json
(),
parentGroup
);
})
.
catch
(()
=>
{
// TODO: Handle error
});
.
finally
(()
=>
{
this
.
isLoading
=
false
;
})
.
catch
(
this
.
handleErrorResponse
);
return
getGroups
;
},
fetchPage
(
page
,
filterGroups
,
sort
)
{
this
.
isLoading
=
true
;
this
.
service
.
getGroups
(
null
,
page
,
filterGroups
,
sort
)
.
then
((
response
)
=>
{
this
.
updateGroups
(
response
.
json
());
this
.
updatePagination
(
response
.
headers
);
$
.
scrollTo
(
0
);
})
.
catch
(()
=>
{
// TODO: Handle error
});
.
finally
(()
=>
{
this
.
isLoading
=
false
;
})
.
catch
(
this
.
handleErrorResponse
);
},
toggleSubGroups
(
parentGroup
=
null
)
{
if
(
!
parentGroup
.
isOpen
)
{
...
...
@@ -91,13 +106,26 @@ document.addEventListener('DOMContentLoaded', () => {
GroupsStore
.
toggleSubGroups
(
parentGroup
);
},
leaveGroup
(
endpoint
)
{
this
.
service
.
leaveGroup
(
endpoint
)
.
then
(()
=>
{
// TODO: Refresh?
leaveGroup
(
group
,
collection
)
{
this
.
service
.
leaveGroup
(
group
.
leavePath
)
.
then
((
response
)
=>
{
this
.
store
.
removeGroup
(
group
,
collection
);
// eslint-disable-next-line no-new
new
Flash
(
response
.
json
().
notice
,
'notice'
);
})
.
finally
(()
=>
{
$
.
scrollTo
(
0
);
})
.
catch
(()
=>
{
// TODO: Handle error
.
catch
((
response
)
=>
{
let
message
=
'An error occurred. Please try again.'
;
if
(
response
.
status
===
403
)
{
message
=
'Failed to leave the group. Please make sure you are not the only owner'
;
}
// eslint-disable-next-line no-new
new
Flash
(
message
);
});
},
updateGroups
(
groups
,
parentGroup
)
{
...
...
@@ -106,6 +134,10 @@ document.addEventListener('DOMContentLoaded', () => {
updatePagination
(
headers
)
{
this
.
store
.
storePagination
(
headers
);
},
handleErrorResponse
()
{
// eslint-disable-next-line no-new
new
Flash
(
'An error occurred. Please try again.'
);
},
},
beforeMount
()
{
let
groupFilterList
=
null
;
...
...
@@ -135,9 +167,10 @@ document.addEventListener('DOMContentLoaded', () => {
.
then
((
response
)
=>
{
this
.
updatePagination
(
response
.
headers
);
})
.
catch
(()
=>
{
// TODO: Handle error
});
.
finally
(()
=>
{
this
.
isLoading
=
false
;
})
.
catch
(
this
.
handleErrorResponse
);
},
});
});
app/assets/javascripts/groups/stores/groups_store.js
View file @
d8403ec1
import
Vue
from
'vue'
;
export
default
class
GroupsStore
{
constructor
()
{
this
.
state
=
{};
...
...
@@ -132,6 +134,11 @@ export default class GroupsStore {
}
// eslint-disable-next-line class-methods-use-this
removeGroup
(
group
,
collection
)
{
Vue
.
delete
(
collection
,
group
.
id
);
}
// eslint-disable-next-line class-methods-use-this
static
toggleSubGroups
(
toggleGroup
)
{
const
group
=
toggleGroup
;
group
.
isOpen
=
!
group
.
isOpen
;
...
...
app/assets/stylesheets/framework/lists.scss
View file @
d8403ec1
...
...
@@ -342,3 +342,10 @@ ul.indent-list {
}
}
}
.js-groups-list-holder
{
.groups-list-loading
{
font-size
:
34px
;
text-align
:
center
;
}
}
app/controllers/concerns/membership_actions.rb
View file @
d8403ec1
...
...
@@ -57,7 +57,7 @@ module MembershipActions
redirect_to
redirect_path
,
notice:
notice
end
format
.
json
{
head
:ok
}
format
.
json
{
render
json:
{
notice:
notice
}
}
end
end
...
...
app/views/dashboard/groups/_groups.html.haml
View file @
d8403ec1
.js-groups-list-holder
#dashboard-group-app
{
data:
{
endpoint:
dashboard_groups_path
(
format: :json
),
path:
dashboard_groups_path
}
}
%groups-component
{
':groups'
=>
'state.groups'
,
':page-info'
=>
'state.pageInfo'
}
.groups-list-loading
=
icon
(
'spinner spin'
,
'v-show'
=>
'isLoading'
)
%template
{
'v-if'
=>
'!isLoading && isEmpty'
}
%div
{
'v-cloak'
=>
true
}
=
render
'empty_state'
%template
{
'v-else-if'
=>
'!isLoading && !isEmpty'
}
%groups-component
{
':groups'
=>
'state.groups'
,
':page-info'
=>
'state.pageInfo'
}
spec/javascripts/groups/group_item_spec.js
View file @
d8403ec1
...
...
@@ -3,7 +3,7 @@ import groupItemComponent from '~/groups/components/group_item.vue';
import
GroupsStore
from
'~/groups/stores/groups_store'
;
import
{
group1
}
from
'./mock_data'
;
describe
(
'Groups Component'
,
()
=>
{
f
describe
(
'Groups Component'
,
()
=>
{
let
GroupItemComponent
;
let
component
;
let
store
;
...
...
spec/javascripts/groups/groups_spec.js
View file @
d8403ec1
...
...
@@ -5,7 +5,7 @@ import groupsComponent from '~/groups/components/groups.vue';
import
GroupsStore
from
'~/groups/stores/groups_store'
;
import
{
groupsData
}
from
'./mock_data'
;
describe
(
'Groups Component'
,
()
=>
{
f
describe
(
'Groups Component'
,
()
=>
{
let
GroupsComponent
;
let
store
;
let
component
;
...
...
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