Skip to content

Commit 6c624fe

Browse files
Feature/eliminate firstOrderDate in favor of dateOfFirstActivity in portfolio summary component (ghostfolio#4462)
* Eliminate firstOrderDate in favor of dateOfFirstActivity in portfolio summary component * Update changelog
1 parent 5ecdb5f commit 6c624fe

File tree

6 files changed

+3
-12
lines changed

6 files changed

+3
-12
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
- Improved the export functionality by applying filters on accounts and tags
1919
- Improved the symbol validation in the _Yahoo Finance_ service (get asset profiles)
20+
- Eliminated `firstOrderDate` from the summary of the portfolio details endpoint in favor of using `dateOfFirstActivity` from the user endpoint
2021
- Refactored `lodash.uniq` with `Array.from(new Set(...))`
2122
- Refreshed the cryptocurrencies list
2223
- Improved the language localization for Turkish (`tr`)

apps/api/src/app/portfolio/portfolio.service.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,6 @@ export class PortfolioService {
19181918
annualizedPerformancePercentWithCurrencyEffect,
19191919
cash,
19201920
excludedAccountsAndActivities,
1921-
firstOrderDate,
19221921
netPerformance,
19231922
netPerformancePercentage,
19241923
netPerformancePercentageWithCurrencyEffect,

apps/api/src/helper/object.helper.spec.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,6 @@ describe('redactAttributes', () => {
15191519
annualizedPerformancePercentWithCurrencyEffect: 0.1694019484552876,
15201520
cash: null,
15211521
excludedAccountsAndActivities: null,
1522-
firstOrderDate: '2017-01-02T23:00:00.000Z',
15231522
netPerformance: null,
15241523
netPerformancePercentage: 2.3039314216696174,
15251524
netPerformancePercentageWithCurrencyEffect: 2.3589806001456606,
@@ -3023,7 +3022,6 @@ describe('redactAttributes', () => {
30233022
annualizedPerformancePercentWithCurrencyEffect: 0.1694019484552876,
30243023
cash: null,
30253024
excludedAccountsAndActivities: null,
3026-
firstOrderDate: '2017-01-02T23:00:00.000Z',
30273025
netPerformance: null,
30283026
netPerformancePercentage: 2.3039314216696174,
30293027
netPerformancePercentageWithCurrencyEffect: 2.3589806001456606,

apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export class PortfolioSummaryComponent implements OnChanges {
4040

4141
public ngOnChanges() {
4242
if (this.summary) {
43-
if (this.summary.firstOrderDate) {
44-
this.timeInMarket = formatDistanceToNow(this.summary.firstOrderDate, {
43+
if (this.user.dateOfFirstActivity) {
44+
this.timeInMarket = formatDistanceToNow(this.user.dateOfFirstActivity, {
4545
locale: getDateFnsLocale(this.language)
4646
});
4747
} else {

apps/client/src/app/services/data.service.ts

-6
Original file line numberDiff line numberDiff line change
@@ -529,12 +529,6 @@ export class DataService {
529529
})
530530
.pipe(
531531
map((response) => {
532-
if (response.summary?.firstOrderDate) {
533-
response.summary.firstOrderDate = parseISO(
534-
response.summary.firstOrderDate
535-
);
536-
}
537-
538532
if (response.holdings) {
539533
for (const symbol of Object.keys(response.holdings)) {
540534
response.holdings[symbol].assetClassLabel = translate(

libs/common/src/lib/interfaces/portfolio-summary.interface.ts

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export interface PortfolioSummary extends PortfolioPerformance {
1616
filteredValueInBaseCurrency?: number;
1717
filteredValueInPercentage?: number;
1818
fireWealth: number;
19-
firstOrderDate: Date;
2019
grossPerformance: number;
2120
grossPerformanceWithCurrencyEffect: number;
2221
interest: number;

0 commit comments

Comments
 (0)