firefly-iii/resources/assets/v2/pages/dashboard/accounts.js

223 lines
8.5 KiB
JavaScript
Raw Normal View History

2023-07-24 11:58:35 -05:00
/*
* accounts.js
* Copyright (c) 2023 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/>.
*/
import ApexCharts from "apexcharts";
import {getVariable} from "../../store/get-variable.js";
2023-07-26 00:07:53 -05:00
import {setVariable} from "../../store/set-variable.js";
2023-07-24 11:58:35 -05:00
import Dashboard from "../../api/v2/chart/account/dashboard.js";
import formatLocal from "../../util/format.js";
import {format} from "date-fns";
import formatMoney from "../../util/format-money.js";
import Get from "../../api/v1/accounts/get.js";
// this is very ugly, but I have no better ideas at the moment to save the currency info
// for each series.
window.currencies = [];
export default () => ({
loading: false,
loadingAccounts: false,
accountList: [],
2023-07-26 00:07:53 -05:00
autoConversion: false,
2023-07-24 11:58:35 -05:00
chart: null,
2023-08-06 11:33:29 -05:00
chartData: null,
chartOptions: null,
2023-07-26 00:07:53 -05:00
switchAutoConversion() {
this.autoConversion = !this.autoConversion;
setVariable('autoConversion', this.autoConversion);
this.loadChart();
},
2023-08-06 11:33:29 -05:00
getFreshData() {
2023-07-24 11:58:35 -05:00
const dashboard = new Dashboard();
dashboard.dashboard(new Date(window.store.get('start')), new Date(window.store.get('end')), null).then((response) => {
2023-08-06 11:33:29 -05:00
this.chartData = response.data;
this.generateOptions(this.chartData);
this.drawChart();
});
},
generateOptions(data) {
window.currencies = [];
let options = {
legend: {show: false},
chart: {
height: 400,
type: 'line'
},
series: [],
settings: [],
xaxis: {
categories: [],
labels: {
formatter: function (value) {
if (undefined === value) {
return '';
2023-07-24 11:58:35 -05:00
}
2023-08-06 11:33:29 -05:00
const date = new Date(value);
if (date instanceof Date && !isNaN(date)) {
return formatLocal(date, 'PP');
2023-07-24 11:58:35 -05:00
}
2023-08-06 11:33:29 -05:00
console.error('Could not parse "' + value + '", return "".');
return ':(';
2023-07-24 11:58:35 -05:00
}
2023-08-06 11:33:29 -05:00
}
},
yaxis: {
labels: {
formatter: function (value, index) {
if (undefined === value) {
return value;
}
if (undefined === index) {
return value;
}
if (typeof index === 'object') {
index = index.seriesIndex;
}
//console.log(index);
let currencyCode = window.currencies[index] ?? 'EUR';
return formatMoney(value, currencyCode);
}
2023-08-06 11:33:29 -05:00
}
},
};
// render data:
for (let i = 0; i < data.length; i++) {
if (data.hasOwnProperty(i)) {
let current = data[i];
let entry = [];
let collection = [];
// use the "native" currency code and use the "native_entries" as array
if (this.autoConversion) {
window.currencies.push(current.native_code);
collection = current.native_entries;
}
if (!this.autoConversion) {
window.currencies.push(current.currency_code);
collection = current.entries;
}
2023-08-06 11:33:29 -05:00
for (const [ii, value] of Object.entries(collection)) {
entry.push({x: format(new Date(ii), 'yyyy-MM-dd'), y: parseFloat(value)});
2023-07-24 11:58:35 -05:00
}
2023-08-06 11:33:29 -05:00
options.series.push({name: current.label, data: entry});
2023-07-24 11:58:35 -05:00
}
2023-08-06 11:33:29 -05:00
}
this.chartOptions = options;
},
loadChart() {
if (true === this.loading) {
return;
}
this.loading = true;
if (null === this.chartData) {
this.getFreshData();
}
if (null !== this.chartData) {
this.generateOptions(this.chartData);
this.drawChart();
}
this.loading = false;
},
drawChart() {
if (null !== this.chart) {
// chart already in place, refresh:
this.chart.updateOptions(this.chartOptions);
}
if (null === this.chart) {
this.chart = new ApexCharts(document.querySelector("#account-chart"), this.chartOptions);
this.chart.render();
}
},
loadAccounts() {
2023-08-06 00:02:55 -05:00
if (true === this.loadingAccounts) {
2023-07-24 11:58:35 -05:00
return;
}
this.loadingAccounts = true;
const max = 10;
2023-08-06 00:02:55 -05:00
let totalAccounts = 0;
let count = 0;
let accounts = [];
2023-07-24 11:58:35 -05:00
Promise.all([getVariable('frontpageAccounts'),]).then((values) => {
2023-08-06 00:02:55 -05:00
totalAccounts = values[0].length;
for (let i in values[0]) {
let account = values[0];
if (account.hasOwnProperty(i)) {
let accountId = account[i];
2023-07-24 11:58:35 -05:00
// grab account info for box:
(new Get).get(accountId, new Date(window.store.get('end'))).then((response) => {
2023-08-04 12:10:49 -05:00
let parent = response.data.data;
2023-07-24 11:58:35 -05:00
// get groups for account:
2023-08-04 12:10:49 -05:00
(new Get).transactions(parent.id, 1).then((response) => {
let groups = [];
2023-07-24 11:58:35 -05:00
for (let ii = 0; ii < response.data.data.length; ii++) {
if (ii >= max) {
break;
}
let current = response.data.data[ii];
let group = {
title: null === current.attributes.group_title ? '' : current.attributes.group_title,
id: current.id,
transactions: [],
};
for (let iii = 0; iii < current.attributes.transactions.length; iii++) {
let currentTransaction = current.attributes.transactions[iii];
group.transactions.push({
description: currentTransaction.description,
id: current.id,
amount: formatMoney(currentTransaction.amount, currentTransaction.currency_code),
});
}
2023-08-04 12:10:49 -05:00
groups.push(group);
2023-07-24 11:58:35 -05:00
}
2023-08-06 00:02:55 -05:00
accounts.push({
2023-08-04 12:10:49 -05:00
name: parent.attributes.name,
id: parent.id,
balance: formatMoney(parent.attributes.current_balance, parent.attributes.currency_code),
groups: groups,
2023-08-06 00:02:55 -05:00
});
count++;
if (count === totalAccounts) {
this.accountList = accounts;
}
2023-07-24 11:58:35 -05:00
});
});
}
}
2023-08-06 00:02:55 -05:00
//this.loadingAccounts = false;
2023-07-24 11:58:35 -05:00
});
},
init() {
2023-07-26 00:07:53 -05:00
Promise.all([getVariable('viewRange', '1M'), getVariable('autoConversion', false),]).then((values) => {
this.autoConversion = values[1];
// console.log(values[1]);
2023-07-24 11:58:35 -05:00
this.loadChart();
this.loadAccounts();
});
window.store.observe('end', () => {
2023-08-06 11:33:29 -05:00
this.chartData = null;
2023-07-24 11:58:35 -05:00
this.loadChart();
this.loadAccounts();
});
},
});