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
2c14c7da
Unverified
Commit
2c14c7da
authored
2 years ago
by
Ryan Laurie
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
scientific notation obeys custom separators (#21824)
parent
f10f3456
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/metabase/lib/formatting.js
+4
-1
4 additions, 1 deletion
frontend/src/metabase/lib/formatting.js
frontend/test/metabase/lib/formatting.unit.spec.js
+13
-0
13 additions, 0 deletions
frontend/test/metabase/lib/formatting.unit.spec.js
with
17 additions
and
1 deletion
frontend/src/metabase/lib/formatting.js
+
4
−
1
View file @
2c14c7da
...
...
@@ -208,7 +208,10 @@ function formatNumberScientific(value, options) {
if
(
options
.
maximumFractionDigits
)
{
value
=
d3
.
round
(
value
,
options
.
maximumFractionDigits
);
}
const
exp
=
value
.
toExponential
(
options
.
minimumFractionDigits
);
const
exp
=
replaceNumberSeparators
(
value
.
toExponential
(
options
.
minimumFractionDigits
),
options
?.
number_separators
,
);
if
(
options
.
jsx
)
{
const
[
m
,
n
]
=
exp
.
split
(
"
e
"
);
return
(
...
...
This diff is collapsed.
Click to expand it.
frontend/test/metabase/lib/formatting.unit.spec.js
+
13
−
0
View file @
2c14c7da
...
...
@@ -123,6 +123,19 @@ describe("formatting", () => {
expect
(
formatNumber
(
123456.78
,
options
)).
toEqual
(
"
1.2e+5
"
);
expect
(
formatNumber
(
-
123456.78
,
options
)).
toEqual
(
"
-1.2e+5
"
);
});
it
(
"
should obey custom separators in scientific notiation
"
,
()
=>
{
const
options
=
{
compact
:
true
,
number_style
:
"
scientific
"
,
number_separators
:
"
,.
"
,
};
expect
(
formatNumber
(
0
,
options
)).
toEqual
(
"
0,0e+0
"
);
expect
(
formatNumber
(
0.0001
,
options
)).
toEqual
(
"
1,0e-4
"
);
expect
(
formatNumber
(
0.01
,
options
)).
toEqual
(
"
1,0e-2
"
);
expect
(
formatNumber
(
0.5
,
options
)).
toEqual
(
"
5,0e-1
"
);
expect
(
formatNumber
(
123456.78
,
options
)).
toEqual
(
"
1,2e+5
"
);
expect
(
formatNumber
(
-
123456.78
,
options
)).
toEqual
(
"
-1,2e+5
"
);
});
it
(
"
should format currency values
"
,
()
=>
{
const
options
=
{
compact
:
true
,
...
...
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