414 lines
14 KiB
TypeScript
414 lines
14 KiB
TypeScript
import { AccountType, AccountCategory } from '@/core/account.ts';
|
|
import { PARENT_ACCOUNT_CURRENCY_PLACEHOLDER } from '@/consts/currency.ts';
|
|
import { type AccountBalance, type CategorizedAccount, type AccountCategoriesWithVisibleCount, Account } from '@/models/account.ts';
|
|
|
|
export function getAccountOrSubAccountId(account: Account, subAccountId: string): string | null {
|
|
if (account.type === AccountType.SingleAccount.type) {
|
|
return account.id;
|
|
} else if (account.type === AccountType.MultiSubAccounts.type && !subAccountId) {
|
|
return account.id;
|
|
} else if (account.type === AccountType.MultiSubAccounts.type && subAccountId) {
|
|
if (!account.childrenAccounts || !account.childrenAccounts.length) {
|
|
return null;
|
|
}
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
|
|
if (subAccountId && subAccountId === subAccount.id) {
|
|
return subAccount.id;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function getAccountOrSubAccountComment(account: Account, subAccountId: string): string | null {
|
|
if (account.type === AccountType.SingleAccount.type) {
|
|
return account.comment;
|
|
} else if (account.type === AccountType.MultiSubAccounts.type && !subAccountId) {
|
|
return account.comment;
|
|
} else if (account.type === AccountType.MultiSubAccounts.type && subAccountId) {
|
|
if (!account.childrenAccounts || !account.childrenAccounts.length) {
|
|
return null;
|
|
}
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
|
|
if (subAccountId && subAccountId === subAccount.id) {
|
|
return subAccount.comment;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function getSubAccountCurrencies(account: Account, showHidden: boolean, subAccountId: string): string[] {
|
|
if (!account.childrenAccounts || !account.childrenAccounts.length) {
|
|
return [];
|
|
}
|
|
|
|
const subAccountCurrenciesMap: Record<string, boolean> = {};
|
|
const subAccountCurrencies: string[] = [];
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
|
|
if (!showHidden && subAccount.hidden) {
|
|
continue;
|
|
}
|
|
|
|
if (subAccountId && subAccountId === subAccount.id) {
|
|
return [subAccount.currency];
|
|
} else {
|
|
if (!subAccountCurrenciesMap[subAccount.currency]) {
|
|
subAccountCurrenciesMap[subAccount.currency] = true;
|
|
subAccountCurrencies.push(subAccount.currency);
|
|
}
|
|
}
|
|
}
|
|
|
|
return subAccountCurrencies;
|
|
}
|
|
|
|
export function getCategorizedAccountsMap(allAccounts: Account[]): Record<number, CategorizedAccount> {
|
|
const ret: Record<number, CategorizedAccount> = {};
|
|
|
|
for (let i = 0; i < allAccounts.length; i++) {
|
|
const account = allAccounts[i];
|
|
|
|
if (!ret[account.category]) {
|
|
const categoryInfo = AccountCategory.valueOf(account.category);
|
|
|
|
if (categoryInfo) {
|
|
ret[account.category] = {
|
|
category: account.category,
|
|
name: categoryInfo.name,
|
|
icon: categoryInfo.defaultAccountIconId,
|
|
accounts: []
|
|
};
|
|
}
|
|
}
|
|
|
|
if (ret[account.category]) {
|
|
const accountList = ret[account.category].accounts;
|
|
accountList.push(account);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
export function getCategorizedAccounts(allAccounts: Account[]): CategorizedAccount[] {
|
|
const ret: CategorizedAccount[] = [];
|
|
const allCategories = AccountCategory.values();
|
|
const categorizedAccounts = getCategorizedAccountsMap(allAccounts);
|
|
|
|
for (let i = 0; i < allCategories.length; i++) {
|
|
const category = allCategories[i];
|
|
|
|
if (!categorizedAccounts[category.type]) {
|
|
continue;
|
|
}
|
|
|
|
const accountCategory = categorizedAccounts[category.type];
|
|
ret.push(accountCategory);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
export function getCategorizedAccountsWithVisibleCount(categorizedAccountsMap: Record<number, CategorizedAccount>): AccountCategoriesWithVisibleCount[] {
|
|
const ret: AccountCategoriesWithVisibleCount[] = [];
|
|
const allCategories = AccountCategory.values();
|
|
|
|
for (let i = 0; i < allCategories.length; i++) {
|
|
const accountCategory = allCategories[i];
|
|
|
|
if (!categorizedAccountsMap[accountCategory.type] || !categorizedAccountsMap[accountCategory.type].accounts) {
|
|
continue;
|
|
}
|
|
|
|
const allAccounts = categorizedAccountsMap[accountCategory.type].accounts;
|
|
const allSubAccounts: Record<string, Account[]> = {};
|
|
const allVisibleSubAccountCounts: Record<string, number> = {};
|
|
const allFirstVisibleSubAccountIndexes: Record<string, number> = {};
|
|
let allVisibleAccountCount = 0;
|
|
let firstVisibleAccountIndex = -1;
|
|
|
|
for (let j = 0; j < allAccounts.length; j++) {
|
|
const account = allAccounts[j];
|
|
|
|
if (!account.hidden) {
|
|
allVisibleAccountCount++;
|
|
|
|
if (firstVisibleAccountIndex === -1) {
|
|
firstVisibleAccountIndex = j;
|
|
}
|
|
}
|
|
|
|
if (account.type === AccountType.MultiSubAccounts.type && account.childrenAccounts) {
|
|
let visibleSubAccountCount = 0;
|
|
let firstVisibleSubAccountIndex = -1;
|
|
|
|
for (let k = 0; k < account.childrenAccounts.length; k++) {
|
|
const subAccount = account.childrenAccounts[k];
|
|
|
|
if (!subAccount.hidden) {
|
|
visibleSubAccountCount++;
|
|
|
|
if (firstVisibleSubAccountIndex === -1) {
|
|
firstVisibleSubAccountIndex = k;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (account.childrenAccounts.length > 0) {
|
|
allSubAccounts[account.id] = account.childrenAccounts;
|
|
allVisibleSubAccountCounts[account.id] = visibleSubAccountCount;
|
|
allFirstVisibleSubAccountIndexes[account.id] = firstVisibleSubAccountIndex;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (allAccounts.length > 0) {
|
|
ret.push({
|
|
category: accountCategory.type,
|
|
name: accountCategory.name,
|
|
icon: accountCategory.defaultAccountIconId,
|
|
allAccounts: allAccounts,
|
|
allVisibleAccountCount: allVisibleAccountCount,
|
|
firstVisibleAccountIndex: firstVisibleAccountIndex,
|
|
allSubAccounts: allSubAccounts,
|
|
allVisibleSubAccountCounts: allVisibleSubAccountCounts,
|
|
allFirstVisibleSubAccountIndexes: allFirstVisibleSubAccountIndexes
|
|
});
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
export function getAllFilteredAccountsBalance(categorizedAccounts: CategorizedAccount[], accountFilter: (account: Account) => boolean): AccountBalance[] {
|
|
const allAccountCategories = AccountCategory.values();
|
|
const ret: AccountBalance[] = [];
|
|
|
|
for (let categoryIdx = 0; categoryIdx < allAccountCategories.length; categoryIdx++) {
|
|
const accountCategory = allAccountCategories[categoryIdx];
|
|
|
|
if (!categorizedAccounts[accountCategory.type] || !categorizedAccounts[accountCategory.type].accounts) {
|
|
continue;
|
|
}
|
|
|
|
for (let accountIdx = 0; accountIdx < categorizedAccounts[accountCategory.type].accounts.length; accountIdx++) {
|
|
const account = categorizedAccounts[accountCategory.type].accounts[accountIdx];
|
|
|
|
if (account.hidden || !accountFilter(account)) {
|
|
continue;
|
|
}
|
|
|
|
if (account.type === AccountType.SingleAccount.type) {
|
|
ret.push({
|
|
balance: account.balance,
|
|
isAsset: !!account.isAsset,
|
|
isLiability: !!account.isLiability,
|
|
currency: account.currency
|
|
});
|
|
} else if (account.type === AccountType.MultiSubAccounts.type && account.childrenAccounts) {
|
|
for (let subAccountIdx = 0; subAccountIdx < account.childrenAccounts.length; subAccountIdx++) {
|
|
const subAccount = account.childrenAccounts[subAccountIdx];
|
|
|
|
if (subAccount.hidden || !accountFilter(subAccount)) {
|
|
continue;
|
|
}
|
|
|
|
ret.push({
|
|
balance: subAccount.balance,
|
|
isAsset: !!subAccount.isAsset,
|
|
isLiability: !!subAccount.isLiability,
|
|
currency: subAccount.currency
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
export function getFinalAccountIdsByFilteredAccountIds(allAccountsMap: Record<string, Account>, filteredAccountIds: Record<string, boolean>): string {
|
|
let finalAccountIds = '';
|
|
|
|
if (!allAccountsMap) {
|
|
return finalAccountIds;
|
|
}
|
|
|
|
for (const accountId in allAccountsMap) {
|
|
if (!Object.prototype.hasOwnProperty.call(allAccountsMap, accountId)) {
|
|
continue;
|
|
}
|
|
|
|
const account = allAccountsMap[accountId];
|
|
|
|
if (filteredAccountIds && !isAccountOrSubAccountsAllChecked(account, filteredAccountIds)) {
|
|
continue;
|
|
}
|
|
|
|
if (finalAccountIds.length > 0) {
|
|
finalAccountIds += ',';
|
|
}
|
|
|
|
finalAccountIds += account.id;
|
|
}
|
|
|
|
return finalAccountIds;
|
|
}
|
|
|
|
export function getUnifiedSelectedAccountsCurrencyOrDefaultCurrency(allAccountsMap: Record<string, Account>, selectedAccountIds: Record<string, boolean>, defaultCurrency: string): string {
|
|
if (!selectedAccountIds) {
|
|
return defaultCurrency;
|
|
}
|
|
|
|
let accountCurrency = '';
|
|
|
|
for (const accountId in selectedAccountIds) {
|
|
if (!Object.prototype.hasOwnProperty.call(selectedAccountIds, accountId)) {
|
|
continue;
|
|
}
|
|
|
|
const account = allAccountsMap[accountId];
|
|
|
|
if (account.currency === PARENT_ACCOUNT_CURRENCY_PLACEHOLDER) {
|
|
continue;
|
|
}
|
|
|
|
if (accountCurrency === '') {
|
|
accountCurrency = account.currency;
|
|
} else if (accountCurrency !== account.currency) {
|
|
return defaultCurrency;
|
|
}
|
|
}
|
|
|
|
if (accountCurrency) {
|
|
return accountCurrency;
|
|
}
|
|
|
|
return defaultCurrency;
|
|
}
|
|
|
|
export function selectAccountOrSubAccounts(filterAccountIds: Record<string, boolean>, account: Account, value: boolean): void {
|
|
if (account.type === AccountType.SingleAccount.type) {
|
|
filterAccountIds[account.id] = value;
|
|
} else if (account.type === AccountType.MultiSubAccounts.type) {
|
|
if (!account.childrenAccounts || !account.childrenAccounts.length) {
|
|
return;
|
|
}
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
filterAccountIds[subAccount.id] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
export function selectAll(filterAccountIds: Record<string, boolean>, allAccountsMap: Record<string, Account>): void {
|
|
for (const accountId in filterAccountIds) {
|
|
if (!Object.prototype.hasOwnProperty.call(filterAccountIds, accountId)) {
|
|
continue;
|
|
}
|
|
|
|
const account = allAccountsMap[accountId];
|
|
|
|
if (account && account.type === AccountType.SingleAccount.type) {
|
|
filterAccountIds[account.id] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
export function selectNone(filterAccountIds: Record<string, boolean>, allAccountsMap: Record<string, Account>): void {
|
|
for (const accountId in filterAccountIds) {
|
|
if (!Object.prototype.hasOwnProperty.call(filterAccountIds, accountId)) {
|
|
continue;
|
|
}
|
|
|
|
const account = allAccountsMap[accountId];
|
|
|
|
if (account && account.type === AccountType.SingleAccount.type) {
|
|
filterAccountIds[account.id] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
export function selectInvert(filterAccountIds: Record<string, boolean>, allAccountsMap: Record<string, Account>): void {
|
|
for (const accountId in filterAccountIds) {
|
|
if (!Object.prototype.hasOwnProperty.call(filterAccountIds, accountId)) {
|
|
continue;
|
|
}
|
|
|
|
const account = allAccountsMap[accountId];
|
|
|
|
if (account && account.type === AccountType.SingleAccount.type) {
|
|
filterAccountIds[account.id] = !filterAccountIds[account.id];
|
|
}
|
|
}
|
|
}
|
|
|
|
export function isAccountOrSubAccountsAllChecked(account: Account, filterAccountIds: Record<string, boolean>): boolean {
|
|
if (!account.childrenAccounts) {
|
|
return !filterAccountIds[account.id];
|
|
}
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
if (filterAccountIds[subAccount.id]) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
export function isAccountOrSubAccountsHasButNotAllChecked(account: Account, filterAccountIds: Record<string, boolean>): boolean {
|
|
if (!account.childrenAccounts) {
|
|
return false;
|
|
}
|
|
|
|
let checkedCount = 0;
|
|
|
|
for (let i = 0; i < account.childrenAccounts.length; i++) {
|
|
const subAccount = account.childrenAccounts[i];
|
|
if (!filterAccountIds[subAccount.id]) {
|
|
checkedCount++;
|
|
}
|
|
}
|
|
|
|
return checkedCount > 0 && checkedCount < account.childrenAccounts.length;
|
|
}
|
|
|
|
export function setAccountSuitableIcon(account: Account, oldCategory: number, newCategory: number): void {
|
|
const allCategories = AccountCategory.values();
|
|
|
|
for (let i = 0; i < allCategories.length; i++) {
|
|
if (allCategories[i].type === oldCategory) {
|
|
if (account.icon !== allCategories[i].defaultAccountIconId) {
|
|
return;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (let i = 0; i < allCategories.length; i++) {
|
|
if (allCategories[i].type === newCategory) {
|
|
account.icon = allCategories[i].defaultAccountIconId;
|
|
}
|
|
}
|
|
}
|