Browse Source

Refactoring

pull/5012/head
Thomas Kaul 1 week ago
parent
commit
eee81d2122
  1. 30
      apps/api/src/models/rules/account-cluster-risk/current-investment.ts
  2. 8
      apps/client/src/app/pages/i18n/i18n-page.html

30
apps/api/src/models/rules/account-cluster-risk/current-investment.ts

@ -2,11 +2,9 @@ import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.in
import { Rule } from '@ghostfolio/api/models/rule';
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
import { I18nService } from '@ghostfolio/api/services/i18n/i18n.service';
import {
PortfolioDetails,
PortfolioPosition,
UserSettings
} from '@ghostfolio/common/interfaces';
import { PortfolioDetails, UserSettings } from '@ghostfolio/common/interfaces';
import { Account } from '@prisma/client';
export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
private accounts: PortfolioDetails['accounts'];
@ -27,36 +25,36 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
public evaluate(ruleSettings: Settings) {
const accounts: {
[symbol: string]: Pick<PortfolioPosition, 'name'> & {
[symbol: string]: Pick<Account, 'name'> & {
investment: number;
};
} = {};
for (const [accountId, account] of Object.entries(this.accounts)) {
accounts[accountId] = {
name: account.name,
investment: account.valueInBaseCurrency
investment: account.valueInBaseCurrency,
name: account.name
};
}
let maxItem: (typeof accounts)[0];
let maxAccount: (typeof accounts)[0];
let totalInvestment = 0;
for (const account of Object.values(accounts)) {
if (!maxItem) {
maxItem = account;
if (!maxAccount) {
maxAccount = account;
}
// Calculate total investment
totalInvestment += account.investment;
// Find maximum
if (account.investment > maxItem?.investment) {
maxItem = account;
if (account.investment > maxAccount?.investment) {
maxAccount = account;
}
}
const maxInvestmentRatio = maxItem?.investment / totalInvestment || 0;
const maxInvestmentRatio = maxAccount?.investment / totalInvestment || 0;
if (maxInvestmentRatio > ruleSettings.thresholdMax) {
return {
@ -64,8 +62,8 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
id: 'rule.accountClusterRiskCurrentInvestment.false',
languageCode: this.getLanguageCode(),
placeholders: {
maxAccountName: maxAccount.name,
maxInvestmentRatio: (maxInvestmentRatio * 100).toPrecision(3),
maxItemName: maxItem.name,
thresholdMax: ruleSettings.thresholdMax * 100
}
}),
@ -78,8 +76,8 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
id: 'rule.accountClusterRiskCurrentInvestment.true',
languageCode: this.getLanguageCode(),
placeholders: {
maxAccountName: maxAccount.name,
maxInvestmentRatio: (maxInvestmentRatio * 100).toPrecision(3),
maxItemName: maxItem.name,
thresholdMax: ruleSettings.thresholdMax * 100
}
}),

8
apps/client/src/app/pages/i18n/i18n-page.html

@ -14,12 +14,12 @@
<li i18n="@@rule.accountClusterRiskCurrentInvestment">Investment</li>
<li i18n="@@rule.accountClusterRiskCurrentInvestment.false">
Over $&#123;thresholdMax&#125;% of your current investment is at
$&#123;maxItemName&#125; ($&#123;maxInvestmentRatio&#125;%)
$&#123;maxAccountName&#125; ($&#123;maxInvestmentRatio&#125;%)
</li>
<li i18n="@@rule.accountClusterRiskCurrentInvestment.true">
The major part of your current investment is at $&#123;maxItemName&#125;
($&#123;maxInvestmentRatio&#125;%) and does not exceed
$&#123;thresholdMax&#125;%
The major part of your current investment is at
$&#123;maxAccountName&#125; ($&#123;maxInvestmentRatio&#125;%) and does
not exceed $&#123;thresholdMax&#125;%
</li>
<li i18n="@@rule.accountClusterRiskSingleAccount">Single Account</li>
<li i18n="@@rule.accountClusterRiskSingleAccount.false">

Loading…
Cancel
Save