Skip to content
Snippets Groups Projects
Commit cf0008c1 authored by Maz Ameli's avatar Maz Ameli
Browse files

change strings, remove dead code

parent f6e84c29
No related branches found
No related tags found
No related merge requests found
......@@ -479,19 +479,6 @@ export class BinnedDimension extends FieldDimension {
return this._parent.baseDimension();
}
subDisplayName(): string {
if (this._args[0] === "num-bins") {
return `Quantized into ${this._args[1]} ${inflect("bins", this._args[1])}`;
} else if (this._args[0] === "bin-width") {
const binWidth = this._args[1];
const units = this.field().isCoordinate()
? inflect("degree", binWidth)
: "";
return `Quantized by ${binWidth}${units}`;
}
return JSON.stringify(this._args);
}
subTriggerDisplayName(): string {
if (this._args[0] === "num-bins") {
return `${this._args[1]} ${inflect("bins", this._args[1])}`;
......
......@@ -76,7 +76,7 @@
updated-table)))
(def ^:private dimension-options
(let [default-entry ["Quantized by the default binning strategy for the field" ["default"]]]
(let [default-entry ["Auto bin" ["default"]]]
(zipmap (range)
(concat
(map (fn [[name param]]
......@@ -103,18 +103,18 @@
:mbql (apply vector "binning-strategy" nil params)
:type "type/Number"})
[default-entry
["Quantized by 10 equally sized bins" ["num-bins" 10]]
["Quantized by 50 equally sized bins" ["num-bins" 50]]
["Quantized by 100 equally sized bins" ["num-bins" 100]]])
["10 bins" ["num-bins" 10]]
["50 bins" ["num-bins" 50]]
["100 bins" ["num-bins" 100]]])
(map (fn [[name params]]
{:name name
:mbql (apply vector "binning-strategy" nil params)
:type "type/Coordinate"})
[default-entry
["Quantized by 1 degree" ["bin-width" 1.0]]
["Quantized by 10 degree" ["bin-width" 10.0]]
["Quantized by 20 degree" ["bin-width" 20.0]]
["Quantized by 50 degree" ["bin-width" 50.0]]])))))
["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]]])))))
(def ^:private dimension-options-for-response
(m/map-kv (fn [k v]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment