From e980aed9e771a7c0fb1bd29868706a805dfd83dd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 5 Nov 2023 08:50:43 +0100 Subject: [PATCH] Reorder functions (#2594) --- libs/common/src/lib/helper.ts | 80 +++++++++++++++++------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/libs/common/src/lib/helper.ts b/libs/common/src/lib/helper.ts index 3a3ee6e11..4e8d38dd3 100644 --- a/libs/common/src/lib/helper.ts +++ b/libs/common/src/lib/helper.ts @@ -16,6 +16,10 @@ import { ghostfolioScraperApiSymbolPrefix, locale } from './config'; import { Benchmark, UniqueAsset } from './interfaces'; import { ColorScheme } from './types'; +export const DATE_FORMAT = 'yyyy-MM-dd'; +export const DATE_FORMAT_MONTHLY = 'MMMM yyyy'; +export const DATE_FORMAT_YEARLY = 'yyyy'; + const NUMERIC_REGEXP = /[-]{0,1}[\d]*[.,]{0,1}[\d]+/g; export function capitalize(aString: string) { @@ -240,10 +244,6 @@ export function groupBy( return map; } -export function isCurrency(aSymbol = '') { - return currencies[aSymbol]; -} - export function interpolate(template: string, context: any) { return template?.replace(/[$]{([^}]+)}/g, (_, objectPath) => { const properties = objectPath.split('.'); @@ -254,44 +254,10 @@ export function interpolate(template: string, context: any) { }); } -export function resetHours(aDate: Date) { - const year = getYear(aDate); - const month = getMonth(aDate); - const day = getDate(aDate); - - return new Date(Date.UTC(year, month, day)); -} - -export function resolveFearAndGreedIndex(aValue: number) { - if (aValue <= 25) { - return { emoji: '🥵', text: 'Extreme Fear' }; - } else if (aValue <= 45) { - return { emoji: '😨', text: 'Fear' }; - } else if (aValue <= 55) { - return { emoji: '😐', text: 'Neutral' }; - } else if (aValue < 75) { - return { emoji: '😜', text: 'Greed' }; - } else { - return { emoji: '🤪', text: 'Extreme Greed' }; - } -} - -export function resolveMarketCondition( - aMarketCondition: Benchmark['marketCondition'] -) { - if (aMarketCondition === 'BEAR_MARKET') { - return { emoji: '🐻' }; - } else if (aMarketCondition === 'BULL_MARKET') { - return { emoji: '🐮' }; - } else { - return { emoji: '⚪' }; - } +export function isCurrency(aSymbol = '') { + return currencies[aSymbol]; } -export const DATE_FORMAT = 'yyyy-MM-dd'; -export const DATE_FORMAT_MONTHLY = 'MMMM yyyy'; -export const DATE_FORMAT_YEARLY = 'yyyy'; - export function parseDate(date: string): Date | null { // Transform 'yyyyMMdd' format to supported format by parse function if (date?.length === 8) { @@ -334,3 +300,37 @@ export function parseSymbol({ dataSource, symbol }: UniqueAsset) { export function prettifySymbol(aSymbol: string): string { return aSymbol?.replace(ghostfolioScraperApiSymbolPrefix, ''); } + +export function resetHours(aDate: Date) { + const year = getYear(aDate); + const month = getMonth(aDate); + const day = getDate(aDate); + + return new Date(Date.UTC(year, month, day)); +} + +export function resolveFearAndGreedIndex(aValue: number) { + if (aValue <= 25) { + return { emoji: '🥵', text: 'Extreme Fear' }; + } else if (aValue <= 45) { + return { emoji: '😨', text: 'Fear' }; + } else if (aValue <= 55) { + return { emoji: '😐', text: 'Neutral' }; + } else if (aValue < 75) { + return { emoji: '😜', text: 'Greed' }; + } else { + return { emoji: '🤪', text: 'Extreme Greed' }; + } +} + +export function resolveMarketCondition( + aMarketCondition: Benchmark['marketCondition'] +) { + if (aMarketCondition === 'BEAR_MARKET') { + return { emoji: '🐻' }; + } else if (aMarketCondition === 'BULL_MARKET') { + return { emoji: '🐮' }; + } else { + return { emoji: '⚪' }; + } +}