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
a491bcc2
Unverified
Commit
a491bcc2
authored
Jan 29, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted graphs_show to axios
parent
cdb768d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
graphs_show.js
app/assets/javascripts/graphs/graphs_show.js
+9
-7
No files found.
app/assets/javascripts/graphs/graphs_show.js
View file @
a491bcc2
import
flash
from
'../flash'
;
import
{
__
}
from
'../locale'
;
import
axios
from
'../lib/utils/axios_utils'
;
import
ContributorsStatGraph
from
'./stat_graph_contributors'
;
document
.
addEventListener
(
'DOMContentLoaded'
,
()
=>
{
$
.
ajax
({
type
:
'GET'
,
url
:
document
.
querySelector
(
'.js-graphs-show'
).
dataset
.
projectGraphPath
,
dataType
:
'json'
,
success
(
data
)
{
const
url
=
document
.
querySelector
(
'.js-graphs-show'
).
dataset
.
projectGraphPath
;
axios
.
get
(
url
)
.
then
(({
data
})
=>
{
const
graph
=
new
ContributorsStatGraph
();
graph
.
init
(
data
);
...
...
@@ -16,6 +18,6 @@ document.addEventListener('DOMContentLoaded', () => {
$
(
'.stat-graph'
).
fadeIn
();
$
(
'.loading-graph'
).
hide
();
}
,
}
);
}
)
.
catch
(()
=>
flash
(
__
(
'Error fetching contributors 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