| | |
| | | date!: Date | string; |
| | | |
| | | @Prop() |
| | | onlyShowSection!: 'DAY' | 'TIME'; |
| | | onlyShowSection!: 'YEAR' | 'DATE' | 'DAY' | 'TIME'; |
| | | |
| | | compareTarget!: Date; |
| | | displayValue = ''; |
| | |
| | | this.displayValue = isThisYear(compareTarget) ? thisYearDayLabel : `${compareTarget.getFullYear()}/${compareTarget.getMonth() + 1}/${compareTarget.getDate()}`; |
| | | } else if (this.onlyShowSection === 'TIME') { |
| | | this.displayValue = `${compareTarget.getHours()}:${minutes}`; |
| | | } else if (this.onlyShowSection === 'DATE') { |
| | | this.displayValue = isThisYear(compareTarget) |
| | | ? thisYearDayLabel |
| | | : `${compareTarget.getMonth() + 1}/${compareTarget.getDate()}`; |
| | | } else if (this.onlyShowSection === 'YEAR') { |
| | | this.displayValue = `${compareTarget.getFullYear()}`; |
| | | } |
| | | |
| | | if (this.onlyShowSection) return; |