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
0421fbcd
Commit
0421fbcd
authored
May 09, 2018
by
Paul Slaughter
Committed by
Clement Ho
May 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor 'cycle_analytics' to use axios
parent
149e91b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
15 deletions
+17
-15
app/assets/javascripts/cycle_analytics/cycle_analytics_bundle.js
...ets/javascripts/cycle_analytics/cycle_analytics_bundle.js
+0
-2
app/assets/javascripts/cycle_analytics/cycle_analytics_service.js
...ts/javascripts/cycle_analytics/cycle_analytics_service.js
+17
-13
No files found.
app/assets/javascripts/cycle_analytics/cycle_analytics_bundle.js
View file @
0421fbcd
...
...
@@ -82,7 +82,6 @@ export default () => {
this
.
service
.
fetchCycleAnalyticsData
(
fetchOptions
)
.
then
(
resp
=>
resp
.
json
())
.
then
((
response
)
=>
{
this
.
store
.
setCycleAnalyticsData
(
response
);
this
.
selectDefaultStage
();
...
...
@@ -116,7 +115,6 @@ export default () => {
stage
,
startDate
:
this
.
startDate
,
})
.
then
(
resp
=>
resp
.
json
())
.
then
((
response
)
=>
{
this
.
isEmptyStage
=
!
response
.
events
.
length
;
this
.
store
.
setStageEvents
(
response
.
events
,
stage
);
...
...
app/assets/javascripts/cycle_analytics/cycle_analytics_service.js
View file @
0421fbcd
import
Vue
from
'
vue
'
;
import
VueResource
from
'
vue-resource
'
;
Vue
.
use
(
VueResource
);
import
axios
from
'
~/lib/utils/axios_utils
'
;
export
default
class
CycleAnalyticsService
{
constructor
(
options
)
{
this
.
requestPath
=
options
.
requestPath
;
this
.
cycleAnalytics
=
Vue
.
resource
(
this
.
requestPath
);
this
.
axios
=
axios
.
create
({
baseURL
:
options
.
requestPath
,
});
}
fetchCycleAnalyticsData
(
options
=
{
startDate
:
30
})
{
return
this
.
cycleAnalytics
.
get
({
cycle_analytics
:
{
start_date
:
options
.
startDate
}
});
return
this
.
axios
.
get
(
''
,
{
params
:
{
'
cycle_analytics[start_date]
'
:
options
.
startDate
,
},
})
.
then
(
x
=>
x
.
data
);
}
fetchStageData
(
options
)
{
...
...
@@ -19,12 +23,12 @@ export default class CycleAnalyticsService {
startDate
,
}
=
options
;
return
Vue
.
http
.
get
(
`
${
this
.
requestPath
}
/events/
${
stage
.
name
}
.json`
,
{
params
:
{
cycle_analytic
s
:
{
start_date
:
startDate
,
return
this
.
axios
.
get
(
`events/
${
stage
.
name
}
.json`
,
{
param
s
:
{
'
cycle_analytics[start_date]
'
:
startDate
,
},
}
,
}
);
}
)
.
then
(
x
=>
x
.
data
);
}
}
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