Files
firefly-iii/frontend/src/pages/dashboard/HomeChart.vue
2022-05-02 18:54:43 +02:00

177 lines
4.8 KiB
Vue

<!--
- HomeChart.vue
- Copyright (c) 2022 james@firefly-iii.org
-
- This file is part of Firefly III (https://github.com/firefly-iii).
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<template>
<div>
<ApexChart width="100%" ref="chart" height="350" type="line" :options="options" :series="series"></ApexChart>
</div>
</template>
<script>
import {defineAsyncComponent} from "vue";
import Overview from '../../api/chart/account/overview';
//import {mapGetters, useStore} from "vuex";
import format from "date-fns/format";
import {useQuasar} from "quasar";
import {useFireflyIIIStore} from "../../stores/fireflyiii";
export default {
name: "HomeChart",
computed: {
//...mapGetters('fireflyiii', ['getRange', 'getCacheKey']),
},
data() {
return {
range: {
start: null,
end: null
},
loading: false,
currencies: [],
options: {
theme: {
mode: 'dark'
},
dataLabels: {
enabled: false
},
noData: {
text: 'Loading...'
},
chart: {
id: 'vuechart-home',
toolbar: {
show: true,
tools: {
download: false,
selection: false,
pan: false
}
}
},
yaxis: {
labels: {
formatter: this.numberFormatter
}
},
labels: [],
xaxis: {
categories: [],
},
},
series: [],
locale: 'en-US',
dateFormat: 'MMMM d, y',
store: null,
}
},
created() {
const $q = useQuasar();
this.locale = $q.lang.getLocale();
this.dateFormat = this.$t('config.month_and_day_fns');
},
mounted() {
const $q = useQuasar();
this.options.theme.mode = $q.dark.isActive ? 'dark' : 'light';
this.store = useFireflyIIIStore();
if (null === this.range.start || null === this.range.end) {
// subscribe, then update:
this.store.$onAction(
({name, $store, args, after, onError,}) => {
after((result) => {
if (name === 'setRange') {
this.range = result;
this.buildChart();
}
})
}
)
}
if (null !== this.store.getRange.start && null !== this.store.getRange.end) {
this.buildChart();
}
},
methods: {
numberFormatter: function (value, index) {
let currencyCode = this.currencies[index] ?? 'EUR';
return Intl.NumberFormat(this.locale, {style: 'currency', currency: currencyCode}).format(value);
},
buildChart: function () {
if (null !== this.store.getRange.start && null !== this.store.getRange.end) {
let start = this.store.getRange.start;
let end = this.store.getRange.end;
if (false === this.loading) {
this.loading = true;
const overview = new Overview();
// generate labels:
this.generateStaticLabels({start: start, end: end});
overview.overview({start: start, end: end}, this.getCacheKey).then(data => {
this.generateSeries(data.data)
});
}
}
},
generateSeries: function (data) {
this.series = [];
let series;
for (let i in data) {
if (data.hasOwnProperty(i)) {
series = {};
series.name = data[i].label;
series.data = [];
this.currencies.push(data[i].currency_code);
for (let ii in data[i].entries) {
series.data.push(data[i].entries[ii]);
}
this.series.push(series);
}
}
this.loading = false;
},
generateStaticLabels: function (range) {
let loop = new Date(range.start);
let newDate;
let labels = [];
while (loop <= range.end) {
labels.push(format(loop, this.dateFormat));
newDate = loop.setDate(loop.getDate() + 1);
loop = new Date(newDate);
}
this.options = {
...this.options,
...{
labels: labels
},
};
}
},
components: {
ApexChart: defineAsyncComponent(() => import('vue3-apexcharts')),
}
}
</script>
<style scoped>
</style>