170 lines
4.8 KiB
Svelte
170 lines
4.8 KiB
Svelte
<script lang="ts">
|
|
import highcharts from "$lib/highcharts.ts";
|
|
import { abbreviateNumber } from "$lib/utils";
|
|
import Lazy from "svelte-lazy";
|
|
import { onMount } from "svelte";
|
|
|
|
export let data;
|
|
export let displayStatement;
|
|
export let filterRule = "annual";
|
|
export let statementConfig;
|
|
export let processedData = null; // Accept pre-processed data
|
|
|
|
let config = null;
|
|
let isLoaded = false;
|
|
let chartElement;
|
|
|
|
// Memoize chart options to prevent unnecessary recalculations
|
|
function getChartOptions(xList, valueList, labelName) {
|
|
return {
|
|
chart: {
|
|
type: "column",
|
|
backgroundColor: "#09090B",
|
|
plotBackgroundColor: "#09090B",
|
|
height: 360,
|
|
animation: false,
|
|
},
|
|
credits: { enabled: false },
|
|
legend: { enabled: false },
|
|
plotOptions: {
|
|
series: {
|
|
color: "white",
|
|
animation: false,
|
|
dataLabels: {
|
|
enabled: false,
|
|
color: "white",
|
|
style: {
|
|
fontSize: "13px",
|
|
fontWeight: "bold",
|
|
},
|
|
formatter: function () {
|
|
return abbreviateNumber(this?.y);
|
|
},
|
|
},
|
|
},
|
|
},
|
|
title: {
|
|
text: `<h3 class="mt-3 mb-1">${labelName}</h3>`,
|
|
useHTML: true,
|
|
style: { color: "white" },
|
|
},
|
|
xAxis: {
|
|
endOnTick: false,
|
|
categories: xList,
|
|
crosshair: {
|
|
color: "#fff", // Set the color of the crosshair line
|
|
width: 1, // Adjust the line width as needed
|
|
dashStyle: "Solid",
|
|
},
|
|
labels: {
|
|
style: {
|
|
color: "#fff",
|
|
},
|
|
distance: 10, // Increases space between label and axis
|
|
},
|
|
},
|
|
yAxis: {
|
|
gridLineWidth: 1,
|
|
gridLineColor: "#111827",
|
|
labels: {
|
|
style: { color: "white" },
|
|
formatter: function () {
|
|
return abbreviateNumber(this.value);
|
|
},
|
|
},
|
|
title: { text: null },
|
|
opposite: true,
|
|
},
|
|
tooltip: {
|
|
shared: true,
|
|
useHTML: true,
|
|
backgroundColor: "rgba(0, 0, 0, 0.8)",
|
|
borderColor: "rgba(255, 255, 255, 0.2)",
|
|
borderWidth: 1,
|
|
style: {
|
|
color: "#fff",
|
|
fontSize: "16px",
|
|
padding: "10px",
|
|
},
|
|
borderRadius: 4,
|
|
formatter: function () {
|
|
let tooltipContent = `<span class="text-white m-auto text-black text-[1rem] font-[501]">${this?.x}</span><br>`;
|
|
this.points.forEach((point) => {
|
|
tooltipContent += `<span class="text-white font-semibold text-sm">${point.series.name}:</span>
|
|
<span class="text-white font-normal text-sm" style="color:${point.color}">${abbreviateNumber(
|
|
point.y,
|
|
)}</span><br>`;
|
|
});
|
|
return tooltipContent;
|
|
},
|
|
},
|
|
series: [
|
|
{
|
|
name: labelName,
|
|
data: valueList,
|
|
color: "#fff",
|
|
borderRadius: "1px",
|
|
},
|
|
],
|
|
};
|
|
}
|
|
|
|
async function plotData() {
|
|
isLoaded = false;
|
|
|
|
// Simulate some processing time to ensure loading state is visible
|
|
// This can be removed in production if the actual data processing takes enough time
|
|
if (!processedData) {
|
|
// If no processed data, just show loading
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
// Add a small delay to ensure the loading state is visible
|
|
await new Promise((resolve) => setTimeout(resolve, 300));
|
|
|
|
const { xList, valueList, labelName } = processedData[displayStatement];
|
|
return getChartOptions(xList, valueList, labelName);
|
|
} catch (error) {
|
|
console.error("Error processing chart data:", error);
|
|
return null;
|
|
} finally {
|
|
// Don't set isLoaded here - we'll set it after the chart is rendered
|
|
}
|
|
}
|
|
|
|
// This function will be called whenever the relevant props change
|
|
async function updateChart() {
|
|
config = await plotData();
|
|
// Only set isLoaded to true after a small delay to ensure the chart is fully rendered
|
|
setTimeout(() => {
|
|
isLoaded = true;
|
|
}, 100);
|
|
}
|
|
|
|
onMount(() => {
|
|
updateChart();
|
|
});
|
|
|
|
// Watch for changes in props and update chart accordingly
|
|
$: if (filterRule || displayStatement || data || processedData) {
|
|
updateChart();
|
|
}
|
|
</script>
|
|
|
|
{#if !isLoaded}
|
|
<div
|
|
class="w-full h-[360px] flex justify-center items-center m-auto border border-gray-800 rounded"
|
|
>
|
|
<span class="loading loading-bars loading-sm"></span>
|
|
</div>
|
|
{:else}
|
|
<Lazy fadeOption={{ delay: 50, duration: 100 }} keep={true}>
|
|
<div
|
|
class="border border-gray-800 rounded w-full"
|
|
use:highcharts={config}
|
|
bind:this={chartElement}
|
|
></div>
|
|
</Lazy>
|
|
{/if}
|