|
@ -5,7 +5,6 @@ import { |
|
|
OnChanges |
|
|
OnChanges |
|
|
} from '@angular/core'; |
|
|
} from '@angular/core'; |
|
|
import { getLocale } from '@ghostfolio/common/helper'; |
|
|
import { getLocale } from '@ghostfolio/common/helper'; |
|
|
import { isDate, parseISO } from 'date-fns'; |
|
|
|
|
|
import { isNumber } from 'lodash'; |
|
|
import { isNumber } from 'lodash'; |
|
|
|
|
|
|
|
|
@Component({ |
|
|
@Component({ |
|
@ -19,6 +18,7 @@ export class ValueComponent implements OnChanges { |
|
|
@Input() currency = ''; |
|
|
@Input() currency = ''; |
|
|
@Input() isAbsolute = false; |
|
|
@Input() isAbsolute = false; |
|
|
@Input() isCurrency = false; |
|
|
@Input() isCurrency = false; |
|
|
|
|
|
@Input() isDate = false; |
|
|
@Input() isPercent = false; |
|
|
@Input() isPercent = false; |
|
|
@Input() label = ''; |
|
|
@Input() label = ''; |
|
|
@Input() locale = getLocale(); |
|
|
@Input() locale = getLocale(); |
|
@ -100,17 +100,16 @@ export class ValueComponent implements OnChanges { |
|
|
this.isNumber = false; |
|
|
this.isNumber = false; |
|
|
this.isString = true; |
|
|
this.isString = true; |
|
|
|
|
|
|
|
|
try { |
|
|
if (this.isDate) { |
|
|
if (isDate(parseISO(this.value))) { |
|
|
this.formattedValue = new Date(<string>this.value).toLocaleDateString( |
|
|
this.formattedValue = new Date( |
|
|
this.locale, |
|
|
<string>this.value |
|
|
{ |
|
|
).toLocaleDateString(this.locale, { |
|
|
|
|
|
day: '2-digit', |
|
|
day: '2-digit', |
|
|
month: '2-digit', |
|
|
month: '2-digit', |
|
|
year: 'numeric' |
|
|
year: 'numeric' |
|
|
}); |
|
|
} |
|
|
} |
|
|
); |
|
|
} catch { |
|
|
} else { |
|
|
this.formattedValue = this.value; |
|
|
this.formattedValue = this.value; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|