Skip to content

Commit 2f35f72

Browse files
Feature/extend export by platforms (ghostfolio#4360)
* Extend export by platforms * Update changelog
1 parent 622393a commit 2f35f72

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

CHANGELOG.md

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

1010
### Added
1111

12+
- Extended the export functionality by the platforms
1213
- Extended the _Trackinsight_ data enhancer for asset profile data by `cusip`
1314
- Added _Storybook_ to the build process
1415

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

+25-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { TagService } from '@ghostfolio/api/services/tag/tag.service';
55
import { Filter, Export } from '@ghostfolio/common/interfaces';
66

77
import { Injectable } from '@nestjs/common';
8+
import { Platform } from '@prisma/client';
89

910
@Injectable()
1011
export class ExportService {
@@ -25,15 +26,37 @@ export class ExportService {
2526
userCurrency: string;
2627
userId: string;
2728
}): Promise<Export> {
29+
const platforms: Platform[] = [];
30+
2831
const accounts = (
2932
await this.accountService.accounts({
33+
include: {
34+
Platform: true
35+
},
3036
orderBy: {
3137
name: 'asc'
3238
},
3339
where: { userId }
3440
})
3541
).map(
36-
({ balance, comment, currency, id, isExcluded, name, platformId }) => {
42+
({
43+
balance,
44+
comment,
45+
currency,
46+
id,
47+
isExcluded,
48+
name,
49+
platformId,
50+
Platform: platform
51+
}) => {
52+
if (
53+
!platforms.some(({ id: currentPlatformId }) => {
54+
return currentPlatformId === platform.id;
55+
})
56+
) {
57+
platforms.push(platform);
58+
}
59+
3760
return {
3861
balance,
3962
comment,
@@ -76,6 +99,7 @@ export class ExportService {
7699
return {
77100
meta: { date: new Date().toISOString(), version: environment.version },
78101
accounts,
102+
platforms,
79103
tags,
80104
activities: activities.map(
81105
({

libs/common/src/lib/interfaces/export.interface.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Account, Order, Tag } from '@prisma/client';
1+
import { Account, Order, Platform, Tag } from '@prisma/client';
22

33
export interface Export {
44
accounts: Omit<Account, 'createdAt' | 'updatedAt' | 'userId'>[];
@@ -16,6 +16,7 @@ export interface Export {
1616
date: string;
1717
version: string;
1818
};
19+
platforms: Platform[];
1920
tags: Omit<Tag, 'userId'>[];
2021
user: { settings: { currency: string } };
2122
}

0 commit comments

Comments
 (0)