269 lines
9.9 KiB
Vue
269 lines
9.9 KiB
Vue
<template>
|
|
<v-chart autoresize class="account-balance-trends-chart-container" :class="{ 'transition-in': skeleton }" :option="chartOptions"/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { useTheme } from 'vuetify';
|
|
import type { CallbackDataParams } from 'echarts/types/dist/shared';
|
|
|
|
import { useI18n } from '@/locales/helpers.ts';
|
|
import { type CommonAccountBalanceTrendsChartProps, useAccountBalanceTrendsChartBase } from '@/components/base/AccountBalanceTrendsChartBase.ts'
|
|
|
|
import { useUserStore } from '@/stores/user.ts';
|
|
|
|
import type { NameValue } from '@/core/base.ts';
|
|
import { TextDirection } from '@/core/text.ts';
|
|
import type { ColorStyleValue } from '@/core/color.ts';
|
|
import { ThemeType } from '@/core/theme.ts';
|
|
import { AccountBalanceTrendChartType } from '@/core/statistics.ts';
|
|
import { DEFAULT_CHART_COLORS } from '@/consts/color.ts';
|
|
|
|
import { isArray } from '@/lib/common.ts';
|
|
import { getExpenseAndIncomeAmountColor } from '@/lib/ui/common.ts';
|
|
|
|
interface DesktopAccountBalanceTrendsChartProps extends CommonAccountBalanceTrendsChartProps {
|
|
legendName: string;
|
|
skeleton?: boolean;
|
|
type?: number;
|
|
}
|
|
|
|
interface AccountBalanceTrendsChartDataItem {
|
|
id: string;
|
|
name: string;
|
|
itemStyle: {
|
|
color: ColorStyleValue;
|
|
color0?: ColorStyleValue;
|
|
borderColor?: ColorStyleValue;
|
|
borderColor0?: ColorStyleValue;
|
|
};
|
|
selected: boolean;
|
|
type: string;
|
|
areaStyle?: object;
|
|
stack: string;
|
|
animation: boolean;
|
|
data: (number | number[])[];
|
|
}
|
|
|
|
const props = defineProps<DesktopAccountBalanceTrendsChartProps>();
|
|
|
|
const theme = useTheme();
|
|
const { tt, getCurrentLanguageTextDirection, formatAmountToLocalizedNumeralsWithCurrency } = useI18n();
|
|
const { allDataItems, allDisplayDateRanges } = useAccountBalanceTrendsChartBase(props);
|
|
|
|
const userStore = useUserStore();
|
|
|
|
const textDirection = computed<TextDirection>(() => getCurrentLanguageTextDirection());
|
|
const isDarkMode = computed<boolean>(() => theme.global.name.value === ThemeType.Dark);
|
|
|
|
const allSeries = computed<AccountBalanceTrendsChartDataItem[]>(() => {
|
|
const series: AccountBalanceTrendsChartDataItem = {
|
|
id: 'accountBalance',
|
|
name: props.legendName,
|
|
itemStyle: {
|
|
color: `#${DEFAULT_CHART_COLORS[0]}`
|
|
},
|
|
selected: true,
|
|
type: 'line',
|
|
stack: 'a',
|
|
animation: !props.skeleton,
|
|
data: []
|
|
};
|
|
|
|
if (props.type === AccountBalanceTrendChartType.Area.type) {
|
|
series.areaStyle = {};
|
|
} else if (props.type === AccountBalanceTrendChartType.Column.type) {
|
|
series.type = 'bar';
|
|
} else if (props.type === AccountBalanceTrendChartType.Candlestick.type) {
|
|
const expenseIncomeAmountColor = getExpenseAndIncomeAmountColor(userStore.currentUserExpenseAmountColor, userStore.currentUserIncomeAmountColor, isDarkMode.value);
|
|
series.type = 'candlestick';
|
|
series.itemStyle.color = expenseIncomeAmountColor.incomeAmountColor;
|
|
series.itemStyle.color0 = expenseIncomeAmountColor.expenseAmountColor;
|
|
series.itemStyle.borderColor = expenseIncomeAmountColor.incomeAmountColor;
|
|
series.itemStyle.borderColor0 = expenseIncomeAmountColor.expenseAmountColor;
|
|
}
|
|
|
|
for (let i = 0; i < allDataItems.value.length; i++) {
|
|
const item = allDataItems.value[i];
|
|
|
|
if (props.type === AccountBalanceTrendChartType.Candlestick.type) {
|
|
series.data.push([
|
|
item.openingBalance,
|
|
item.closingBalance,
|
|
item.minimumBalance,
|
|
item.maximumBalance
|
|
]);
|
|
} else {
|
|
series.data.push(item.closingBalance);
|
|
}
|
|
}
|
|
|
|
return [series];
|
|
});
|
|
|
|
const yAxisWidth = computed<number>(() => {
|
|
let maxValue = Number.MIN_SAFE_INTEGER;
|
|
let minValue = Number.MAX_SAFE_INTEGER;
|
|
let width = 90;
|
|
|
|
if (!allSeries.value || !allSeries.value.length) {
|
|
return width;
|
|
}
|
|
|
|
for (let i = 0; i < allSeries.value.length; i++) {
|
|
for (let j = 0; j < allSeries.value[i].data.length; j++) {
|
|
const data = allSeries.value[i].data[j];
|
|
let value: number;
|
|
|
|
if (isArray(data)) {
|
|
value = data[1]; // for candlestick, use closing balance
|
|
} else {
|
|
value = data as number; // for line or bar chart
|
|
}
|
|
|
|
if (value > maxValue) {
|
|
maxValue = value;
|
|
}
|
|
|
|
if (value < minValue) {
|
|
minValue = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
const maxValueText = formatAmountToLocalizedNumeralsWithCurrency(maxValue, props.account.currency);
|
|
const minValueText = formatAmountToLocalizedNumeralsWithCurrency(minValue, props.account.currency);
|
|
const maxLengthText = maxValueText.length > minValueText.length ? maxValueText : minValueText;
|
|
|
|
const canvas = document.createElement('canvas');
|
|
const context = canvas.getContext('2d');
|
|
|
|
if (context) {
|
|
context.font = '12px Arial';
|
|
|
|
const textMetrics = context.measureText(maxLengthText);
|
|
const actualWidth = Math.round(textMetrics.width) + 20;
|
|
|
|
if (actualWidth >= 200) {
|
|
width = 200;
|
|
} if (actualWidth > 90) {
|
|
width = actualWidth;
|
|
}
|
|
}
|
|
|
|
return width;
|
|
});
|
|
|
|
const chartOptions = computed<object>(() => {
|
|
return {
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'cross',
|
|
label: {
|
|
backgroundColor: isDarkMode.value ? '#333' : '#fff',
|
|
color: isDarkMode.value ? '#eee' : '#333'
|
|
},
|
|
},
|
|
backgroundColor: isDarkMode.value ? '#333' : '#fff',
|
|
borderColor: isDarkMode.value ? '#333' : '#fff',
|
|
textStyle: {
|
|
color: isDarkMode.value ? '#eee' : '#333'
|
|
},
|
|
formatter: (params: CallbackDataParams[]) => {
|
|
if (props.type === AccountBalanceTrendChartType.Candlestick.type) {
|
|
const dataIndex = params[0].dataIndex;
|
|
const dataItem = allDataItems.value[dataIndex];
|
|
const displayItems: NameValue[] = [
|
|
{
|
|
name: tt('Opening Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.openingBalance, props.account.currency)
|
|
},
|
|
{
|
|
name: tt('Closing Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.closingBalance, props.account.currency)
|
|
},
|
|
{
|
|
name: tt('Minimum Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.minimumBalance, props.account.currency)
|
|
},
|
|
{
|
|
name: tt('Maximum Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.maximumBalance, props.account.currency)
|
|
},
|
|
{
|
|
name: tt('Median Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.medianBalance, props.account.currency)
|
|
},
|
|
{
|
|
name: tt('Average Balance'),
|
|
value: formatAmountToLocalizedNumeralsWithCurrency(dataItem.averageBalance, props.account.currency)
|
|
}
|
|
];
|
|
|
|
let tooltip = `${params[0].name} ${props.legendName}<br/>`;
|
|
|
|
for (let i = 0; i < displayItems.length; i++) {
|
|
tooltip += `<div><span class="chart-pointer" style="background-color: #${DEFAULT_CHART_COLORS[i]}"></span>`
|
|
+ `<span>${displayItems[i].name}</span><span class="ms-5" style="float: inline-end">${displayItems[i].value}</span><br/>`
|
|
+ `</div>`;
|
|
}
|
|
|
|
return tooltip;
|
|
} else {
|
|
const amount = params[0].data as number;
|
|
const value = formatAmountToLocalizedNumeralsWithCurrency(amount, props.account.currency);
|
|
|
|
return `${params[0].name}<br/>`
|
|
+ '<div><span class="chart-pointer" style="background-color: #' + DEFAULT_CHART_COLORS[0] + '"></span>'
|
|
+ `<span>${props.legendName}</span><span class="ms-5" style="float: inline-end">${value}</span><br/>`
|
|
+ '</div>';
|
|
}
|
|
}
|
|
},
|
|
grid: {
|
|
left: yAxisWidth.value,
|
|
right: 20
|
|
},
|
|
xAxis: [
|
|
{
|
|
type: 'category',
|
|
data: allDisplayDateRanges.value,
|
|
inverse: textDirection.value === TextDirection.RTL
|
|
}
|
|
],
|
|
yAxis: [
|
|
{
|
|
type: 'value',
|
|
axisLabel: {
|
|
formatter: (value: string) => {
|
|
return formatAmountToLocalizedNumeralsWithCurrency(parseInt(value), props.account.currency);
|
|
}
|
|
},
|
|
axisPointer: {
|
|
label: {
|
|
formatter: (params: CallbackDataParams) => {
|
|
return formatAmountToLocalizedNumeralsWithCurrency(Math.trunc(params.value as number), props.account.currency);
|
|
}
|
|
}
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
color: isDarkMode.value ? '#4f4f4f' : '#e1e6f2',
|
|
}
|
|
}
|
|
}
|
|
],
|
|
series: allSeries.value
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.account-balance-trends-chart-container {
|
|
width: 100%;
|
|
height: 400px;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|