Feature/Switch consistent-type-assertions eslint rule from warn to error (#3982)

* Switch consistent-type-assertions eslint rule from warn to error

* Update changelog

---------

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
pull/3983/head
dw-0 4 weeks ago committed by GitHub
parent 906e526cb9
commit 6a10b932b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -143,7 +143,6 @@
// The following rules are part of @typescript-eslint/stylistic-type-checked // The following rules are part of @typescript-eslint/stylistic-type-checked
// and can be remove once solved // and can be remove once solved
"@typescript-eslint/prefer-nullish-coalescing": "warn", // TODO: Requires strictNullChecks: true "@typescript-eslint/prefer-nullish-coalescing": "warn", // TODO: Requires strictNullChecks: true
"@typescript-eslint/consistent-type-assertions": "warn",
"@typescript-eslint/prefer-optional-chain": "warn", "@typescript-eslint/prefer-optional-chain": "warn",
"@typescript-eslint/consistent-indexed-object-style": "warn", "@typescript-eslint/consistent-indexed-object-style": "warn",
"@typescript-eslint/consistent-generic-constructors": "warn" "@typescript-eslint/consistent-generic-constructors": "warn"

@ -5,6 +5,12 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Switched the `consistent-type-assertions` rule from `warn` to `error` in the `eslint` configuration
## 2.119.0 - 2024-10-26 ## 2.119.0 - 2024-10-26
### Changed ### Changed

@ -88,7 +88,7 @@ export class AccountBalanceService {
this.eventEmitter.emit( this.eventEmitter.emit(
PortfolioChangedEvent.getName(), PortfolioChangedEvent.getName(),
new PortfolioChangedEvent({ new PortfolioChangedEvent({
userId: <string>where.userId userId: where.userId as string
}) })
); );

@ -209,8 +209,8 @@ export class AccountService {
const { data, where } = params; const { data, where } = params;
await this.accountBalanceService.createOrUpdateAccountBalance({ await this.accountBalanceService.createOrUpdateAccountBalance({
accountId: <string>data.id, accountId: data.id as string,
balance: <number>data.balance, balance: data.balance as number,
date: format(new Date(), DATE_FORMAT), date: format(new Date(), DATE_FORMAT),
userId: aUserId userId: aUserId
}); });

@ -26,7 +26,7 @@ export class QueueController {
public async deleteJobs( public async deleteJobs(
@Query('status') filterByStatus?: string @Query('status') filterByStatus?: string
): Promise<void> { ): Promise<void> {
const status = <JobStatus[]>filterByStatus?.split(',') ?? undefined; const status = (filterByStatus?.split(',') as JobStatus[]) ?? undefined;
return this.queueService.deleteJobs({ status }); return this.queueService.deleteJobs({ status });
} }
@ -36,7 +36,7 @@ export class QueueController {
public async getJobs( public async getJobs(
@Query('status') filterByStatus?: string @Query('status') filterByStatus?: string
): Promise<AdminJobs> { ): Promise<AdminJobs> {
const status = <JobStatus[]>filterByStatus?.split(',') ?? undefined; const status = (filterByStatus?.split(',') as JobStatus[]) ?? undefined;
return this.queueService.getJobs({ status }); return this.queueService.getJobs({ status });
} }

@ -85,7 +85,7 @@ export class AuthController {
@Res() response: Response @Res() response: Response
) { ) {
// Handles the Google OAuth2 callback // Handles the Google OAuth2 callback
const jwt: string = (<any>request.user).jwt; const jwt: string = (request.user as any).jwt;
if (jwt) { if (jwt) {
response.redirect( response.redirect(

@ -442,10 +442,10 @@ export class BenchmarkService {
await this.redisCacheService.set( await this.redisCacheService.set(
this.CACHE_KEY_BENCHMARKS, this.CACHE_KEY_BENCHMARKS,
JSON.stringify(<BenchmarkValue>{ JSON.stringify({
benchmarks, benchmarks,
expiration: expiration.getTime() expiration: expiration.getTime()
}), } as BenchmarkValue),
CACHE_TTL_INFINITE CACHE_TTL_INFINITE
); );
} }

@ -410,7 +410,7 @@ export class OrderService {
where.SymbolProfile, where.SymbolProfile,
{ {
AND: [ AND: [
{ dataSource: <DataSource>filterByDataSource }, { dataSource: filterByDataSource as DataSource },
{ symbol: filterBySymbol } { symbol: filterBySymbol }
] ]
} }
@ -419,7 +419,7 @@ export class OrderService {
} else { } else {
where.SymbolProfile = { where.SymbolProfile = {
AND: [ AND: [
{ dataSource: <DataSource>filterByDataSource }, { dataSource: filterByDataSource as DataSource },
{ symbol: filterBySymbol } { symbol: filterBySymbol }
] ]
}; };
@ -638,7 +638,7 @@ export class OrderService {
{ {
dataSource: dataSource:
data.SymbolProfile.connect.dataSource_symbol.dataSource, data.SymbolProfile.connect.dataSource_symbol.dataSource,
date: <Date>data.date, date: data.date as Date,
symbol: data.SymbolProfile.connect.dataSource_symbol.symbol symbol: data.SymbolProfile.connect.dataSource_symbol.symbol
} }
], ],

@ -796,7 +796,7 @@ export class TWRPortfolioCalculator extends PortfolioCalculator {
[key: DateRange]: Big; [key: DateRange]: Big;
} = {}; } = {};
for (const dateRange of <DateRange[]>[ for (const dateRange of [
'1d', '1d',
'1y', '1y',
'5y', '5y',
@ -812,7 +812,7 @@ export class TWRPortfolioCalculator extends PortfolioCalculator {
// .map((date) => { // .map((date) => {
// return format(date, 'yyyy'); // return format(date, 'yyyy');
// }) // })
]) { ] as DateRange[]) {
const dateInterval = getIntervalFromDateRange(dateRange); const dateInterval = getIntervalFromDateRange(dateRange);
const endDate = dateInterval.endDate; const endDate = dateInterval.endDate;
let startDate = dateInterval.startDate; let startDate = dateInterval.startDate;

@ -138,7 +138,7 @@ export class PortfolioService {
some: { some: {
SymbolProfile: { SymbolProfile: {
AND: [ AND: [
{ dataSource: <DataSource>filterByDataSource }, { dataSource: filterByDataSource as DataSource },
{ symbol: filterBySymbol } { symbol: filterBySymbol }
] ]
} }
@ -1160,7 +1160,7 @@ export class PortfolioService {
public async getReport(impersonationId: string): Promise<PortfolioReport> { public async getReport(impersonationId: string): Promise<PortfolioReport> {
const userId = await this.getUserId(impersonationId, this.request.user.id); const userId = await this.getUserId(impersonationId, this.request.user.id);
const userSettings = <UserSettings>this.request.user.Settings.settings; const userSettings = this.request.user.Settings.settings as UserSettings;
const { accounts, holdings, markets, summary } = await this.getDetails({ const { accounts, holdings, markets, summary } = await this.getDetails({
impersonationId, impersonationId,

@ -19,11 +19,11 @@ import { RedisCacheService } from './redis-cache.service';
configurationService.get('REDIS_PASSWORD') configurationService.get('REDIS_PASSWORD')
); );
return <RedisClientOptions>{ return {
store: redisStore, store: redisStore,
ttl: configurationService.get('CACHE_TTL'), ttl: configurationService.get('CACHE_TTL'),
url: `redis://${redisPassword ? `:${redisPassword}` : ''}@${configurationService.get('REDIS_HOST')}:${configurationService.get('REDIS_PORT')}/${configurationService.get('REDIS_DB')}` url: `redis://${redisPassword ? `:${redisPassword}` : ''}@${configurationService.get('REDIS_HOST')}:${configurationService.get('REDIS_PORT')}/${configurationService.get('REDIS_DB')}`
}; } as RedisClientOptions;
} }
}), }),
ConfigurationModule ConfigurationModule

@ -95,7 +95,7 @@ export class SubscriptionController {
@Res() response: Response @Res() response: Response
) { ) {
const userId = await this.subscriptionService.createSubscriptionViaStripe( const userId = await this.subscriptionService.createSubscriptionViaStripe(
<string>request.query.checkoutSessionId request.query.checkoutSessionId as string
); );
Logger.log( Logger.log(

@ -31,11 +31,11 @@ export class UpdateUserSettingDto {
@IsOptional() @IsOptional()
benchmark?: string; benchmark?: string;
@IsIn(<ColorScheme[]>['DARK', 'LIGHT']) @IsIn(['DARK', 'LIGHT'] as ColorScheme[])
@IsOptional() @IsOptional()
colorScheme?: ColorScheme; colorScheme?: ColorScheme;
@IsIn(<DateRange[]>[ @IsIn([
'1d', '1d',
'1y', '1y',
'5y', '5y',
@ -48,7 +48,7 @@ export class UpdateUserSettingDto {
return format(date, 'yyyy'); return format(date, 'yyyy');
} }
) )
]) ] as DateRange[])
@IsOptional() @IsOptional()
dateRange?: DateRange; dateRange?: DateRange;
@ -68,7 +68,7 @@ export class UpdateUserSettingDto {
@IsOptional() @IsOptional()
'filters.tags'?: string[]; 'filters.tags'?: string[];
@IsIn(<HoldingsViewMode[]>['CHART', 'TABLE']) @IsIn(['CHART', 'TABLE'] as HoldingsViewMode[])
@IsOptional() @IsOptional()
holdingsViewMode?: HoldingsViewMode; holdingsViewMode?: HoldingsViewMode;
@ -100,7 +100,7 @@ export class UpdateUserSettingDto {
@IsOptional() @IsOptional()
savingsRate?: number; savingsRate?: number;
@IsIn(<ViewMode[]>['DEFAULT', 'ZEN']) @IsIn(['DEFAULT', 'ZEN'] as ViewMode[])
@IsOptional() @IsOptional()
viewMode?: ViewMode; viewMode?: ViewMode;

@ -148,7 +148,7 @@ export class UserController {
const userSettings: UserSettings = merge( const userSettings: UserSettings = merge(
{}, {},
<UserSettings>this.request.user.Settings.settings, this.request.user.Settings.settings as UserSettings,
data data
); );

@ -116,8 +116,8 @@ export class UserService {
accounts: Account, accounts: Account,
dateOfFirstActivity: firstActivity?.date ?? new Date(), dateOfFirstActivity: firstActivity?.date ?? new Date(),
settings: { settings: {
...(<UserSettings>Settings.settings), ...(Settings.settings as UserSettings),
locale: (<UserSettings>Settings.settings)?.locale ?? aLocale locale: (Settings.settings as UserSettings)?.locale ?? aLocale
} }
}; };
} }

@ -34,28 +34,28 @@ export class ApiService {
const filters = [ const filters = [
...accountIds.map((accountId) => { ...accountIds.map((accountId) => {
return <Filter>{ return {
id: accountId, id: accountId,
type: 'ACCOUNT' type: 'ACCOUNT'
}; } as Filter;
}), }),
...assetClasses.map((assetClass) => { ...assetClasses.map((assetClass) => {
return <Filter>{ return {
id: assetClass, id: assetClass,
type: 'ASSET_CLASS' type: 'ASSET_CLASS'
}; } as Filter;
}), }),
...assetSubClasses.map((assetClass) => { ...assetSubClasses.map((assetClass) => {
return <Filter>{ return {
id: assetClass, id: assetClass,
type: 'ASSET_SUB_CLASS' type: 'ASSET_SUB_CLASS'
}; } as Filter;
}), }),
...tagIds.map((tagId) => { ...tagIds.map((tagId) => {
return <Filter>{ return {
id: tagId, id: tagId,
type: 'TAG' type: 'TAG'
}; } as Filter;
}) })
]; ];

@ -144,21 +144,21 @@ export class MarketDataService {
({ dataSource, date, marketPrice, symbol, state }) => { ({ dataSource, date, marketPrice, symbol, state }) => {
return this.prismaService.marketData.upsert({ return this.prismaService.marketData.upsert({
create: { create: {
dataSource: <DataSource>dataSource, dataSource: dataSource as DataSource,
date: <Date>date, date: date as Date,
marketPrice: <number>marketPrice, marketPrice: marketPrice as number,
state: <MarketDataState>state, state: state as MarketDataState,
symbol: <string>symbol symbol: symbol as string
}, },
update: { update: {
marketPrice: <number>marketPrice, marketPrice: marketPrice as number,
state: <MarketDataState>state state: state as MarketDataState
}, },
where: { where: {
dataSource_date_symbol: { dataSource_date_symbol: {
dataSource: <DataSource>dataSource, dataSource: dataSource as DataSource,
date: <Date>date, date: date as Date,
symbol: <string>symbol symbol: symbol as string
} }
} }
}); });

@ -78,7 +78,7 @@ export class DataGatheringProcessor {
public async gatherHistoricalMarketData(job: Job<IDataGatheringItem>) { public async gatherHistoricalMarketData(job: Job<IDataGatheringItem>) {
try { try {
const { dataSource, date, symbol } = job.data; const { dataSource, date, symbol } = job.data;
let currentDate = parseISO(<string>(<unknown>date)); let currentDate = parseISO(date as unknown as string);
Logger.log( Logger.log(
`Historical market data gathering has been started for ${symbol} (${dataSource}) at ${format( `Historical market data gathering has been started for ${symbol} (${dataSource}) at ${format(

@ -94,10 +94,10 @@ export class PortfolioSnapshotProcessor {
filters: job.data.filters, filters: job.data.filters,
userId: job.data.userId userId: job.data.userId
}), }),
JSON.stringify(<PortfolioSnapshotValue>(<unknown>{ JSON.stringify({
expiration: expiration.getTime(), expiration: expiration.getTime(),
portfolioSnapshot: snapshot portfolioSnapshot: snapshot
})), } as unknown as PortfolioSnapshotValue),
CACHE_TTL_INFINITE CACHE_TTL_INFINITE
); );

@ -176,7 +176,7 @@ export class SymbolProfileService {
countries: this.getCountries( countries: this.getCountries(
symbolProfile?.countries as unknown as Prisma.JsonArray symbolProfile?.countries as unknown as Prisma.JsonArray
), ),
dateOfFirstActivity: <Date>undefined, dateOfFirstActivity: undefined as Date,
holdings: this.getHoldings(symbolProfile), holdings: this.getHoldings(symbolProfile),
scraperConfiguration: this.getScraperConfiguration(symbolProfile), scraperConfiguration: this.getScraperConfiguration(symbolProfile),
sectors: this.getSectors(symbolProfile), sectors: this.getSectors(symbolProfile),

@ -292,7 +292,7 @@ export class AppComponent implements OnDestroy, OnInit {
const dialogRef = this.dialog.open(GfHoldingDetailDialogComponent, { const dialogRef = this.dialog.open(GfHoldingDetailDialogComponent, {
autoFocus: false, autoFocus: false,
data: <HoldingDetailDialogParams>{ data: {
dataSource, dataSource,
symbol, symbol,
baseCurrency: this.user?.settings?.baseCurrency, baseCurrency: this.user?.settings?.baseCurrency,
@ -312,7 +312,7 @@ export class AppComponent implements OnDestroy, OnInit {
hasPermission(this.user?.permissions, permissions.updateOrder) && hasPermission(this.user?.permissions, permissions.updateOrder) &&
!this.user?.settings?.isRestrictedView, !this.user?.settings?.isRestrictedView,
locale: this.user?.settings?.locale locale: this.user?.settings?.locale
}, } as HoldingDetailDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -178,14 +178,14 @@ export class AdminMarketDataDetailComponent implements OnChanges {
const marketPrice = this.marketDataByMonth[yearMonth]?.[day]?.marketPrice; const marketPrice = this.marketDataByMonth[yearMonth]?.[day]?.marketPrice;
const dialogRef = this.dialog.open(MarketDataDetailDialog, { const dialogRef = this.dialog.open(MarketDataDetailDialog, {
data: <MarketDataDetailDialogParams>{ data: {
marketPrice, marketPrice,
currency: this.currency, currency: this.currency,
dataSource: this.dataSource, dataSource: this.dataSource,
dateString: `${yearMonth}-${day}`, dateString: `${yearMonth}-${day}`,
symbol: this.symbol, symbol: this.symbol,
user: this.user user: this.user
}, } as MarketDataDetailDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -71,36 +71,35 @@ export class AdminMarketDataComponent
return { return {
id: assetSubClass.toString(), id: assetSubClass.toString(),
label: translate(assetSubClass), label: translate(assetSubClass),
type: <Filter['type']>'ASSET_SUB_CLASS' type: 'ASSET_SUB_CLASS' as Filter['type']
}; };
}) })
.concat([ .concat([
{ {
id: 'BENCHMARKS', id: 'BENCHMARKS',
label: $localize`Benchmarks`, label: $localize`Benchmarks`,
type: <Filter['type']>'PRESET_ID' type: 'PRESET_ID' as Filter['type']
}, },
{ {
id: 'CURRENCIES', id: 'CURRENCIES',
label: $localize`Currencies`, label: $localize`Currencies`,
type: <Filter['type']>'PRESET_ID' type: 'PRESET_ID' as Filter['type']
}, },
{ {
id: 'ETF_WITHOUT_COUNTRIES', id: 'ETF_WITHOUT_COUNTRIES',
label: $localize`ETFs without Countries`, label: $localize`ETFs without Countries`,
type: <Filter['type']>'PRESET_ID' type: 'PRESET_ID' as Filter['type']
}, },
{ {
id: 'ETF_WITHOUT_SECTORS', id: 'ETF_WITHOUT_SECTORS',
label: $localize`ETFs without Sectors`, label: $localize`ETFs without Sectors`,
type: <Filter['type']>'PRESET_ID' type: 'PRESET_ID' as Filter['type']
} }
]); ]);
public benchmarks: Partial<SymbolProfile>[]; public benchmarks: Partial<SymbolProfile>[];
public currentDataSource: DataSource; public currentDataSource: DataSource;
public currentSymbol: string; public currentSymbol: string;
public dataSource: MatTableDataSource<AdminMarketDataItem> = public dataSource = new MatTableDataSource<AdminMarketDataItem>();
new MatTableDataSource();
public defaultDateFormat: string; public defaultDateFormat: string;
public deviceType: string; public deviceType: string;
public displayedColumns: string[] = []; public displayedColumns: string[] = [];
@ -375,13 +374,13 @@ export class AdminMarketDataComponent
const dialogRef = this.dialog.open(AssetProfileDialog, { const dialogRef = this.dialog.open(AssetProfileDialog, {
autoFocus: false, autoFocus: false,
data: <AssetProfileDialogParams>{ data: {
dataSource, dataSource,
symbol, symbol,
colorScheme: this.user?.settings.colorScheme, colorScheme: this.user?.settings.colorScheme,
deviceType: this.deviceType, deviceType: this.deviceType,
locale: this.user?.settings?.locale locale: this.user?.settings?.locale
}, } as AssetProfileDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });
@ -404,10 +403,10 @@ export class AdminMarketDataComponent
const dialogRef = this.dialog.open(CreateAssetProfileDialog, { const dialogRef = this.dialog.open(CreateAssetProfileDialog, {
autoFocus: false, autoFocus: false,
data: <CreateAssetProfileDialogParams>{ data: {
deviceType: this.deviceType, deviceType: this.deviceType,
locale: this.user?.settings?.locale locale: this.user?.settings?.locale
}, } as CreateAssetProfileDialogParams,
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -225,10 +225,10 @@ export class AdminOverviewComponent implements OnDestroy, OnInit {
$localize`Please set your system message:`, $localize`Please set your system message:`,
JSON.stringify( JSON.stringify(
this.systemMessage ?? this.systemMessage ??
<SystemMessage>{ ({
message: '⚒️ Scheduled maintenance in progress...', message: '⚒️ Scheduled maintenance in progress...',
targetGroups: ['Basic', 'Premium'] targetGroups: ['Basic', 'Premium']
} } as SystemMessage)
) )
); );

@ -98,7 +98,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
} }
private initialize() { private initialize() {
const benchmarkDataValues: { [date: string]: number } = {}; const benchmarkDataValues: Record<string, number> = {};
for (const { date, value } of this.benchmarkDataItems) { for (const { date, value } of this.benchmarkDataItems) {
benchmarkDataValues[date] = value; benchmarkDataValues[date] = value;
@ -133,9 +133,8 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
if (this.chartCanvas) { if (this.chartCanvas) {
if (this.chart) { if (this.chart) {
this.chart.data = data; this.chart.data = data;
this.chart.options.plugins.tooltip = <unknown>( this.chart.options.plugins.tooltip =
this.getTooltipPluginConfiguration() this.getTooltipPluginConfiguration() as unknown;
);
this.chart.update(); this.chart.update();
} else { } else {
this.chart = new Chart(this.chartCanvas.nativeElement, { this.chart = new Chart(this.chartCanvas.nativeElement, {
@ -154,7 +153,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
}, },
interaction: { intersect: false, mode: 'index' }, interaction: { intersect: false, mode: 'index' },
maintainAspectRatio: true, maintainAspectRatio: true,
plugins: <unknown>{ plugins: {
annotation: { annotation: {
annotations: { annotations: {
yAxis: { yAxis: {
@ -173,7 +172,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
verticalHoverLine: { verticalHoverLine: {
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)` color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`
} }
}, } as unknown,
responsive: true, responsive: true,
scales: { scales: {
x: { x: {
@ -238,7 +237,7 @@ export class BenchmarkComparatorComponent implements OnChanges, OnDestroy {
unit: '%' unit: '%'
}), }),
mode: 'index', mode: 'index',
position: <unknown>'top', position: 'top' as unknown,
xAlign: 'center', xAlign: 'center',
yAlign: 'bottom' yAlign: 'bottom'
}; };

@ -148,7 +148,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
public ngOnInit() { public ngOnInit() {
this.activityForm = this.formBuilder.group({ this.activityForm = this.formBuilder.group({
tags: <string[]>[] tags: [] as string[]
}); });
const filters: Filter[] = [ const filters: Filter[] = [

@ -154,9 +154,8 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy {
if (this.chartCanvas) { if (this.chartCanvas) {
if (this.chart) { if (this.chart) {
this.chart.data = chartData; this.chart.data = chartData;
this.chart.options.plugins.tooltip = <unknown>( this.chart.options.plugins.tooltip =
this.getTooltipPluginConfiguration() this.getTooltipPluginConfiguration() as unknown;
);
if ( if (
this.savingsRate && this.savingsRate &&
@ -186,7 +185,7 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy {
}, },
interaction: { intersect: false, mode: 'index' }, interaction: { intersect: false, mode: 'index' },
maintainAspectRatio: true, maintainAspectRatio: true,
plugins: <unknown>{ plugins: {
annotation: { annotation: {
annotations: { annotations: {
savingsRate: this.savingsRate savingsRate: this.savingsRate
@ -227,7 +226,7 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy {
verticalHoverLine: { verticalHoverLine: {
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)` color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`
} }
}, } as unknown,
responsive: true, responsive: true,
scales: { scales: {
x: { x: {
@ -294,7 +293,7 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy {
unit: this.isInPercent ? '%' : undefined unit: this.isInPercent ? '%' : undefined
}), }),
mode: 'index', mode: 'index',
position: <unknown>'top', position: 'top' as unknown,
xAlign: 'center', xAlign: 'center',
yAlign: 'bottom' yAlign: 'bottom'
}; };

@ -222,7 +222,7 @@ export class AccountsPageComponent implements OnDestroy, OnInit {
private openAccountDetailDialog(aAccountId: string) { private openAccountDetailDialog(aAccountId: string) {
const dialogRef = this.dialog.open(AccountDetailDialog, { const dialogRef = this.dialog.open(AccountDetailDialog, {
autoFocus: false, autoFocus: false,
data: <AccountDetailDialogParams>{ data: {
accountId: aAccountId, accountId: aAccountId,
deviceType: this.deviceType, deviceType: this.deviceType,
hasImpersonationId: this.hasImpersonationId, hasImpersonationId: this.hasImpersonationId,
@ -230,7 +230,7 @@ export class AccountsPageComponent implements OnDestroy, OnInit {
!this.hasImpersonationId && !this.hasImpersonationId &&
hasPermission(this.user?.permissions, permissions.createOrder) && hasPermission(this.user?.permissions, permissions.createOrder) &&
!this.user?.settings?.isRestrictedView !this.user?.settings?.isRestrictedView
}, } as AccountDetailDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -218,10 +218,10 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit {
public onImport() { public onImport() {
const dialogRef = this.dialog.open(ImportActivitiesDialog, { const dialogRef = this.dialog.open(ImportActivitiesDialog, {
data: <ImportActivitiesDialogParams>{ data: {
deviceType: this.deviceType, deviceType: this.deviceType,
user: this.user user: this.user
}, } as ImportActivitiesDialogParams,
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });
@ -235,11 +235,11 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit {
public onImportDividends() { public onImportDividends() {
const dialogRef = this.dialog.open(ImportActivitiesDialog, { const dialogRef = this.dialog.open(ImportActivitiesDialog, {
data: <ImportActivitiesDialogParams>{ data: {
activityTypes: ['DIVIDEND'], activityTypes: ['DIVIDEND'],
deviceType: this.deviceType, deviceType: this.deviceType,
user: this.user user: this.user
}, } as ImportActivitiesDialogParams,
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -505,7 +505,7 @@ export class AllocationsPageComponent implements OnDestroy, OnInit {
private openAccountDetailDialog(aAccountId: string) { private openAccountDetailDialog(aAccountId: string) {
const dialogRef = this.dialog.open(AccountDetailDialog, { const dialogRef = this.dialog.open(AccountDetailDialog, {
autoFocus: false, autoFocus: false,
data: <AccountDetailDialogParams>{ data: {
accountId: aAccountId, accountId: aAccountId,
deviceType: this.deviceType, deviceType: this.deviceType,
hasImpersonationId: this.hasImpersonationId, hasImpersonationId: this.hasImpersonationId,
@ -513,7 +513,7 @@ export class AllocationsPageComponent implements OnDestroy, OnInit {
!this.hasImpersonationId && !this.hasImpersonationId &&
hasPermission(this.user?.permissions, permissions.createOrder) && hasPermission(this.user?.permissions, permissions.createOrder) &&
!this.user?.settings?.isRestrictedView !this.user?.settings?.isRestrictedView
}, } as AccountDetailDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -230,8 +230,8 @@ export class DataService {
public fetchActivity(aActivityId: string) { public fetchActivity(aActivityId: string) {
return this.http.get<Activity>(`/api/v1/order/${aActivityId}`).pipe( return this.http.get<Activity>(`/api/v1/order/${aActivityId}`).pipe(
map((activity) => { map((activity) => {
activity.createdAt = parseISO(<string>(<unknown>activity.createdAt)); activity.createdAt = parseISO(activity.createdAt as unknown as string);
activity.date = parseISO(<string>(<unknown>activity.date)); activity.date = parseISO(activity.date as unknown as string);
return activity; return activity;
}) })
@ -387,8 +387,8 @@ export class DataService {
map((data) => { map((data) => {
if (data.orders) { if (data.orders) {
for (const order of data.orders) { for (const order of data.orders) {
order.createdAt = parseISO(<string>(<unknown>order.createdAt)); order.createdAt = parseISO(order.createdAt as unknown as string);
order.date = parseISO(<string>(<unknown>order.date)); order.date = parseISO(order.date as unknown as string);
} }
} }
@ -399,9 +399,9 @@ export class DataService {
public fetchInfo(): InfoItem { public fetchInfo(): InfoItem {
const info = cloneDeep((window as any).info); const info = cloneDeep((window as any).info);
const utmSource = <'ios' | 'trusted-web-activity'>( const utmSource = window.localStorage.getItem('utm_source') as
window.localStorage.getItem('utm_source') | 'ios'
); | 'trusted-web-activity';
info.globalPermissions = filterGlobalPermissions( info.globalPermissions = filterGlobalPermissions(
info.globalPermissions, info.globalPermissions,
@ -715,9 +715,9 @@ export class DataService {
public updateInfo() { public updateInfo() {
this.http.get<InfoItem>('/api/v1/info').subscribe((info) => { this.http.get<InfoItem>('/api/v1/info').subscribe((info) => {
const utmSource = <'ios' | 'trusted-web-activity'>( const utmSource = window.localStorage.getItem('utm_source') as
window.localStorage.getItem('utm_source') | 'ios'
); | 'trusted-web-activity';
info.globalPermissions = filterGlobalPermissions( info.globalPermissions = filterGlobalPermissions(
info.globalPermissions, info.globalPermissions,

@ -104,9 +104,9 @@ export class UserService extends ObservableStore<UserStoreState> {
) { ) {
const dialogRef = this.dialog.open(SubscriptionInterstitialDialog, { const dialogRef = this.dialog.open(SubscriptionInterstitialDialog, {
autoFocus: false, autoFocus: false,
data: <SubscriptionInterstitialDialogParams>{ data: {
user user
}, } as SubscriptionInterstitialDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : '80vh', height: this.deviceType === 'mobile' ? '98vh' : '80vh',
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -12,9 +12,9 @@ import { environment } from './environments/environment';
(async () => { (async () => {
const response = await fetch('/api/v1/info'); const response = await fetch('/api/v1/info');
const info: InfoItem = await response.json(); const info: InfoItem = await response.json();
const utmSource = <'ios' | 'trusted-web-activity'>( const utmSource = window.localStorage.getItem('utm_source') as
window.localStorage.getItem('utm_source') | 'ios'
); | 'trusted-web-activity';
info.globalPermissions = filterGlobalPermissions( info.globalPermissions = filterGlobalPermissions(
info.globalPermissions, info.globalPermissions,

@ -125,14 +125,14 @@ export const PROPERTY_SLACK_COMMUNITY_USERS = 'SLACK_COMMUNITY_USERS';
export const PROPERTY_STRIPE_CONFIG = 'STRIPE_CONFIG'; export const PROPERTY_STRIPE_CONFIG = 'STRIPE_CONFIG';
export const PROPERTY_SYSTEM_MESSAGE = 'SYSTEM_MESSAGE'; export const PROPERTY_SYSTEM_MESSAGE = 'SYSTEM_MESSAGE';
export const QUEUE_JOB_STATUS_LIST = <JobStatus[]>[ export const QUEUE_JOB_STATUS_LIST = [
'active', 'active',
'completed', 'completed',
'delayed', 'delayed',
'failed', 'failed',
'paused', 'paused',
'waiting' 'waiting'
]; ] as JobStatus[];
export const REPLACE_NAME_PARTS = [ export const REPLACE_NAME_PARTS = [
'Amundi Index Solutions -', 'Amundi Index Solutions -',

@ -108,7 +108,7 @@ export function downloadAsFile({
content = JSON.stringify(content, undefined, ' '); content = JSON.stringify(content, undefined, ' ');
} }
const file = new Blob([<string>content], { const file = new Blob([content as string], {
type: contentType type: contentType
}); });
a.href = URL.createObjectURL(file); a.href = URL.createObjectURL(file);

@ -157,7 +157,7 @@ export class GfActivitiesFilterComponent implements OnChanges, OnDestroy {
for (const type of Object.keys(filterGroupsMap)) { for (const type of Object.keys(filterGroupsMap)) {
filterGroups.push({ filterGroups.push({
name: <Filter['type']>translate(type), name: translate(type) as Filter['type'],
filters: filterGroupsMap[type] filters: filterGroupsMap[type]
}); });
} }

@ -180,10 +180,10 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit {
debounceTime(300), debounceTime(300),
distinctUntilChanged(), distinctUntilChanged(),
mergeMap(async (searchTerm) => { mergeMap(async (searchTerm) => {
const result = <ISearchResults>{ const result = {
assetProfiles: [], assetProfiles: [],
holdings: [] holdings: []
}; } as ISearchResults;
try { try {
if (searchTerm) { if (searchTerm) {

@ -109,13 +109,13 @@ export class GfBenchmarkComponent implements OnChanges, OnDestroy {
symbol symbol
}: AssetProfileIdentifier) { }: AssetProfileIdentifier) {
const dialogRef = this.dialog.open(GfBenchmarkDetailDialogComponent, { const dialogRef = this.dialog.open(GfBenchmarkDetailDialogComponent, {
data: <BenchmarkDetailDialogParams>{ data: {
dataSource, dataSource,
symbol, symbol,
colorScheme: this.user?.settings?.colorScheme, colorScheme: this.user?.settings?.colorScheme,
deviceType: this.deviceType, deviceType: this.deviceType,
locale: this.locale locale: this.locale
}, } as BenchmarkDetailDialogParams,
height: this.deviceType === 'mobile' ? '98vh' : undefined, height: this.deviceType === 'mobile' ? '98vh' : undefined,
width: this.deviceType === 'mobile' ? '100vw' : '50rem' width: this.deviceType === 'mobile' ? '100vw' : '50rem'
}); });

@ -172,15 +172,14 @@ export class GfLineChartComponent
if (this.chartCanvas) { if (this.chartCanvas) {
if (this.chart) { if (this.chart) {
this.chart.data = data; this.chart.data = data;
this.chart.options.plugins.tooltip = <unknown>( this.chart.options.plugins.tooltip =
this.getTooltipPluginConfiguration() this.getTooltipPluginConfiguration() as unknown;
);
this.chart.options.animation = this.chart.options.animation =
this.isAnimated && this.isAnimated &&
<unknown>{ ({
x: this.getAnimationConfigurationForAxis({ labels, axis: 'x' }), x: this.getAnimationConfigurationForAxis({ labels, axis: 'x' }),
y: this.getAnimationConfigurationForAxis({ labels, axis: 'y' }) y: this.getAnimationConfigurationForAxis({ labels, axis: 'y' })
}; } as unknown);
this.chart.update(); this.chart.update();
} else { } else {
this.chart = new Chart(this.chartCanvas.nativeElement, { this.chart = new Chart(this.chartCanvas.nativeElement, {
@ -188,10 +187,10 @@ export class GfLineChartComponent
options: { options: {
animation: animation:
this.isAnimated && this.isAnimated &&
<unknown>{ ({
x: this.getAnimationConfigurationForAxis({ labels, axis: 'x' }), x: this.getAnimationConfigurationForAxis({ labels, axis: 'x' }),
y: this.getAnimationConfigurationForAxis({ labels, axis: 'y' }) y: this.getAnimationConfigurationForAxis({ labels, axis: 'y' })
}, } as unknown),
aspectRatio: 16 / 9, aspectRatio: 16 / 9,
elements: { elements: {
point: { point: {
@ -200,7 +199,7 @@ export class GfLineChartComponent
} }
}, },
interaction: { intersect: false, mode: 'index' }, interaction: { intersect: false, mode: 'index' },
plugins: <unknown>{ plugins: {
legend: { legend: {
align: 'start', align: 'start',
display: this.showLegend, display: this.showLegend,
@ -210,7 +209,7 @@ export class GfLineChartComponent
verticalHoverLine: { verticalHoverLine: {
color: `rgba(${getTextColor(this.colorScheme)}, 0.1)` color: `rgba(${getTextColor(this.colorScheme)}, 0.1)`
} }
}, } as unknown,
scales: { scales: {
x: { x: {
border: { border: {
@ -325,7 +324,7 @@ export class GfLineChartComponent
unit: this.unit unit: this.unit
}), }),
mode: 'index', mode: 'index',
position: <unknown>'top', position: 'top' as unknown,
xAlign: 'center', xAlign: 'center',
yAlign: 'bottom' yAlign: 'bottom'
}; };

@ -304,14 +304,14 @@ export class GfPortfolioProportionChartComponent
if (this.chartCanvas) { if (this.chartCanvas) {
if (this.chart) { if (this.chart) {
this.chart.data = data; this.chart.data = data;
this.chart.options.plugins.tooltip = <unknown>( this.chart.options.plugins.tooltip = this.getTooltipPluginConfiguration(
this.getTooltipPluginConfiguration(data) data
); ) as unknown;
this.chart.update(); this.chart.update();
} else { } else {
this.chart = new Chart(this.chartCanvas.nativeElement, { this.chart = new Chart(this.chartCanvas.nativeElement, {
data, data,
options: <unknown>{ options: {
animation: false, animation: false,
cutout: '70%', cutout: '70%',
layout: { layout: {
@ -358,7 +358,7 @@ export class GfPortfolioProportionChartComponent
legend: { display: false }, legend: { display: false },
tooltip: this.getTooltipPluginConfiguration(data) tooltip: this.getTooltipPluginConfiguration(data)
} }
}, } as unknown,
plugins: [ChartDataLabels], plugins: [ChartDataLabels],
type: 'doughnut' type: 'doughnut'
}); });
@ -405,7 +405,7 @@ export class GfPortfolioProportionChartComponent
symbol = $localize`No data available`; symbol = $localize`No data available`;
} }
const name = translate(this.positions[<string>symbol]?.name); const name = translate(this.positions[symbol as string]?.name);
let sum = 0; let sum = 0;
for (const item of context.dataset.data) { for (const item of context.dataset.data) {
@ -414,12 +414,12 @@ export class GfPortfolioProportionChartComponent
const percentage = (context.parsed * 100) / sum; const percentage = (context.parsed * 100) / sum;
if (<number>context.raw === Number.MAX_SAFE_INTEGER) { if ((context.raw as number) === Number.MAX_SAFE_INTEGER) {
return $localize`No data available`; return $localize`No data available`;
} else if (this.isInPercent) { } else if (this.isInPercent) {
return [`${name ?? symbol}`, `${percentage.toFixed(2)}%`]; return [`${name ?? symbol}`, `${percentage.toFixed(2)}%`];
} else { } else {
const value = <number>context.raw; const value = context.raw as number;
return [ return [
`${name ?? symbol}`, `${name ?? symbol}`,
`${value.toLocaleString(this.locale, { `${value.toLocaleString(this.locale, {

@ -48,7 +48,7 @@ export class GfValueComponent implements OnChanges {
if (isNumber(this.value)) { if (isNumber(this.value)) {
this.isNumber = true; this.isNumber = true;
this.isString = false; this.isString = false;
this.absoluteValue = Math.abs(<number>this.value); this.absoluteValue = Math.abs(this.value as number);
if (this.colorizeSign) { if (this.colorizeSign) {
if (this.isCurrency) { if (this.isCurrency) {
@ -113,7 +113,7 @@ export class GfValueComponent implements OnChanges {
this.isString = true; this.isString = true;
if (this.isDate) { if (this.isDate) {
this.formattedValue = new Date(<string>this.value).toLocaleDateString( this.formattedValue = new Date(this.value).toLocaleDateString(
this.locale, this.locale,
{ {
day: '2-digit', day: '2-digit',

Loading…
Cancel
Save