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
7d92f487
Commit
7d92f487
authored
Jan 23, 2019
by
Adriel Santiago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add chart tooltips
Use tooltips for metrics graph data
parent
91b1e9dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
3 deletions
+39
-3
app/assets/javascripts/monitoring/components/charts/area.vue
app/assets/javascripts/monitoring/components/charts/area.vue
+36
-3
locale/gitlab.pot
locale/gitlab.pot
+3
-0
No files found.
app/assets/javascripts/monitoring/components/charts/area.vue
View file @
7d92f487
...
...
@@ -3,12 +3,14 @@ import { GlAreaChart } from '@gitlab/ui/dist/charts';
import
dateFormat
from
'
dateformat
'
;
import
{
debounceByAnimationFrame
}
from
'
~/lib/utils/common_utils
'
;
import
{
getSvgIconPathContent
}
from
'
~/lib/utils/icon_utils
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
let
debouncedResize
;
export
default
{
components
:
{
GlAreaChart
,
Icon
,
},
inheritAttrs
:
false
,
props
:
{
...
...
@@ -47,6 +49,12 @@ export default {
},
data
()
{
return
{
tooltip
:
{
title
:
''
,
content
:
''
,
isDeployment
:
false
,
sha
:
''
,
},
width
:
0
,
height
:
0
,
scatterSymbol
:
undefined
,
...
...
@@ -148,8 +156,17 @@ export default {
},
methods
:
{
formatTooltipText
(
params
)
{
const
[
date
,
value
]
=
params
;
return
[
dateFormat
(
date
,
'
dd mmm yyyy, h:MMtt
'
),
value
.
toFixed
(
3
)];
const
[
seriesData
]
=
params
.
seriesData
;
this
.
tooltip
.
isDeployment
=
seriesData
.
componentSubType
===
'
scatter
'
;
this
.
tooltip
.
title
=
dateFormat
(
params
.
value
,
'
dd mmm yyyy, h:MMTT
'
);
if
(
this
.
tooltip
.
isDeployment
)
{
const
[
deploy
]
=
this
.
recentDeployments
.
filter
(
deployment
=>
deployment
.
createdAt
===
seriesData
.
value
[
0
],
);
this
.
tooltip
.
sha
=
deploy
.
sha
.
substring
(
0
,
8
);
}
else
{
this
.
tooltip
.
content
=
`
${
this
.
yAxisLabel
}
${
seriesData
.
value
[
1
].
toFixed
(
3
)}
`
;
}
},
getScatterSymbol
()
{
getSvgIconPathContent
(
'
rocket
'
)
...
...
@@ -184,6 +201,22 @@ export default {
:thresholds=
"alertData"
:width=
"width"
:height=
"height"
/>
>
<template
slot=
"tooltipTitle"
>
<div
v-if=
"tooltip.isDeployment"
>
{{
__
(
'
Deployed
'
)
}}
</div>
{{
tooltip
.
title
}}
</
template
>
<
template
slot=
"tooltipContent"
>
<div
v-if=
"tooltip.isDeployment"
class=
"d-flex align-items-center"
>
<icon
name=
"commit"
class=
"mr-2"
/>
{{
tooltip
.
sha
}}
</div>
<template
v-else
>
{{
tooltip
.
content
}}
</
template
>
</template>
</gl-area-chart>
</div>
</template>
locale/gitlab.pot
View file @
7d92f487
...
...
@@ -2623,6 +2623,9 @@ msgstr ""
msgid "DeployTokens|Your new project deploy token has been created."
msgstr ""
msgid "Deployed"
msgstr ""
msgid "Deployed to"
msgstr ""
...
...
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