Fix graph zooming end date

pull/6048/head
Chocobozzz 2023-11-23 09:39:56 +01:00
parent 80efccf6c5
commit 6349881dbd
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 16 deletions

View File

@ -449,7 +449,9 @@ export class VideoStatsComponent implements OnInit {
const { min, max } = chart.scales.x
const startDate = rawData.data[min].date
const endDate = this.buildZoomEndDate(rawData.groupInterval, rawData.data[max].date)
const endDate = max === rawData.data.length - 1
? (this.statsEndDate || new Date()).toISOString()
: rawData.data[max + 1].date
this.peertubeRouter.silentNavigate([], { startDate, endDate })
this.addAndSelectCustomDateFilter()
@ -605,19 +607,4 @@ export class VideoStatsComponent implements OnInit {
second: 'numeric'
})
}
private buildZoomEndDate (groupInterval: string, last: string) {
const date = new Date(last)
// Remove parts of the date we don't need
if (groupInterval.endsWith(' day') || groupInterval.endsWith(' days')) {
date.setHours(23, 59, 59)
} else if (groupInterval.endsWith(' hour') || groupInterval.endsWith(' hours')) {
date.setMinutes(59, 59)
} else {
date.setSeconds(59)
}
return date.toISOString()
}
}