frequi_origin/src/components/charts/BalanceChart.vue

111 lines
2.6 KiB
Vue
Raw Normal View History

2021-12-19 19:06:25 +00:00
<template>
<v-chart
v-if="currencies"
:option="balanceChartOptions"
:theme="settingsStore.chartTheme"
autoresize
/>
2021-12-19 19:06:25 +00:00
</template>
<script lang="ts">
import ECharts from 'vue-echarts';
import { EChartsOption } from 'echarts';
import { use } from 'echarts/core';
import { CanvasRenderer } from 'echarts/renderers';
import { PieChart } from 'echarts/charts';
import { LabelLayout } from 'echarts/features';
import {
DatasetComponent,
LegendComponent,
TitleComponent,
TooltipComponent,
} from 'echarts/components';
2022-01-24 18:47:33 +00:00
import { BalanceRecords } from '@/types';
2022-01-06 08:11:36 +00:00
import { formatPriceCurrency } from '@/shared/formatters';
2022-07-07 18:44:19 +00:00
import { defineComponent, computed } from 'vue';
import { useSettingsStore } from '@/stores/settings';
2021-12-19 19:06:25 +00:00
use([
PieChart,
CanvasRenderer,
DatasetComponent,
LegendComponent,
TitleComponent,
TooltipComponent,
LabelLayout,
]);
2022-04-16 18:29:53 +00:00
export default defineComponent({
name: 'BalanceChart',
2021-12-19 19:06:25 +00:00
components: {
'v-chart': ECharts,
},
2022-04-16 18:29:53 +00:00
props: {
currencies: { required: true, type: Array as () => BalanceRecords[] },
showTitle: { required: false, type: Boolean },
},
setup(props) {
const settingsStore = useSettingsStore();
2021-12-19 19:06:25 +00:00
2022-04-16 18:29:53 +00:00
const balanceChartOptions = computed((): EChartsOption => {
return {
title: {
text: 'Balance',
show: props.showTitle,
2022-01-06 08:11:36 +00:00
},
2022-04-16 18:29:53 +00:00
center: ['50%', '50%'],
backgroundColor: 'rgba(0, 0, 0, 0)',
dataset: {
dimensions: ['balance', 'currency', 'est_stake', 'free', 'used', 'stake'],
source: props.currencies,
},
tooltip: {
trigger: 'item',
formatter: (params) => {
return `${formatPriceCurrency(params.value.balance, params.value.currency, 8)}<br />${
params.percent
}% (${formatPriceCurrency(params.value.est_stake, params.value.stake)})`;
2021-12-19 19:06:25 +00:00
},
},
2022-04-16 18:29:53 +00:00
// legend: {
// orient: 'vertical',
// right: 10,
// top: 20,
// bottom: 20,
// },
series: [
{
type: 'pie',
radius: ['40%', '70%'],
encode: {
value: 'est_stake',
itemName: 'currency',
tooltip: ['balance', 'currency'],
},
label: {
formatter: '{b} - {d}%',
},
tooltip: {
show: true,
},
},
],
};
});
return { balanceChartOptions, settingsStore };
2022-04-16 18:29:53 +00:00
},
});
2021-12-19 19:06:25 +00:00
</script>
<style lang="scss" scoped>
.echarts {
width: 100%;
height: 100%;
min-height: 240px;
}
</style>