Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
43b0e002
Commit
43b0e002
authored
8 years ago
by
Tom Robinson
Committed by
Cam Saül
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix progress bar viz in Safari. Resolves #3988 (#4126)
parent
74da6576
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/visualizations/Progress.jsx
+9
-4
9 additions, 4 deletions
frontend/src/metabase/visualizations/Progress.jsx
with
9 additions
and
4 deletions
frontend/src/metabase/visualizations/Progress.jsx
+
9
−
4
View file @
43b0e002
...
...
@@ -9,8 +9,10 @@ import Icon from "metabase/components/Icon.jsx";
import
IconBorder
from
"
metabase/components/IconBorder.jsx
"
;
import
Color
from
"
color
"
;
import
cx
from
"
classnames
"
;
const
BORDER_RADIUS
=
5
;
const
MAX_BAR_HEIGHT
=
65
;
import
type
{
VisualizationProps
}
from
"
metabase/visualizations
"
;
...
...
@@ -36,9 +38,14 @@ export default class Progress extends Component<*, VisualizationProps, *> {
}
componentDidUpdate
()
{
const
component
=
ReactDOM
.
findDOMNode
(
this
);
const
pointer
=
ReactDOM
.
findDOMNode
(
this
.
refs
.
pointer
);
const
label
=
ReactDOM
.
findDOMNode
(
this
.
refs
.
label
);
const
container
=
ReactDOM
.
findDOMNode
(
this
.
refs
.
container
);
const
bar
=
ReactDOM
.
findDOMNode
(
this
.
refs
.
bar
);
// Safari not respecting `height: 25%` so just do it here ¯\_(ツ)_/¯
bar
.
style
.
height
=
Math
.
min
(
MAX_BAR_HEIGHT
,
component
.
offsetHeight
)
+
"
px
"
;
if
(
this
.
props
.
gridSize
&&
this
.
props
.
gridSize
.
height
<
4
)
{
pointer
.
parentNode
.
style
.
display
=
"
none
"
;
...
...
@@ -102,7 +109,7 @@ export default class Progress extends Component<*, VisualizationProps, *> {
}
return
(
<
div
className
=
"full-height
flex layout-centered"
>
<
div
className
=
{
cx
(
this
.
props
.
className
,
"
flex layout-centered
"
)
}
>
<
div
className
=
"flex-full full-height flex flex-column justify-center"
style
=
{
{
padding
:
10
,
paddingTop
:
0
}
}
>
<
div
ref
=
"container"
...
...
@@ -131,11 +138,9 @@ export default class Progress extends Component<*, VisualizationProps, *> {
}
}
/>
</
div
>
<
div
className
=
"relative"
style
=
{
{
<
div
ref
=
"bar"
className
=
"relative"
style
=
{
{
backgroundColor
:
restColor
,
borderRadius
:
BORDER_RADIUS
,
height
:
"
25%
"
,
maxHeight
:
65
,
overflow
:
"
hidden
"
}
}
>
<
div
style
=
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment