mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* chore: add formatting and linting for javascript code relates to #1295 * use spaces instaed * add to recommended extensions * only enforce lint * auto save
This commit is contained in:
parent
fa3b8b078c
commit
4ad28d6eff
30 changed files with 740 additions and 377 deletions
|
@ -1,6 +1,6 @@
|
|||
import { Controller } from "@hotwired/stimulus"
|
||||
import tailwindColors from "@maybe/tailwindcolors"
|
||||
import * as d3 from "d3"
|
||||
import { Controller } from "@hotwired/stimulus";
|
||||
import tailwindColors from "@maybe/tailwindcolors";
|
||||
import * as d3 from "d3";
|
||||
|
||||
export default class extends Controller {
|
||||
static values = {
|
||||
|
@ -8,8 +8,8 @@ export default class extends Controller {
|
|||
strokeWidth: { type: Number, default: 2 },
|
||||
useLabels: { type: Boolean, default: true },
|
||||
useTooltip: { type: Boolean, default: true },
|
||||
usePercentSign: Boolean
|
||||
}
|
||||
usePercentSign: Boolean,
|
||||
};
|
||||
|
||||
_d3SvgMemo = null;
|
||||
_d3GroupMemo = null;
|
||||
|
@ -19,68 +19,63 @@ export default class extends Controller {
|
|||
_normalDataPoints = [];
|
||||
|
||||
connect() {
|
||||
this._install()
|
||||
document.addEventListener("turbo:load", this._reinstall)
|
||||
this._install();
|
||||
document.addEventListener("turbo:load", this._reinstall);
|
||||
}
|
||||
|
||||
disconnect() {
|
||||
this._teardown()
|
||||
document.removeEventListener("turbo:load", this._reinstall)
|
||||
this._teardown();
|
||||
document.removeEventListener("turbo:load", this._reinstall);
|
||||
}
|
||||
|
||||
|
||||
_reinstall = () => {
|
||||
this._teardown()
|
||||
this._install()
|
||||
}
|
||||
this._teardown();
|
||||
this._install();
|
||||
};
|
||||
|
||||
_teardown() {
|
||||
this._d3SvgMemo = null
|
||||
this._d3GroupMemo = null
|
||||
this._d3Tooltip = null
|
||||
this._normalDataPoints = []
|
||||
this._d3SvgMemo = null;
|
||||
this._d3GroupMemo = null;
|
||||
this._d3Tooltip = null;
|
||||
this._normalDataPoints = [];
|
||||
|
||||
this._d3Container.selectAll("*").remove()
|
||||
this._d3Container.selectAll("*").remove();
|
||||
}
|
||||
|
||||
_install() {
|
||||
this._normalizeDataPoints()
|
||||
this._rememberInitialContainerSize()
|
||||
this._draw()
|
||||
this._normalizeDataPoints();
|
||||
this._rememberInitialContainerSize();
|
||||
this._draw();
|
||||
}
|
||||
|
||||
|
||||
_normalizeDataPoints() {
|
||||
this._normalDataPoints = (this.dataValue.values || []).map((d) => ({
|
||||
...d,
|
||||
date: new Date(d.date),
|
||||
value: d.value.amount ? +d.value.amount : +d.value,
|
||||
currency: d.value.currency
|
||||
}))
|
||||
currency: d.value.currency,
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
_rememberInitialContainerSize() {
|
||||
this._d3InitialContainerWidth = this._d3Container.node().clientWidth
|
||||
this._d3InitialContainerHeight = this._d3Container.node().clientHeight
|
||||
this._d3InitialContainerWidth = this._d3Container.node().clientWidth;
|
||||
this._d3InitialContainerHeight = this._d3Container.node().clientHeight;
|
||||
}
|
||||
|
||||
|
||||
_draw() {
|
||||
if (this._normalDataPoints.length < 2) {
|
||||
this._drawEmpty()
|
||||
this._drawEmpty();
|
||||
} else {
|
||||
this._drawChart()
|
||||
this._drawChart();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
_drawEmpty() {
|
||||
this._d3Svg.selectAll(".tick").remove()
|
||||
this._d3Svg.selectAll(".domain").remove()
|
||||
this._d3Svg.selectAll(".tick").remove();
|
||||
this._d3Svg.selectAll(".domain").remove();
|
||||
|
||||
this._drawDashedLineEmptyState()
|
||||
this._drawCenteredCircleEmptyState()
|
||||
this._drawDashedLineEmptyState();
|
||||
this._drawCenteredCircleEmptyState();
|
||||
}
|
||||
|
||||
_drawDashedLineEmptyState() {
|
||||
|
@ -91,7 +86,7 @@ export default class extends Controller {
|
|||
.attr("x2", this._d3InitialContainerWidth / 2)
|
||||
.attr("y2", this._d3InitialContainerHeight)
|
||||
.attr("stroke", tailwindColors.gray[300])
|
||||
.attr("stroke-dasharray", "4, 4")
|
||||
.attr("stroke-dasharray", "4, 4");
|
||||
}
|
||||
|
||||
_drawCenteredCircleEmptyState() {
|
||||
|
@ -100,26 +95,25 @@ export default class extends Controller {
|
|||
.attr("cx", this._d3InitialContainerWidth / 2)
|
||||
.attr("cy", this._d3InitialContainerHeight / 2)
|
||||
.attr("r", 4)
|
||||
.style("fill", tailwindColors.gray[400])
|
||||
.style("fill", tailwindColors.gray[400]);
|
||||
}
|
||||
|
||||
|
||||
_drawChart() {
|
||||
this._drawTrendline()
|
||||
this._drawTrendline();
|
||||
|
||||
if (this.useLabelsValue) {
|
||||
this._drawXAxisLabels()
|
||||
this._drawGradientBelowTrendline()
|
||||
this._drawXAxisLabels();
|
||||
this._drawGradientBelowTrendline();
|
||||
}
|
||||
|
||||
if (this.useTooltipValue) {
|
||||
this._drawTooltip()
|
||||
this._trackMouseForShowingTooltip()
|
||||
this._drawTooltip();
|
||||
this._trackMouseForShowingTooltip();
|
||||
}
|
||||
}
|
||||
|
||||
_drawTrendline() {
|
||||
this._installTrendlineSplit()
|
||||
this._installTrendlineSplit();
|
||||
|
||||
this._d3Group
|
||||
.append("path")
|
||||
|
@ -129,7 +123,7 @@ export default class extends Controller {
|
|||
.attr("d", this._d3Line)
|
||||
.attr("stroke-linejoin", "round")
|
||||
.attr("stroke-linecap", "round")
|
||||
.attr("stroke-width", this.strokeWidthValue)
|
||||
.attr("stroke-width", this.strokeWidthValue);
|
||||
}
|
||||
|
||||
_installTrendlineSplit() {
|
||||
|
@ -139,38 +133,41 @@ export default class extends Controller {
|
|||
.attr("id", `${this.element.id}-split-gradient`)
|
||||
.attr("gradientUnits", "userSpaceOnUse")
|
||||
.attr("x1", this._d3XScale.range()[0])
|
||||
.attr("x2", this._d3XScale.range()[1])
|
||||
.attr("x2", this._d3XScale.range()[1]);
|
||||
|
||||
gradient.append("stop")
|
||||
gradient
|
||||
.append("stop")
|
||||
.attr("class", "start-color")
|
||||
.attr("offset", "0%")
|
||||
.attr("stop-color", this._trendColor)
|
||||
.attr("stop-color", this._trendColor);
|
||||
|
||||
gradient.append("stop")
|
||||
gradient
|
||||
.append("stop")
|
||||
.attr("class", "middle-color")
|
||||
.attr("offset", "100%")
|
||||
.attr("stop-color", this._trendColor)
|
||||
.attr("stop-color", this._trendColor);
|
||||
|
||||
gradient.append("stop")
|
||||
gradient
|
||||
.append("stop")
|
||||
.attr("class", "end-color")
|
||||
.attr("offset", "100%")
|
||||
.attr("stop-color", tailwindColors.gray[300])
|
||||
.attr("stop-color", tailwindColors.gray[300]);
|
||||
}
|
||||
|
||||
_setTrendlineSplitAt(percent) {
|
||||
this._d3Svg
|
||||
.select(`#${this.element.id}-split-gradient`)
|
||||
.select(".middle-color")
|
||||
.attr("offset", `${percent * 100}%`)
|
||||
.attr("offset", `${percent * 100}%`);
|
||||
|
||||
this._d3Svg
|
||||
.select(`#${this.element.id}-split-gradient`)
|
||||
.select(".end-color")
|
||||
.attr("offset", `${percent * 100}%`)
|
||||
.attr("offset", `${percent * 100}%`);
|
||||
|
||||
this._d3Svg
|
||||
.select(`#${this.element.id}-trendline-gradient-rect`)
|
||||
.attr("width", this._d3ContainerWidth * percent)
|
||||
.attr("width", this._d3ContainerWidth * percent);
|
||||
}
|
||||
|
||||
_drawXAxisLabels() {
|
||||
|
@ -181,24 +178,28 @@ export default class extends Controller {
|
|||
.call(
|
||||
d3
|
||||
.axisBottom(this._d3XScale)
|
||||
.tickValues([this._normalDataPoints[0].date, this._normalDataPoints[this._normalDataPoints.length - 1].date])
|
||||
.tickValues([
|
||||
this._normalDataPoints[0].date,
|
||||
this._normalDataPoints[this._normalDataPoints.length - 1].date,
|
||||
])
|
||||
.tickSize(0)
|
||||
.tickFormat(d3.timeFormat("%d %b %Y"))
|
||||
.tickFormat(d3.timeFormat("%d %b %Y")),
|
||||
)
|
||||
.select(".domain")
|
||||
.remove()
|
||||
.remove();
|
||||
|
||||
// Style ticks
|
||||
this._d3Group.selectAll(".tick text")
|
||||
this._d3Group
|
||||
.selectAll(".tick text")
|
||||
.style("fill", tailwindColors.gray[500])
|
||||
.style("font-size", "12px")
|
||||
.style("font-weight", "500")
|
||||
.attr("text-anchor", "middle")
|
||||
.attr("dx", (_d, i) => {
|
||||
// We know we only have 2 values
|
||||
return i === 0 ? "5em" : "-5em"
|
||||
return i === 0 ? "5em" : "-5em";
|
||||
})
|
||||
.attr("dy", "0em")
|
||||
.attr("dy", "0em");
|
||||
}
|
||||
|
||||
_drawGradientBelowTrendline() {
|
||||
|
@ -210,20 +211,23 @@ export default class extends Controller {
|
|||
.attr("gradientUnits", "userSpaceOnUse")
|
||||
.attr("x1", 0)
|
||||
.attr("x2", 0)
|
||||
.attr("y1", this._d3YScale(d3.max(this._normalDataPoints, d => d.value)))
|
||||
.attr("y2", this._d3ContainerHeight)
|
||||
.attr(
|
||||
"y1",
|
||||
this._d3YScale(d3.max(this._normalDataPoints, (d) => d.value)),
|
||||
)
|
||||
.attr("y2", this._d3ContainerHeight);
|
||||
|
||||
gradient
|
||||
.append("stop")
|
||||
.attr("offset", 0)
|
||||
.attr("stop-color", this._trendColor)
|
||||
.attr("stop-opacity", 0.06)
|
||||
.attr("stop-opacity", 0.06);
|
||||
|
||||
gradient
|
||||
.append("stop")
|
||||
.attr("offset", 0.5)
|
||||
.attr("stop-color", this._trendColor)
|
||||
.attr("stop-opacity", 0)
|
||||
.attr("stop-opacity", 0);
|
||||
|
||||
// Clip path makes gradient start at the trendline
|
||||
this._d3Group
|
||||
|
@ -231,11 +235,14 @@ export default class extends Controller {
|
|||
.attr("id", `${this.element.id}-clip-below-trendline`)
|
||||
.append("path")
|
||||
.datum(this._normalDataPoints)
|
||||
.attr("d", d3.area()
|
||||
.x(d => this._d3XScale(d.date))
|
||||
.y0(this._d3ContainerHeight)
|
||||
.y1(d => this._d3YScale(d.value))
|
||||
)
|
||||
.attr(
|
||||
"d",
|
||||
d3
|
||||
.area()
|
||||
.x((d) => this._d3XScale(d.date))
|
||||
.y0(this._d3ContainerHeight)
|
||||
.y1((d) => this._d3YScale(d.value)),
|
||||
);
|
||||
|
||||
// Apply the gradient + clip path
|
||||
this._d3Group
|
||||
|
@ -244,7 +251,7 @@ export default class extends Controller {
|
|||
.attr("width", this._d3ContainerWidth)
|
||||
.attr("height", this._d3ContainerHeight)
|
||||
.attr("clip-path", `url(#${this.element.id}-clip-below-trendline)`)
|
||||
.style("fill", `url(#${this.element.id}-trendline-gradient)`)
|
||||
.style("fill", `url(#${this.element.id}-trendline-gradient)`);
|
||||
}
|
||||
|
||||
_drawTooltip() {
|
||||
|
@ -258,11 +265,11 @@ export default class extends Controller {
|
|||
.style("border", `1px solid ${tailwindColors["alpha-black"][100]}`)
|
||||
.style("border-radius", "10px")
|
||||
.style("pointer-events", "none")
|
||||
.style("opacity", 0) // Starts as hidden
|
||||
.style("opacity", 0); // Starts as hidden
|
||||
}
|
||||
|
||||
_trackMouseForShowingTooltip() {
|
||||
const bisectDate = d3.bisector(d => d.date).left
|
||||
const bisectDate = d3.bisector((d) => d.date).left;
|
||||
|
||||
this._d3Group
|
||||
.append("rect")
|
||||
|
@ -271,24 +278,32 @@ export default class extends Controller {
|
|||
.attr("fill", "none")
|
||||
.attr("pointer-events", "all")
|
||||
.on("mousemove", (event) => {
|
||||
const estimatedTooltipWidth = 250
|
||||
const pageWidth = document.body.clientWidth
|
||||
const tooltipX = event.pageX + 10
|
||||
const overflowX = tooltipX + estimatedTooltipWidth - pageWidth
|
||||
const adjustedX = overflowX > 0 ? event.pageX - overflowX - 20 : tooltipX
|
||||
const estimatedTooltipWidth = 250;
|
||||
const pageWidth = document.body.clientWidth;
|
||||
const tooltipX = event.pageX + 10;
|
||||
const overflowX = tooltipX + estimatedTooltipWidth - pageWidth;
|
||||
const adjustedX =
|
||||
overflowX > 0 ? event.pageX - overflowX - 20 : tooltipX;
|
||||
|
||||
const [xPos] = d3.pointer(event)
|
||||
const x0 = bisectDate(this._normalDataPoints, this._d3XScale.invert(xPos), 1)
|
||||
const d0 = this._normalDataPoints[x0 - 1]
|
||||
const d1 = this._normalDataPoints[x0]
|
||||
const d = xPos - this._d3XScale(d0.date) > this._d3XScale(d1.date) - xPos ? d1 : d0
|
||||
const xPercent = this._d3XScale(d.date) / this._d3ContainerWidth
|
||||
const [xPos] = d3.pointer(event);
|
||||
const x0 = bisectDate(
|
||||
this._normalDataPoints,
|
||||
this._d3XScale.invert(xPos),
|
||||
1,
|
||||
);
|
||||
const d0 = this._normalDataPoints[x0 - 1];
|
||||
const d1 = this._normalDataPoints[x0];
|
||||
const d =
|
||||
xPos - this._d3XScale(d0.date) > this._d3XScale(d1.date) - xPos
|
||||
? d1
|
||||
: d0;
|
||||
const xPercent = this._d3XScale(d.date) / this._d3ContainerWidth;
|
||||
|
||||
this._setTrendlineSplitAt(xPercent)
|
||||
this._setTrendlineSplitAt(xPercent);
|
||||
|
||||
// Reset
|
||||
this._d3Group.selectAll(".data-point-circle").remove()
|
||||
this._d3Group.selectAll(".guideline").remove()
|
||||
this._d3Group.selectAll(".data-point-circle").remove();
|
||||
this._d3Group.selectAll(".guideline").remove();
|
||||
|
||||
// Guideline
|
||||
this._d3Group
|
||||
|
@ -299,7 +314,7 @@ export default class extends Controller {
|
|||
.attr("x2", this._d3XScale(d.date))
|
||||
.attr("y2", this._d3ContainerHeight)
|
||||
.attr("stroke", tailwindColors.gray[300])
|
||||
.attr("stroke-dasharray", "4, 4")
|
||||
.attr("stroke-dasharray", "4, 4");
|
||||
|
||||
// Big circle
|
||||
this._d3Group
|
||||
|
@ -310,7 +325,7 @@ export default class extends Controller {
|
|||
.attr("r", 8)
|
||||
.attr("fill", this._trendColor)
|
||||
.attr("fill-opacity", "0.1")
|
||||
.attr("pointer-events", "none")
|
||||
.attr("pointer-events", "none");
|
||||
|
||||
// Small circle
|
||||
this._d3Group
|
||||
|
@ -320,31 +335,32 @@ export default class extends Controller {
|
|||
.attr("cy", this._d3YScale(d.value))
|
||||
.attr("r", 3)
|
||||
.attr("fill", this._trendColor)
|
||||
.attr("pointer-events", "none")
|
||||
.attr("pointer-events", "none");
|
||||
|
||||
// Render tooltip
|
||||
this._d3Tooltip
|
||||
.html(this._tooltipTemplate(d))
|
||||
.style("opacity", 1)
|
||||
.style("z-index", 999)
|
||||
.style("left", adjustedX + "px")
|
||||
.style("top", event.pageY - 10 + "px")
|
||||
.style("left", `${adjustedX}px`)
|
||||
.style("top", `${event.pageY - 10}px`);
|
||||
})
|
||||
.on("mouseout", (event) => {
|
||||
const hoveringOnGuideline = event.toElement?.classList.contains("guideline")
|
||||
const hoveringOnGuideline =
|
||||
event.toElement?.classList.contains("guideline");
|
||||
|
||||
if (!hoveringOnGuideline) {
|
||||
this._d3Group.selectAll(".guideline").remove()
|
||||
this._d3Group.selectAll(".data-point-circle").remove()
|
||||
this._d3Tooltip.style("opacity", 0)
|
||||
this._d3Group.selectAll(".guideline").remove();
|
||||
this._d3Group.selectAll(".data-point-circle").remove();
|
||||
this._d3Tooltip.style("opacity", 0);
|
||||
|
||||
this._setTrendlineSplitAt(1)
|
||||
this._setTrendlineSplitAt(1);
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
_tooltipTemplate(datum) {
|
||||
return (`
|
||||
return `
|
||||
<div style="margin-bottom: 4px; color: ${tailwindColors.gray[500]};">
|
||||
${d3.timeFormat("%b %d, %Y")(datum.date)}
|
||||
</div>
|
||||
|
@ -364,15 +380,21 @@ export default class extends Controller {
|
|||
${this._tooltipValue(datum)}${this.usePercentSignValue ? "%" : ""}
|
||||
</div>
|
||||
|
||||
${this.usePercentSignValue || datum.trend.value === 0 || datum.trend.value.amount === 0 ? `
|
||||
${
|
||||
this.usePercentSignValue ||
|
||||
datum.trend.value === 0 ||
|
||||
datum.trend.value.amount === 0
|
||||
? `
|
||||
<span style="width: 80px;"></span>
|
||||
` : `
|
||||
`
|
||||
: `
|
||||
<span style="color: ${this._tooltipTrendColor(datum)};">
|
||||
${this._tooltipChange(datum)} (${datum.trend.percent}%)
|
||||
</span>
|
||||
`}
|
||||
`
|
||||
}
|
||||
</div>
|
||||
`)
|
||||
`;
|
||||
}
|
||||
|
||||
_tooltipTrendColor(datum) {
|
||||
|
@ -380,30 +402,28 @@ export default class extends Controller {
|
|||
up: tailwindColors.success,
|
||||
down: tailwindColors.error,
|
||||
flat: tailwindColors.gray[500],
|
||||
}[datum.trend.direction]
|
||||
}[datum.trend.direction];
|
||||
}
|
||||
|
||||
_tooltipValue(datum) {
|
||||
if (datum.currency) {
|
||||
return this._currencyValue(datum)
|
||||
} else {
|
||||
return datum.value
|
||||
return this._currencyValue(datum);
|
||||
}
|
||||
return datum.value;
|
||||
}
|
||||
|
||||
_tooltipChange(datum) {
|
||||
if (datum.currency) {
|
||||
return this._currencyChange(datum)
|
||||
} else {
|
||||
return this._decimalChange(datum)
|
||||
return this._currencyChange(datum);
|
||||
}
|
||||
return this._decimalChange(datum);
|
||||
}
|
||||
|
||||
_currencyValue(datum) {
|
||||
return Intl.NumberFormat(undefined, {
|
||||
style: "currency",
|
||||
currency: datum.currency,
|
||||
}).format(datum.value)
|
||||
}).format(datum.value);
|
||||
}
|
||||
|
||||
_currencyChange(datum) {
|
||||
|
@ -411,109 +431,113 @@ export default class extends Controller {
|
|||
style: "currency",
|
||||
currency: datum.currency,
|
||||
signDisplay: "always",
|
||||
}).format(datum.trend.value.amount)
|
||||
}).format(datum.trend.value.amount);
|
||||
}
|
||||
|
||||
_decimalChange(datum) {
|
||||
return Intl.NumberFormat(undefined, {
|
||||
style: "decimal",
|
||||
signDisplay: "always",
|
||||
}).format(datum.trend.value)
|
||||
}).format(datum.trend.value);
|
||||
}
|
||||
|
||||
|
||||
_createMainSvg() {
|
||||
return this._d3Container
|
||||
.append("svg")
|
||||
.attr("width", this._d3InitialContainerWidth)
|
||||
.attr("height", this._d3InitialContainerHeight)
|
||||
.attr("viewBox", [0, 0, this._d3InitialContainerWidth, this._d3InitialContainerHeight])
|
||||
.attr("viewBox", [
|
||||
0,
|
||||
0,
|
||||
this._d3InitialContainerWidth,
|
||||
this._d3InitialContainerHeight,
|
||||
]);
|
||||
}
|
||||
|
||||
_createMainGroup() {
|
||||
return this._d3Svg
|
||||
.append("g")
|
||||
.attr("transform", `translate(${this._margin.left},${this._margin.top})`)
|
||||
.attr("transform", `translate(${this._margin.left},${this._margin.top})`);
|
||||
}
|
||||
|
||||
|
||||
get _d3Svg() {
|
||||
if (this._d3SvgMemo) {
|
||||
return this._d3SvgMemo
|
||||
} else {
|
||||
return this._d3SvgMemo = this._createMainSvg()
|
||||
if (!this._d3SvgMemo) {
|
||||
this._d3SvgMemo = this._createMainSvg();
|
||||
}
|
||||
return this._d3SvgMemo;
|
||||
}
|
||||
|
||||
get _d3Group() {
|
||||
if (this._d3GroupMemo) {
|
||||
return this._d3GroupMemo
|
||||
} else {
|
||||
return this._d3GroupMemo = this._createMainGroup()
|
||||
if (!this._d3GroupMemo) {
|
||||
this._d3GroupMemo = this._createMainGroup();
|
||||
}
|
||||
return this._d3GroupMemo;
|
||||
}
|
||||
|
||||
get _margin() {
|
||||
if (this.useLabelsValue) {
|
||||
return { top: 20, right: 0, bottom: 30, left: 0 }
|
||||
} else {
|
||||
return { top: 0, right: 0, bottom: 0, left: 0 }
|
||||
return { top: 20, right: 0, bottom: 30, left: 0 };
|
||||
}
|
||||
return { top: 0, right: 0, bottom: 0, left: 0 };
|
||||
}
|
||||
|
||||
get _d3ContainerWidth() {
|
||||
return this._d3InitialContainerWidth - this._margin.left - this._margin.right
|
||||
return (
|
||||
this._d3InitialContainerWidth - this._margin.left - this._margin.right
|
||||
);
|
||||
}
|
||||
|
||||
get _d3ContainerHeight() {
|
||||
return this._d3InitialContainerHeight - this._margin.top - this._margin.bottom
|
||||
return (
|
||||
this._d3InitialContainerHeight - this._margin.top - this._margin.bottom
|
||||
);
|
||||
}
|
||||
|
||||
get _d3Container() {
|
||||
return d3.select(this.element)
|
||||
return d3.select(this.element);
|
||||
}
|
||||
|
||||
get _trendColor() {
|
||||
if (this._trendDirection === "flat") {
|
||||
return tailwindColors.gray[500]
|
||||
} else if (this._trendDirection === this._favorableDirection) {
|
||||
return tailwindColors.green[500]
|
||||
} else {
|
||||
return tailwindColors.error
|
||||
return tailwindColors.gray[500];
|
||||
}
|
||||
if (this._trendDirection === this._favorableDirection) {
|
||||
return tailwindColors.green[500];
|
||||
}
|
||||
return tailwindColors.error;
|
||||
}
|
||||
|
||||
get _trendDirection() {
|
||||
return this.dataValue.trend.direction
|
||||
return this.dataValue.trend.direction;
|
||||
}
|
||||
|
||||
get _favorableDirection() {
|
||||
return this.dataValue.trend.favorable_direction
|
||||
return this.dataValue.trend.favorable_direction;
|
||||
}
|
||||
|
||||
get _d3Line() {
|
||||
return d3
|
||||
.line()
|
||||
.x(d => this._d3XScale(d.date))
|
||||
.y(d => this._d3YScale(d.value))
|
||||
.x((d) => this._d3XScale(d.date))
|
||||
.y((d) => this._d3YScale(d.value));
|
||||
}
|
||||
|
||||
get _d3XScale() {
|
||||
return d3
|
||||
.scaleTime()
|
||||
.rangeRound([0, this._d3ContainerWidth])
|
||||
.domain(d3.extent(this._normalDataPoints, d => d.date))
|
||||
.domain(d3.extent(this._normalDataPoints, (d) => d.date));
|
||||
}
|
||||
|
||||
get _d3YScale() {
|
||||
const reductionPercent = this.useLabelsValue ? 0.15 : 0.05
|
||||
const dataMin = d3.min(this._normalDataPoints, d => d.value)
|
||||
const dataMax = d3.max(this._normalDataPoints, d => d.value)
|
||||
const padding = (dataMax - dataMin) * reductionPercent
|
||||
const reductionPercent = this.useLabelsValue ? 0.15 : 0.05;
|
||||
const dataMin = d3.min(this._normalDataPoints, (d) => d.value);
|
||||
const dataMax = d3.max(this._normalDataPoints, (d) => d.value);
|
||||
const padding = (dataMax - dataMin) * reductionPercent;
|
||||
|
||||
return d3
|
||||
.scaleLinear()
|
||||
.rangeRound([this._d3ContainerHeight, 0])
|
||||
.domain([dataMin - padding, dataMax + padding])
|
||||
.domain([dataMin - padding, dataMax + padding]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue