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
a491bcc2
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
app/assets/javascripts/graphs/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