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
6665549e
Commit
6665549e
authored
7 years ago
by
Atte Keinänen
Browse files
Options
Downloads
Patches
Plain Diff
Put 'Don't bin' as the last option
parent
9722fb56
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
src/metabase/api/table.clj
+29
-27
29 additions, 27 deletions
src/metabase/api/table.clj
with
29 additions
and
27 deletions
src/metabase/api/table.clj
+
29
−
27
View file @
6665549e
...
...
@@ -98,31 +98,33 @@
[
"Quarter"
"quarter"
]
[
"Quarter of Year"
"quarter-of-year"
]
[
"Year"
"year"
]])
(
cons
{
:name
"Don't bin"
:mbql
nil
:type
"type/Number"
}
(
map
(
fn
[[
name
params
]]
{
:name
name
:mbql
(
apply
vector
"binning-strategy"
nil
params
)
:type
"type/Number"
})
[
default-entry
[
"10 bins"
[
"num-bins"
10
]]
[
"50 bins"
[
"num-bins"
50
]]
[
"100 bins"
[
"num-bins"
100
]]]))
(
cons
{
:name
"Don't bin"
:mbql
nil
:type
"type/Coordinate"
}
(
map
(
fn
[[
name
params
]]
{
:name
name
:mbql
(
apply
vector
"binning-strategy"
nil
params
)
:type
"type/Coordinate"
})
[
default-entry
[
"Bin every 1 degree"
[
"bin-width"
1.0
]]
[
"Bin every 10 degrees"
[
"bin-width"
10.0
]]
[
"Bin every 20 degrees"
[
"bin-width"
20.0
]]
[
"Bin every 50 degrees"
[
"bin-width"
50.0
]]]))))))
(
conj
(
mapv
(
fn
[[
name
params
]]
{
:name
name
:mbql
(
apply
vector
"binning-strategy"
nil
params
)
:type
"type/Number"
})
[
default-entry
[
"10 bins"
[
"num-bins"
10
]]
[
"50 bins"
[
"num-bins"
50
]]
[
"100 bins"
[
"num-bins"
100
]]])
{
:name
"Don't bin"
:mbql
nil
:type
"type/Number"
}
)
(
conj
(
mapv
(
fn
[[
name
params
]]
{
:name
name
:mbql
(
apply
vector
"binning-strategy"
nil
params
)
:type
"type/Coordinate"
})
[
default-entry
[
"Bin every 1 degree"
[
"bin-width"
1.0
]]
[
"Bin every 10 degrees"
[
"bin-width"
10.0
]]
[
"Bin every 20 degrees"
[
"bin-width"
20.0
]]
[
"Bin every 50 degrees"
[
"bin-width"
50.0
]]])
{
:name
"Don't bin"
:mbql
nil
:type
"type/Coordinate"
}
)))))
(
def
^
:private
dimension-options-for-response
(
m/map-kv
(
fn
[
k
v
]
...
...
@@ -153,10 +155,10 @@
(
dimension-index-for-type
"type/DateTime"
#
(
=
"Day"
(
:name
%
))))
(
def
^
:private
numeric-default-index
(
dimension-index-for-type
"type/Number"
#
(
.contains
^
String
(
:name
%
)
"
default binning
"
)))
(
dimension-index-for-type
"type/Number"
#
(
.contains
^
String
(
:name
%
)
"
Auto bin
"
)))
(
def
^
:private
coordinate-default-index
(
dimension-index-for-type
"type/Coordinate"
#
(
.contains
^
String
(
:name
%
)
"
default binning
"
)))
(
dimension-index-for-type
"type/Coordinate"
#
(
.contains
^
String
(
:name
%
)
"
Auto bin
"
)))
(
defn-
assoc-field-dimension-options
[{
:keys
[
base_type
special_type
min_value
max_value
]
:as
field
}]
(
let
[[
default-option
all-options
]
(
cond
...
...
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