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
aff09101
Commit
aff09101
authored
Apr 18, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GroupMemberContributions App Root Component
parent
56e19ba2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
215 additions
and
0 deletions
+215
-0
ee/app/assets/javascripts/group_member_contributions/components/app.vue
...javascripts/group_member_contributions/components/app.vue
+89
-0
spec/javascripts/group_member_contributions/components/app_spec.js
...scripts/group_member_contributions/components/app_spec.js
+126
-0
No files found.
ee/app/assets/javascripts/group_member_contributions/components/app.vue
0 → 100644
View file @
aff09101
<
script
>
import
{
__
}
from
'
~/locale
'
;
import
Flash
from
'
~/flash
'
;
import
LoadingIcon
from
'
~/vue_shared/components/loading_icon.vue
'
;
import
COLUMNS
from
'
../constants
'
;
import
TableHeader
from
'
./table_header.vue
'
;
import
TableBody
from
'
./table_body.vue
'
;
export
default
{
columns
:
COLUMNS
,
components
:
{
LoadingIcon
,
TableHeader
,
TableBody
,
},
props
:
{
store
:
{
type
:
Object
,
required
:
true
,
},
service
:
{
type
:
Object
,
required
:
true
,
},
},
data
()
{
return
{
isLoading
:
true
,
};
},
computed
:
{
members
()
{
return
this
.
store
.
members
;
},
sortOrders
()
{
return
this
.
store
.
sortOrders
;
},
},
mounted
()
{
this
.
fetchContributedMembers
();
},
methods
:
{
fetchContributedMembers
()
{
this
.
service
.
getContributedMembers
()
.
then
(
res
=>
res
.
data
)
.
then
(
members
=>
{
this
.
store
.
setColumns
(
this
.
$options
.
columns
);
this
.
store
.
setMembers
(
members
);
this
.
isLoading
=
false
;
})
.
catch
(()
=>
{
this
.
isLoading
=
false
;
Flash
(
__
(
'
Something went wrong while fetching group member contributions
'
));
});
},
handleColumnClick
(
columnName
)
{
this
.
store
.
sortMembers
(
columnName
);
},
},
};
</
script
>
<
template
>
<div
class=
"group-member-contributions-container"
>
<h3>
{{
__
(
'
Contributions per group member
'
)
}}
</h3>
<loading-icon
class=
"loading-animation prepend-top-20 append-bottom-20"
size=
"2"
v-if=
"isLoading"
:label=
"__('Loading contribution stats for group members')"
/>
<table
v-else
class=
"table gl-sortable"
>
<table-header
:columns=
"$options.columns"
:sort-orders=
"sortOrders"
@
onColumnClick=
"handleColumnClick"
/>
<table-body
:rows=
"members"
/>
</table>
</div>
</
template
>
spec/javascripts/group_member_contributions/components/app_spec.js
0 → 100644
View file @
aff09101
import
Vue
from
'
vue
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
mountComponent
from
'
spec/helpers/vue_mount_component_helper
'
;
import
AppComponent
from
'
ee/group_member_contributions/components/app.vue
'
;
import
GroupMemberStore
from
'
ee/group_member_contributions/store/group_member_store
'
;
import
GroupMemberService
from
'
ee/group_member_contributions/service/group_member_service
'
;
import
{
contributionsPath
,
rawMembers
}
from
'
../mock_data
'
;
const
createComponent
=
()
=>
{
const
Component
=
Vue
.
extend
(
AppComponent
);
const
store
=
new
GroupMemberStore
();
const
service
=
new
GroupMemberService
(
contributionsPath
);
return
mountComponent
(
Component
,
{
store
,
service
,
});
};
describe
(
'
AppComponent
'
,
()
=>
{
let
vm
;
beforeEach
(()
=>
{
vm
=
createComponent
();
});
afterEach
(()
=>
{
vm
.
$destroy
();
});
describe
(
'
methods
'
,
()
=>
{
describe
(
'
fetchContributedMembers
'
,
()
=>
{
let
mock
;
beforeEach
(()
=>
{
mock
=
new
MockAdapter
(
axios
);
document
.
body
.
innerHTML
+=
'
<div class="flash-container"></div>
'
;
});
afterEach
(()
=>
{
mock
.
restore
();
document
.
querySelector
(
'
.flash-container
'
).
remove
();
});
it
(
'
calls service.getContributedMembers and sets response to the store on success
'
,
done
=>
{
mock
.
onGet
(
vm
.
service
.
memberContributionsPath
).
reply
(
200
,
rawMembers
);
spyOn
(
vm
.
store
,
'
setColumns
'
);
spyOn
(
vm
.
store
,
'
setMembers
'
);
vm
.
fetchContributedMembers
();
expect
(
vm
.
isLoading
).
toBe
(
true
);
setTimeout
(()
=>
{
expect
(
vm
.
isLoading
).
toBe
(
false
);
expect
(
vm
.
store
.
setColumns
).
toHaveBeenCalledWith
(
jasmine
.
any
(
Object
));
expect
(
vm
.
store
.
setMembers
).
toHaveBeenCalledWith
(
rawMembers
);
done
();
},
0
);
});
it
(
'
calls service.getContributedMembers and sets `isLoading` to false and shows flash message if request failed
'
,
done
=>
{
mock
.
onGet
(
vm
.
service
.
memberContributionsPath
).
reply
(
500
,
{});
vm
.
fetchContributedMembers
();
expect
(
vm
.
isLoading
).
toBe
(
true
);
setTimeout
(()
=>
{
expect
(
vm
.
isLoading
).
toBe
(
false
);
expect
(
document
.
querySelector
(
'
.flash-text
'
).
innerText
.
trim
()).
toBe
(
'
Something went wrong while fetching group member contributions
'
,
);
done
();
},
0
);
});
});
describe
(
'
handleColumnClick
'
,
()
=>
{
it
(
'
calls store.sortMembers with columnName param
'
,
()
=>
{
spyOn
(
vm
.
store
,
'
sortMembers
'
);
const
columnName
=
'
fullname
'
;
vm
.
handleColumnClick
(
columnName
);
expect
(
vm
.
store
.
sortMembers
).
toHaveBeenCalledWith
(
columnName
);
});
});
});
describe
(
'
template
'
,
()
=>
{
it
(
'
renders component container element with class `group-member-contributions-container`
'
,
()
=>
{
expect
(
vm
.
$el
.
classList
.
contains
(
'
group-member-contributions-container
'
)).
toBe
(
true
);
});
it
(
'
renders header title element within component containe
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
h3
'
).
innerText
.
trim
()).
toBe
(
'
Contributions per group member
'
);
});
it
(
'
shows loading icon when isLoading prop is true
'
,
done
=>
{
vm
.
isLoading
=
true
;
vm
.
$nextTick
()
.
then
(()
=>
{
const
loadingEl
=
vm
.
$el
.
querySelector
(
'
.loading-animation
'
);
expect
(
loadingEl
).
not
.
toBeNull
();
expect
(
loadingEl
.
querySelector
(
'
i
'
).
getAttribute
(
'
aria-label
'
)).
toBe
(
'
Loading contribution stats for group members
'
,
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
it
(
'
renders table container element
'
,
done
=>
{
vm
.
isLoading
=
false
;
vm
.
$nextTick
()
.
then
(()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
table.table.gl-sortable
'
)).
not
.
toBeNull
();
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
});
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