Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from ghostfolio:main #506

Merged
merged 3 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added

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

## 2.141.0 - 2025-02-25

### Added
Expand Down
26 changes: 25 additions & 1 deletion apps/api/src/app/export/export.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { TagService } from '@ghostfolio/api/services/tag/tag.service';
import { Filter, Export } from '@ghostfolio/common/interfaces';

import { Injectable } from '@nestjs/common';
import { Platform } from '@prisma/client';

@Injectable()
export class ExportService {
Expand All @@ -25,15 +26,37 @@ export class ExportService {
userCurrency: string;
userId: string;
}): Promise<Export> {
const platforms: Platform[] = [];

const accounts = (
await this.accountService.accounts({
include: {
Platform: true
},
orderBy: {
name: 'asc'
},
where: { userId }
})
).map(
({ balance, comment, currency, id, isExcluded, name, platformId }) => {
({
balance,
comment,
currency,
id,
isExcluded,
name,
platformId,
Platform: platform
}) => {
if (
!platforms.some(({ id: currentPlatformId }) => {
return currentPlatformId === platform.id;
})
) {
platforms.push(platform);
}

return {
balance,
comment,
Expand Down Expand Up @@ -76,6 +99,7 @@ export class ExportService {
return {
meta: { date: new Date().toISOString(), version: environment.version },
accounts,
platforms,
tags,
activities: activities.map(
({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,13 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface {
return {};
});

const isin = profile?.isin?.split(';')?.[0];
const cusip = profile?.cusip;

if (cusip) {
response.cusip = cusip;
}

const isin = profile?.isins?.[0];

if (isin) {
response.isin = isin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export class DataGatheringService {
assetSubClass,
countries,
currency,
cusip,
dataSource,
figi,
figiComposite,
Expand All @@ -218,6 +219,7 @@ export class DataGatheringService {
assetSubClass,
countries,
currency,
cusip,
dataSource,
figi,
figiComposite,
Expand All @@ -234,6 +236,7 @@ export class DataGatheringService {
assetSubClass,
countries,
currency,
cusip,
figi,
figiComposite,
figiShareClass,
Expand Down
3 changes: 2 additions & 1 deletion libs/common/src/lib/interfaces/export.interface.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Account, Order, Tag } from '@prisma/client';
import { Account, Order, Platform, Tag } from '@prisma/client';

export interface Export {
accounts: Omit<Account, 'createdAt' | 'updatedAt' | 'userId'>[];
Expand All @@ -16,6 +16,7 @@ export interface Export {
date: string;
version: string;
};
platforms: Platform[];
tags: Omit<Tag, 'userId'>[];
user: { settings: { currency: string } };
}
4 changes: 2 additions & 2 deletions libs/ui/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"executor": "@storybook/angular:build-storybook",
"outputs": ["{options.outputDir}"],
"options": {
"outputDir": "dist/storybook/ui",
"outputDir": "dist/apps/client/development/storybook",
"configDir": "libs/ui/.storybook",
"browserTarget": "ui:build-storybook",
"compodoc": false,
Expand All @@ -61,7 +61,7 @@
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "ui:build-storybook",
"staticFilePath": "dist/storybook/ui"
"staticFilePath": "dist/storybook"
},
"configurations": {
"ci": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"affected:test": "nx affected:test",
"analyze:client": "nx run client:build:production --stats-json && webpack-bundle-analyzer -p 1234 dist/apps/client/en/stats.json",
"angular": "node --max_old_space_size=32768 ./node_modules/@angular/cli/bin/ng",
"build:production": "nx run api:copy-assets && nx run api:build:production && nx run client:copy-assets && nx run client:build:production && npm run replace-placeholders-in-build",
"build:production": "nx run api:copy-assets && nx run api:build:production && nx run client:copy-assets && nx run client:build:production && nx run ui:build-storybook && npm run replace-placeholders-in-build",
"build:storybook": "nx run ui:build-storybook",
"database:format-schema": "prisma format",
"database:generate-typings": "prisma generate",
Expand Down
Loading