This commit is contained in:
Quinn Dougherty 2022-03-29 11:05:27 -04:00
parent 517a9128e2
commit bcff646e54

View File

@ -11,13 +11,13 @@ let sparkly = (
numbers: array<float>, numbers: array<float>,
~options = {minimum: None, maximum: None} ~options = {minimum: None, maximum: None}
) => { ) => {
// if not numbers is not an array, throw typeerror "Expected an array"
// Unlike reference impl, we assume that all numbers are finite, i.e. no NaN. // Unlike reference impl, we assume that all numbers are finite, i.e. no NaN.
let ticks = [`▁`, `▂`, `▃`, `▄`, `▅`, `▆`, `▇`, `█`] let ticks = [`▁`, `▂`, `▃`, `▄`, `▅`, `▆`, `▇`, `█`]
let minimum = E.O.default(Js.Math.minMany_float(numbers), options.minimum) let minimum = E.O.default(Js.Math.minMany_float(numbers), options.minimum)
let maximum = E.O.default(Js.Math.maxMany_float(numbers), options.maximum) let maximum = E.O.default(Js.Math.maxMany_float(numbers), options.maximum)
// Use a high tick if data is constant and max is not equal // Use a high tick if data is constant and max is not equal
let ticks = if minimum == maximum && maximum != 0.0 { let ticks = if minimum == maximum && maximum != 0.0 {
[ticks[4]] [ticks[4]]
@ -26,7 +26,6 @@ let sparkly = (
} }
let toMapWith = (number: float) => { let toMapWith = (number: float) => {
let ret = {
let tickIndex = Js.Math.ceil_int((number /. maximum) *. Belt.Int.toFloat(Belt.Array.length(ticks))) - 1 let tickIndex = Js.Math.ceil_int((number /. maximum) *. Belt.Int.toFloat(Belt.Array.length(ticks))) - 1
let tickIndex = if maximum == 0.0 || tickIndex < 0 { let tickIndex = if maximum == 0.0 || tickIndex < 0 {
@ -34,11 +33,8 @@ let sparkly = (
} else { } else {
tickIndex tickIndex
} }
ticks[tickIndex] ticks[tickIndex]
} }
ret Js.Array.joinWith("", Belt.Array.map(numbers, toMapWith))
}
let ret = Belt.Array.map(numbers, toMapWith)
// Belt.Array.reduce(ret, "", (x, y) => x ++ y)
Js.Array.joinWith("", ret)
} }